:root {
    --primary: #0d1b3e;
    --primary-light: #1a2d5a;
    --accent: #c8102e;
    --accent-blue: #0066cc;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --bg: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #fafafa;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-stack);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 100%;
    padding: 0 24px;
    z-index: 2;
    animation: fadeUp 1s ease both;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 14px 28px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(13, 27, 62, 0.05);
}

.hp-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
}

.hp-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hp-number svg {
    width: 20px;
    height: 20px;
}

.hp-number:hover {
    color: var(--accent-dark, #a00d26);
    transform: translateY(-1px);
}

.hp-sep {
    width: 1px;
    height: 22px;
    background: var(--border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    box-shadow: inset 0 0 0 1.5px var(--accent);
}

.btn-secondary:hover {
    background: rgba(200, 16, 46, 0.04);
}

.hero-image-wrap {
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    animation: bounce 2s infinite;
}

/* About */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 36px 28px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 4px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Positioning */
.positioning {
    background: var(--bg-secondary);
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.core-card {
    background: var(--bg);
    padding: 48px 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.core-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.core-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.core-card:hover::before {
    opacity: 1;
}

.core-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--bg-secondary);
    color: var(--primary);
    margin-bottom: 28px;
}

.core-icon svg {
    width: 28px;
    height: 28px;
}

.core-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.4;
}

.core-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.core-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--bg);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-item {
    padding: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    background: var(--bg-secondary);
}

.service-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Honors */
.honors {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.honor-card {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.honor-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(200, 16, 46, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.honor-card p {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text);
}

.honor-by {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Gallery */
.gallery {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* Night Market */
.night-market {
    background: var(--bg-secondary);
    --nm-gold: #b08d57;
}

.nm-body {
    max-width: 100%;
    margin: 0 auto;
}

.nm-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 56px;
}

.nm-block {
    margin-bottom: 48px;
}

.nm-block:last-child {
    margin-bottom: 0;
}

.nm-block-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-align: center;
    margin-bottom: 22px;
}

.nm-block-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--nm-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.nm-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.nm-tags span {
    padding: 13px 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nm-tags span:hover {
    border-color: var(--nm-gold);
    color: var(--nm-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.nm-ticker {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.nm-ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: nm-scroll 26s linear infinite;
}

.nm-ticker:hover .nm-ticker-track {
    animation-play-state: paused;
}

.nm-ticker-track span {
    margin: 0 10px;
    padding: 12px 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@keyframes nm-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Leasing */
.leasing {
    background: var(--bg-secondary);
}

.leasing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.leasing-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leasing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.leasing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.leasing-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.leasing-card ul {
    list-style: none;
}

.leasing-card li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.leasing-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.pricing-table {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    padding: 22px 32px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-head {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.pricing-row span:nth-child(2),
.pricing-row span:nth-child(3) {
    color: var(--accent);
    font-weight: 600;
}

.hardware {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hardware-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    padding: 24px 32px;
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hardware-item strong {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hardware-item span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* Tenants */
.tenants {
    background: var(--bg);
}

.tenant-intro {
    max-width: 100%;
    margin: 0 auto 36px;
    font-size: 18px;
    color: var(--text-secondary);
}

.tenant-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tenant-list span {
    padding: 14px 28px;
    background: var(--bg-secondary);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: background 0.3s ease, transform 0.3s ease;
}

.tenant-list span:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact */
.contact {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
    padding-bottom: 100px;
}

.contact-card {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px;
    text-align: center;
}

.contact-address {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 28px 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
}

.ca-icon {
    width: 34px;
    height: 34px;
    color: var(--accent);
    display: flex;
    flex-shrink: 0;
}

.ca-icon svg {
    width: 100%;
    height: 100%;
}

.ca-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
}

.ca-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.01em;
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #fff;
}

.footer-brand img {
    height: 36px;
    border-radius: 6px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .core-grid {
        grid-template-columns: 1fr;
    }

    .service-list,
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leasing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 0;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid var(--border);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-phones {
        width: 100%;
        max-width: 360px;
        gap: 12px 16px;
        padding: 16px 20px;
        border-radius: 20px;
    }

    .hp-number {
        font-size: 19px;
    }

    .hp-sep {
        display: none;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }

    .stats-grid,
    .service-list,
    .honor-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px 20px;
        font-size: 14px;
    }

    .pricing-row span:nth-child(3),
    .pricing-row span:nth-child(4) {
        grid-column: span 1;
    }

    .pricing-head {
        display: none;
    }

    .hardware-item {
        min-width: calc(50% - 8px);
        padding: 18px;
    }

    .nm-tags {
        gap: 12px;
    }

    .nm-tags span {
        padding: 10px 20px;
        font-size: 13px;
    }

    .nm-ticker-track span {
        font-size: 15px;
        margin: 0 8px;
        padding: 10px 20px;
    }

    .contact-card {
        padding: 36px 20px;
    }

    .contact-address {
        width: 100%;
        padding: 24px 20px;
        gap: 12px;
    }

    .ca-value {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .core-card,
    .leasing-card {
        padding: 32px 24px;
    }
}
