* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: #222222;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

body.drawer-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.desktop-header {
    height: 74px;
    display: none;
    align-items: center;
    gap: 24px;
}

.brand img,
.mobile-brand img,
.drawer-brand img,
.footer-brand img {
    width: auto;
    object-fit: contain;
}

.brand img {
    max-height: 46px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.nav-link {
    padding: 9px 12px;
    border-radius: 999px;
    color: #333333;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: rgb(255, 80, 0);
    background: #fff3ec;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgb(255, 80, 0);
    color: #ffffff;
    font-weight: 800;
    border: 1px solid rgba(255, 80, 0, .2);
    box-shadow: 0 12px 26px rgba(255, 80, 0, .24);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.main-btn:hover {
    background: #E85A00;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(232, 90, 0, .28);
}

.mobile-header {
    height: 62px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #101010;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-brand {
    justify-self: center;
}

.mobile-brand img {
    max-height: 38px;
}

.mobile-reg {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(255,80,0,.2);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0,0,0,.52);
    opacity: 0;
    transition: opacity .24s ease;
}

.drawer-overlay.is-show {
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    background: #ffffff;
    transform: translateX(-105%);
    transition: transform .28s ease;
    box-shadow: 18px 0 40px rgba(0,0,0,.22);
    padding: 18px;
    overflow-y: auto;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
}

.drawer-brand img {
    max-height: 40px;
}

.drawer-close {
    border: 0;
    background: #fff3ec;
    color: rgb(255,80,0);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    gap: 8px;
    padding-top: 18px;
}

.drawer-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #222222;
    font-weight: 700;
    background: #f7f7f7;
}

.drawer-link.is-active,
.drawer-link:hover {
    background: #fff3ec;
    color: rgb(255,80,0);
}

.hero-section {
    position: relative;
    background:
      linear-gradient(105deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.78) 46%, rgba(0,0,0,.58) 100%),
      url('banner.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #ffffff;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% 42%;
    height: 300px;
    background: radial-gradient(circle, rgba(255,80,0,.34), transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 620px;
    padding: 64px 0 70px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(255, 80, 0);
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 14px;
}

.hero-title {
    margin: 16px 0 18px;
    color: rgb(255, 80, 0);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.hero-desc {
    color: #f5f5f5;
    font-size: 17px;
    max-width: 620px;
    margin: 0 0 26px;
}

.hero-btn {
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    color: #f4f4f4;
    font-weight: 700;
}

.hero-dashboard {
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(6px);
    padding: 24px;
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
    transform: translateY(10px);
}

.dashboard-label {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,80,0,.88);
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-dashboard img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    filter: drop-shadow(0 26px 30px rgba(0,0,0,.34));
}

.dashboard-bars {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.dashboard-bars span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,.48);
    color: #f1f1f1;
    border: 1px solid rgba(255,255,255,.11);
    font-weight: 700;
}

.category-nav-wrap {
    background: #101010;
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.category-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.strip-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
}

.strip-link b {
    color: rgb(255,80,0);
}

.strip-link:hover {
    background: #fff3ec;
    color: rgb(255,80,0);
}

.section {
    padding: 64px 0;
}

.section-head {
    max-width: 780px;
    margin-bottom: 28px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2,
.sub-hero h1,
.inner-content h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    color: #171717;
}

.section-head p {
    margin: 0;
    color: #555555;
}

.focus-section {
    background: #f6f6f6;
}

.focus-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
    align-items: stretch;
}

.focus-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    border: 1px solid #eeeeee;
}

.focus-image {
    min-height: 230px;
    max-height: 330px;
    padding: 22px 22px 0;
    background: linear-gradient(135deg, #fff3ec, #ffffff 62%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-image img {
    max-height: 300px;
    object-fit: contain;
}

.focus-body {
    padding: 24px;
}

.tag {
    display: inline-flex;
    padding: 5px 11px;
    border-radius: 999px;
    background: #fff3ec;
    color: rgb(255,80,0);
    font-weight: 800;
    font-size: 13px;
}

.focus-body h3,
.focus-list h3,
.zone-card h3,
.service-cards h3,
.faq-grid h3,
.content-card h3,
.info-card h3,
.timeline-card h3,
.contact-card h3 {
    margin: 10px 0 8px;
    color: #171717;
    line-height: 1.25;
}

.focus-body p,
.focus-list p,
.zone-card p,
.service-cards p,
.faq-grid p,
.content-card p,
.info-card p,
.timeline-card p,
.contact-card p {
    margin: 0 0 12px;
    color: #555555;
}

.text-link {
    color: rgb(255,80,0);
    font-weight: 800;
    border-bottom: 1px solid rgba(255,80,0,.35);
}

.text-link:hover {
    color: #E85A00;
    border-bottom-color: #E85A00;
}

.focus-list {
    display: grid;
    gap: 14px;
}

.focus-list article {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.focus-list span {
    color: rgb(255,80,0);
    font-weight: 800;
    font-size: 13px;
}

.dual-section {
    background: #ffffff;
}

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

.dual-card {
    border-radius: 26px;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid #eeeeee;
    box-shadow: 0 18px 46px rgba(0,0,0,.08);
}

.dual-dark {
    background: #101010;
    color: #ffffff;
}

.dual-light {
    background: #fff3ec;
    color: #222222;
}

.dual-image {
    padding: 22px 22px 0;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dual-dark .dual-image {
    background: radial-gradient(circle at 65% 10%, rgba(255,80,0,.22), transparent 54%);
}

.dual-light .dual-image {
    background: linear-gradient(135deg, #ffffff, #fff3ec);
}

.dual-image img {
    max-height: 260px;
    object-fit: contain;
}

.dual-text {
    padding: 24px;
}

.dual-text h2 {
    margin: 12px 0;
    line-height: 1.22;
}

.dual-dark .dual-text h2,
.dual-dark .dual-text p,
.dual-dark .point-list li {
    color: #f1f1f1;
}

.point-list {
    padding: 0;
    margin: 14px 0 18px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.point-list li {
    position: relative;
    padding-left: 20px;
    color: #555555;
}

.point-list li::before {
    content: "";
    position: absolute;
    top: .75em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255,80,0);
}

.matrix-section {
    background: #f6f6f6;
}

.zone-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 18px;
}

.zone-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zone-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff3ec, #ffffff);
    padding: 10px;
}

.zone-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.zone-wide img {
    width: 48%;
    height: 230px;
}

.zone-tall {
    grid-row: span 2;
    background: #111111;
    color: #ffffff;
}

.zone-tall h3,
.zone-tall p {
    color: #ffffff;
}

.zone-tall img {
    height: 280px;
    background: radial-gradient(circle, rgba(255,80,0,.18), rgba(255,255,255,.06));
}

.zone-app {
    background: #fff3ec;
}

.app-banner-section {
    background: #ffffff;
}

.app-banner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
    border-radius: 30px;
    padding: 30px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,80,0,.28), transparent 34%),
        linear-gradient(135deg, #101010, #191919);
    color: #ffffff;
    overflow: hidden;
}

.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.app-visual img {
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 26px 30px rgba(0,0,0,.35));
}

.app-content h2 {
    color: #ffffff;
    margin: 8px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
}

.app-content p {
    color: #e8e8e8;
    margin: 0 0 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.feature-grid span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff;
    font-weight: 700;
}

.service-section {
    background: #fff3ec;
}

.service-strip {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: center;
    background: #101010;
    color: #ffffff;
    border-radius: 22px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.service-strip span {
    color: rgb(255,80,0);
    font-weight: 900;
    font-size: 20px;
}

.service-strip p {
    margin: 0;
    color: #eeeeee;
}

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

.service-cards article {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,80,0,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.service-cards b {
    color: rgb(255,80,0);
    font-size: 24px;
}

.responsible-band {
    background: #111111;
    color: #ffffff;
}

.responsible-box {
    max-width: 900px;
}

.responsible-box h2 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
}

.responsible-box p {
    color: #e8e8e8;
    margin: 0 0 14px;
}

.faq-summary {
    background: #ffffff;
}

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

.faq-grid article {
    background: #f6f6f6;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #eeeeee;
}

.more-link {
    display: inline-flex;
    margin-top: 22px;
}

.site-footer {
    background: #1f1f1f;
    color: #d8d8d8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 52px 0 34px;
}

.footer-brand img {
    max-height: 48px;
    margin-bottom: 14px;
}

.footer-brand p {
    margin: 0;
    color: #d8d8d8;
}

.footer-col h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-col a {
    color: #d8d8d8;
}

.footer-col a:hover {
    color: rgb(255,80,0);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    text-align: center;
    padding: 16px;
    color: #cfcfcf;
    font-size: 14px;
}

.sub-hero {
    background:
        radial-gradient(circle at 85% 10%, rgba(255,80,0,.22), transparent 34%),
        linear-gradient(105deg, #070707 0%, #111111 56%, #1a1a1a 100%);
    color: #ffffff;
    padding: 84px 0 72px;
}

.sub-hero h1 {
    color: rgb(255,80,0);
    max-width: 850px;
}

.sub-hero p {
    max-width: 850px;
    margin: 0;
    color: #f1f1f1;
    font-size: 17px;
}

.inner-section {
    padding: 58px 0;
}

.inner-section.alt {
    background: #f6f6f6;
}

.inner-section.orange {
    background: #fff3ec;
}

.inner-section.dark {
    background: #111111;
    color: #ffffff;
}

.inner-section.dark h2,
.inner-section.dark h3,
.inner-section.dark p,
.inner-section.dark li {
    color: #f2f2f2;
}

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

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

.content-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.content-card,
.info-card,
.timeline-card,
.contact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.inner-section.dark .content-card,
.inner-section.dark .info-card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}

.rich-text {
    max-width: 920px;
}

.rich-text p {
    color: #555555;
    margin: 0 0 16px;
}

.inner-section.dark .rich-text p {
    color: #f0f0f0;
}

.visual-split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 32px;
    align-items: center;
}

.visual-panel {
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(135deg, #fff3ec, #ffffff);
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.visual-panel.dark-panel {
    background: #101010;
    border-color: rgba(255,255,255,.12);
}

.visual-panel img {
    max-height: 410px;
    object-fit: contain;
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    counter-increment: step;
    position: relative;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 18px 18px 18px 62px;
    color: #555555;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(255,80,0);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.notice-box {
    border-radius: 22px;
    padding: 24px;
    background: #101010;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
}

.notice-box h2,
.notice-box h3 {
    margin-top: 0;
    color: #ffffff;
}

.notice-box p,
.notice-box li {
    color: #f1f1f1;
}

.notice-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.faq-item h2,
.faq-item h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.faq-item p {
    margin: 0;
    color: #555555;
}

.table-like {
    display: grid;
    gap: 10px;
}

.table-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
}

.table-row b {
    color: rgb(255,80,0);
}

@media (min-width: 1080px) {
    .desktop-header {
        display: flex;
    }

    .mobile-header {
        display: none;
    }
}

@media (max-width: 1079px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        order: 1;
        justify-items: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-dashboard {
        order: 2;
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-tags {
        justify-content: center;
    }

    .focus-layout,
    .dual-grid,
    .app-banner,
    .visual-split {
        grid-template-columns: 1fr;
    }

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

    .zone-wide {
        grid-column: span 2;
    }

    .content-grid,
    .content-grid.two,
    .content-grid.four,
    .faq-grid,
    .service-cards,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-inner {
        padding: 42px 0 48px;
        gap: 24px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-dashboard {
        padding: 16px;
        border-radius: 22px;
        transform: none;
    }

    .hero-dashboard img {
        max-height: 300px;
    }

    .dashboard-bars {
        grid-template-columns: 1fr;
    }

    .category-nav-wrap {
        padding: 16px 0;
    }

    .category-strip {
        padding-bottom: 8px;
    }

    .section,
    .inner-section {
        padding: 46px 0;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .focus-image {
        min-height: 190px;
        max-height: 270px;
        padding: 18px 18px 0;
    }

    .focus-image img {
        max-height: 240px;
    }

    .dual-image img {
        max-height: 230px;
    }

    .zone-matrix {
        grid-template-columns: 1fr;
    }

    .zone-wide,
    .zone-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .zone-wide {
        flex-direction: column;
        align-items: stretch;
    }

    .zone-wide img {
        width: 100%;
        height: 190px;
    }

    .zone-card img,
    .zone-tall img {
        height: 190px;
    }

    .app-banner {
        padding: 22px;
        text-align: center;
    }

    .app-visual {
        min-height: 200px;
        order: 2;
    }

    .app-visual img {
        max-height: 260px;
    }

    .app-content {
        order: 1;
    }

    .feature-grid,
    .content-grid,
    .content-grid.two,
    .content-grid.four,
    .faq-grid,
    .service-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .service-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sub-hero {
        padding: 58px 0 52px;
        text-align: center;
    }

    .sub-hero p {
        font-size: 15px;
    }

    .visual-panel {
        min-height: 220px;
    }

    .visual-panel img {
        max-height: 310px;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .link-row {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .mobile-header {
        grid-template-columns: 42px 1fr auto;
        gap: 6px;
        padding: 0 8px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .mobile-brand img {
        max-height: 34px;
    }

    .mobile-reg {
        padding: 6px 10px;
        font-size: 13px;
        min-height: 32px;
    }

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

    .hero-tags span {
        padding: 7px 11px;
        font-size: 13px;
    }

    .strip-link {
        padding: 8px 13px;
    }
}
