

/* =========================
   Base Reset
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
}

/* =========================
   Layout Helpers
========================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 72px;

    /* 新增 */
    max-width: 1400px;
    margin: 0 auto;
    padding: 100 32px;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 58px;
    /* 原本可能 32px */
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 16px;
    letter-spacing: .5px;
}

/* NAV */

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

.nav a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
}

.nav a:hover {
    color: #fff;
}

/* CTA */

.nav-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: #F89321;
    color: #000;
    font-weight: 600;
}

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

@media (max-width: 900px) {
    .nav {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }
}



/* =========================
   Header
========================= */
.site-header {
    background: #111;
    color: #fff;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
}

.logo span {
    color: #f89321;
    /* MYD Media orange */
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
}

.btn-nav {
    padding: 8px 14px;
    border-radius: 6px;
    background: #f89321;
    color: #111 !important;
}

:root {
    --myd-orange: #F89321;
    --bg: #0f0f10;
    --bg-2: #141416;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --muted-2: rgba(255, 255, 255, .56);
}



/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 50% 40%, rgba(248, 147, 33, .16), transparent 60%),
        radial-gradient(700px 420px at 15% 30%, rgba(255, 255, 255, .06), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    color: var(--text);
    padding: clamp(84px, 9vw, 140px) 0;
}

/* 轻微噪点质感（高级感关键） */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    opacity: .10;
    pointer-events: none;
}

/* 内层 */
.hero-inner {
    min-height: clamp(460px, 62vh, 680px);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 18px;
}

/* subtitle -> 做成 pill 标签 */
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    color: rgba(255, 255, 255, .78);

    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(8px);
}

.hero-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--myd-orange);
    box-shadow: 0 0 0 6px rgba(248, 147, 33, .18);
}

/* title -> 控制宽度 + 更干净的字距 */
.hero-title {
    max-width: 820px;
    font-size: clamp(40px, 6.4vw, 84px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0;
}

.btn-primary{
  padding: 14px 22px;
  letter-spacing: .2px;
}

.hero-subtitle{
  font-size: 13px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

/* Sold 不只变色，还做“高端强调” */
.hero-accent {
    color: var(--myd-orange);
    position: relative;
    padding: 0 .06em;
}

.hero-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .08em;
    height: .22em;
    background: rgba(248, 147, 33, .22);
    border-radius: 10px;
    z-index: -1;
}

/* CTA -> 加一点质感：阴影 + 描边 + hover 光 */
.hero-actions {
    margin-top: 8px;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Hero Banner - Features Video */

.hero-bg-video {
    pointer-events: none;
}
.hero-bg-video {
    position: absolute;

    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;

    opacity: .72;
    filter: brightness(.98) contrast(1.08) saturate(1.05);

    z-index: 0;
}

/* overlay */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .35));

    z-index: 1;
}

/* content */
.hero-inner {
    position: relative;
    z-index: 2;
}

/* =========================
   HERO PRO ADD-ON
   ① Video fade-in
   ② Scroll indicator (Stripe/Linear vibe)
========================= */

/* ---- ① Video fade-in ---- */
.hero-bg-video {
    opacity: 0;
    /* 初始先隐藏 */
    animation: heroVideoIn .9s ease forwards;
    animation-delay: .15s;
    /* 稍微延迟更“高级” */
    will-change: opacity, transform;
}

/* 如果你之前已经有 opacity: .72，那动画结束会用这里的最终值 */
@keyframes heroVideoIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.02);
    }

    to {
        opacity: .72;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 可选：减少动态（无障碍更好） */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        animation: none;
        opacity: .72;
        transform: translate(-50%, -50%);
    }
}

/* ---- ② Scroll indicator ---- */
.hero {
    /* 确保有位置放 indicator */
    padding-bottom: clamp(84px, 10vw, 150px);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;
    border-radius: 999px;

    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .02em;

    transition: transform .18s ease, border-color .18s ease, color .18s ease;
}

.hero-scroll:hover {
    transform: translateX(-50%) translateY(-1px);
    border-color: rgba(248, 147, 33, .35);
    color: rgba(255, 255, 255, .92);
}

.hero-scroll .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #F89321;
    box-shadow: 0 0 0 6px rgba(248, 147, 33, .14);
}

.hero-scroll .arrow {
    width: 22px;
    height: 22px;
    border-radius: 999px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);

    position: relative;
    overflow: hidden;
}

/* 小箭头动画（往下轻轻跳） */
.hero-scroll .arrow::before {
    content: "↓";
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
    animation: heroArrow 1.25s ease-in-out infinite;
    color: rgba(255, 255, 255, .90);
}

@keyframes heroArrow {

    0%,
    100% {
        transform: translateY(-2px);
        opacity: .85;
    }

    50% {
        transform: translateY(2px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll .arrow::before {
        animation: none;
    }
}



.btn-primary {
    position: relative;
    background: var(--myd-orange);
    border: 1px solid rgba(0, 0, 0, .18);
    color: #111;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    box-shadow:
        0 16px 36px rgba(0, 0, 0, .35),
        0 2px 0 rgba(255, 255, 255, .20) inset;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(180px 60px at 30% 20%, rgba(255, 255, 255, .45), transparent 55%);
    opacity: .0;
    transition: opacity .18s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, .42),
        0 2px 0 rgba(255, 255, 255, .22) inset;
}

.btn-primary:hover::after {
    opacity: .65;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(248, 147, 33, .38);
    outline-offset: 4px;
}

.btn-arrow {
    font-size: 18px;
    line-height: 1;
    transform: translateY(1px);
}

/* responsive line breaks */
.br-md,
.br-sm {
    display: none;
}

@media (max-width: 900px) {
    .br-md {
        display: inline;
    }
}

@media (max-width: 520px) {
    .br-sm {
        display: inline;
    }
}

/* =========================
   Section 2: About Us (Pro)
========================= */

.about-us {
    position: relative;
    overflow: hidden;
    color: #fff;

    /* 橙色收敛：只做轻微氛围 */
    background:
        radial-gradient(900px 520px at 80% 30%, rgba(248, 147, 33, .06), transparent 62%),
        radial-gradient(900px 520px at 15% 10%, rgba(255, 255, 255, .05), transparent 55%),
        linear-gradient(180deg, #0f0f10, #141416);

    padding: clamp(74px, 8.5vw, 126px) 0;
}

/* 顶部/底部极细分隔线（让 section 看起来“切开”） */
.about-us::before,
.about-us::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
    opacity: .65;
    z-index: 1;
}

.about-us::before {
    top: 0;
}

.about-us::after {
    bottom: 0;
}

/* 轻微噪点质感 */
.about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .10;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

/* layout */
.about-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(320px, 560px);
    gap: clamp(28px, 6vw, 84px);
    align-items: start;
}

/* tag */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 14px;

    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(8px);
}

.about-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #F89321;
    box-shadow: 0 0 0 4px rgba(248, 147, 33, .12);
    /* 橙色减弱 */
}

/* title */
.about-title {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.06;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0;
}

/* right */
.about-right {
    padding-top: 8px;
    max-width: 560px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 14px;
}

.about-desc-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, .88);
}

.highlight {
    color: #F89321;
    font-weight: 800;
}

/* partners */
.about-partners {
    position: relative;
    z-index: 2;
    margin-top: clamp(38px, 5vw, 68px);
}

.partners-label {
    font-size: 13px;
    letter-spacing: .2px;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 14px;
}

/* marquee */
.logo-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 34px 0;

    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .40);
    backdrop-filter: blur(10px);
}

/* fade edges */
.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 4;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(15, 15, 16, 1) 0%, rgba(15, 15, 16, 0) 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(15, 15, 16, 1) 0%, rgba(15, 15, 16, 0) 100%);
}

/* 鼠标跟随光：默认更淡 */
.about-spot {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .22;
    /* 橙色减弱 */
    background: radial-gradient(280px 220px at var(--mx, 70%) var(--my, 30%),
            rgba(248, 147, 33, .16),
            rgba(248, 147, 33, 0) 60%);
    filter: blur(12px);
    transition: opacity .25s ease;
}

.logo-marquee:hover .about-spot {
    opacity: .38;
}

/* track */
.logo-track {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    padding: 0 56px;

    animation: logoScroll 34s linear infinite;
    will-change: transform;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    /* ✅ 防止被压缩导致某些 logo 看不到 */
}

.logo-track img {
    height: 62px;
    width: auto;
    max-width: 220px;
    object-fit: contain;

    opacity: .94;
    filter: saturate(1.02) contrast(1.06) brightness(1.05);
    transition: transform .18s ease, opacity .18s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* ✅ 依赖 JS clone = 无缝 */
}

/* responsive */
@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-right {
        padding-top: 0;
    }

    .logo-marquee {
        padding: 26px 0;
        border-radius: 16px;
    }

    .logo-track {
        gap: 48px;
        padding: 0 28px;
        animation-duration: 26s;
    }

    .logo-track img {
        height: 50px;
        max-width: 180px;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 72px;
    }

    /* ✅ 手机端：关掉跟随光，减少橙色污染 */
    .about-spot {
        display: none;
    }
}


/* =========================
   Section Head (Reusable)
========================= */
.section-head {
    text-align: center;
    margin-bottom: 34px;
}


.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.section-desc {
    max-width: 780px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
}

/* =========================
   Services - Section 3
========================= */
.services {
    background: #222222;
    color: #ffffff;
    padding: clamp(64px, 8vw, 110px) 0;
}



.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.service-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 200px at 20% 0%, rgba(248, 147, 33, .18), transparent 60%);
    pointer-events: none;
    opacity: .7;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 147, 33, .35);
    background: rgba(255, 255, 255, .04);
}

/* Top */
.service-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.service-pill {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    background: #F89321;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Text */
.service-text {
    position: relative;
    z-index: 1;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 16px;
}

/* Bullet points */
.service-points {
    position: relative;
    z-index: 1;
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.service-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.55;
}

.service-points li::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 7px;
    border-radius: 50%;
    background: #F89321;
    flex: 0 0 9px;
}

/* Responsive */
@media (max-width: 920px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px;
    }
}

/* =========================
   Portfolio / Case Study - Section 4
========================= */
.portfolio {
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        radial-gradient(900px 520px at 80% 30%, rgba(248, 147, 33, .06), transparent 62%),
        radial-gradient(900px 520px at 15% 10%, rgba(255, 255, 255, .05), transparent 55%),
        linear-gradient(180deg, #0f0f10, #141416);

    padding: clamp(64px, 8vw, 110px) 0;
}

/* Header */
.portfolio-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(18px, 4vw, 48px);
    align-items: end;
    margin-bottom: 28px;
}

.portfolio-title {
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.portfolio-accent {
    color: #F89321;
}

.portfolio-desc {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    font-size: 15.5px;
    max-width: 680px;
}

/* Grid layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 18px;
    align-items: stretch;
}

/* Right side stack */
.work-side {
    display: grid;
    gap: 18px;
}

/* Card base */
.work-card {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.work-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 147, 33, .35);
    background: rgba(255, 255, 255, .04);
}

/* Subtle premium glow */
.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
    background: radial-gradient(640px 240px at 20% 10%, rgba(248, 147, 33, .18), transparent 60%);
}

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

/* Media */
.work-media {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, .25);
}

/* ✅ Thumbnail visible by default */
.work-thumb {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform .45s ease, filter .45s ease;
    filter: saturate(1.06) contrast(1.04);
}

/* ✅ Video overlay hidden until .is-playing (your JS adds it) */
.work-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    opacity: 0;
    transform: scale(1.02);
    transition: opacity .22s ease, transform .45s ease;
    pointer-events: none;
}

/* Hover polish */
.work-card:hover .work-thumb {
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.06);
}

/* When JS adds this class on hover */
.work-card.is-playing .work-video {
    opacity: 1;
    transform: scale(1);
}

/* Aspect ratios */
.work-card--feature .work-media {
    aspect-ratio: 16 / 10;
}

.work-side .work-card .work-media {
    aspect-ratio: 16 / 9;
}

/* Overlay */
.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity .2s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
}

.work-card:hover .work-overlay {
    opacity: 1;
}

/* Watch button */
.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;

    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);

    font-weight: 700;
    font-size: 12px;
    letter-spacing: .02em;
}

.watch-icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(248, 147, 33, .18);
    border: 1px solid rgba(248, 147, 33, .35);
}

/* Meta row */
.work-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
}

.work-left {
    display: grid;
    gap: 2px;
}

.work-kicker {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.work-name {
    font-size: 16px;
    font-weight: 700;
}

.work-tag {
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    white-space: nowrap;
}

.work-video {
    filter: brightness(.95) contrast(1.05);
}

/* Responsive */
@media (max-width: 960px) {
    .portfolio-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

/* =========================
   Video Modal (Portfolio)
========================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    /* 默认隐藏 */
}

.video-modal.is-open {
    display: block;
    /* 打开 */
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
}

.video-modal__dialog {
    position: relative;
    width: min(980px, calc(100% - 32px));
    margin: 6vh auto 0;
    border-radius: 18px;
    overflow: hidden;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.video-modal__frame {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal__player {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================
   Results Snapshot - Section 5
========================= */
.results {
    background: #222222;
    color: #fff;
    padding: clamp(64px, 8vw, 110px) 0;
}

.results-head {
    text-align: center;
    margin-bottom: 28px;
}

.results-title {
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.results-desc {
    margin: 12px auto 0;
    max-width: 760px;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
}

/* Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* Card base */
.result-card {
    position: relative;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    padding: 22px;
    min-height: 170px;

    display: grid;
    align-content: end;
    overflow: hidden;

    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 147, 33, .35);
    background: rgba(255, 255, 255, .04);
}

/* little number */
.result-no {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .55);
}

/* content */
.result-main {
    display: grid;
    gap: 8px;
}

.result-value {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.55;
}

/* Highlight card (orange gradient) */
.result-card--highlight {
    border: 0;
    background: linear-gradient(135deg, rgba(248, 147, 33, .95), rgba(255, 75, 130, .9));
}

.result-card--highlight .result-no,
.result-card--highlight .result-label {
    color: rgba(255, 255, 255, .92);
}

.result-card--highlight .result-value {
    color: #fff;
}

/* Wide card (span columns) */
.result-card--wide {
    grid-column: 1 / span 3;
    min-height: 150px;
}

/* subtle glow decoration */
.result-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 200px at 20% 0%, rgba(248, 147, 33, .16), transparent 60%);
    pointer-events: none;
    opacity: .7;
}

.result-card--highlight::before {
    opacity: .25;
}



/* Responsive */
@media (max-width: 980px) {
    .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-card--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        min-height: 150px;
    }

    .result-card--wide {
        min-height: 150px;
    }
}

.result-card {
    box-shadow:
        0 18px 50px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

.result-card:hover {
    box-shadow:
        0 24px 70px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.result-card--highlight {
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
}

.result-card--highlight::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background:
        radial-gradient(600px 240px at 30% 20%, rgba(255, 255, 255, .22), transparent 55%),
        radial-gradient(520px 220px at 80% 80%, rgba(0, 0, 0, .18), transparent 60%);
    opacity: .55;
}



/* =========================
   Testimonials - Section 6
========================= */
.testimonials {
        position: relative;
        overflow: hidden;
        color: #fff;

        background:
            radial-gradient(900px 520px at 80% 30%, rgba(248, 147, 33, .06), transparent 62%),
            radial-gradient(900px 520px at 15% 10%, rgba(255, 255, 255, .05), transparent 55%),
            linear-gradient(180deg, #0f0f10, #141416);

        padding: clamp(64px, 8vw, 110px) 0;
    }

.testi-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.testi-title {
    font-size: clamp(28px, 4.2vw, 54px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
}

.testi-accent {
    color: #F89321;
}

.testi-controls {
    display: flex;
    gap: 10px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.testi-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(248, 147, 33, .35);
    background: rgba(255, 255, 255, .06);
}

.testi-btn:active {
    transform: translateY(0);
}

.testi-btn:focus-visible {
    outline: 3px solid rgba(248, 147, 33, .4);
    outline-offset: 3px;
}

/* Card */
.testi-card {
    position: relative;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    padding: clamp(22px, 3vw, 40px);
    min-height: 320px;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.testi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 147, 33, .28);
}

/* subtle glow */
.testi-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 240px at 15% 0%, rgba(248, 147, 33, .14), transparent 60%);
    pointer-events: none;
    opacity: .85;
}

/* Quote rail (左侧竖条) */
.testi-card::after{
  content:"";
  position:absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;           /* ✅ 这句就是“拉长”关键 */
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(248,147,33,.65),
    rgba(255,255,255,.10),
    transparent
  );
  opacity:.55;
  pointer-events:none;
}

/* 引号改成更大、更柔和，跟竖条搭配 */
.testi-quote{
  top: 10px;
  left: 14px;
  font-size: 96px;
  color: rgba(255,255,255,.07);
}

.testi-text {
    position: relative;
    z-index: 1;
    font-size: clamp(36px, 2.2vw, 30px);
    line-height: 1.35;
    font-weight: 700;
    max-width: 820px;
    margin: 34px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, .92);
}

/* Client Feedback */
.testi-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 147, 33, .9), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .16);
}

.testi-meta {
    display: grid;
    gap: 2px;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
}

.testi-role {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.testi-index {
    margin-left: 18px;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .55);
}

/* Responsive */
@media (max-width: 760px) {
    .testi-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .testi-footer {
        flex-direction: column;
        gap: 10px;
    }

    .testi-index {
        margin-left: 0;
    }
}

/* =========================
   Awards & Recognition - Section 7
========================= */
.awards {
    background: #222222;
    color: #fff;
    padding: clamp(64px, 8vw, 110px) 0;
}

/* Head layout */
.awards-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 60px);
    align-items: end;
    margin-bottom: 26px;
}

.awards-title {
    font-size: clamp(34px, 5.2vw, 72px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0;
}

.awards-accent {
    color: #F89321;
}

.awards-desc {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, .72);
    font-size: 15.5px;
    line-height: 1.75;
    justify-self: end;
}

/* Table */
.awards-table {
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    overflow: hidden;
    border-radius: 14px;
}

.awards-row {
    display: grid;
    grid-template-columns: 220px 1fr 90px;
    align-items: center;
    gap: 14px;

    padding: 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .02);

    transition: background .16s ease, transform .16s ease, border-color .16s ease;
}

.awards-row:first-child {
    border-top: 0;
}

.awards-row:hover {
    background: rgba(255, 255, 255, .04);
}

.awards-row--head {
    background: rgba(255, 255, 255, .03);
}

.awards-row--head:hover {
    background: rgba(255, 255, 255, .03);
}

/* Cells */
.awards-cell {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

.awards-row--head .awards-cell {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.awards-source {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.awards-name {
    font-size: 16px;
    font-weight: 750;
    color: rgba(255, 255, 255, .92);
}

.awards-cell--year {
    text-align: right;
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .55);
}

/* Responsive */
@media (max-width: 980px) {
    .awards-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .awards-desc {
        justify-self: start;
    }

    .awards-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .awards-cell--year {
        text-align: left;
    }

    .awards-name {
        font-size: 15px;
    }
}

.awards-row:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(248, 147, 33, .22);
}

.awards-cell--year {
    justify-self: end;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    width: fit-content;
}

.awards-table{
  background: rgba(255,255,255,.02);
  box-shadow: 0 24px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

/* =========================
   Awards Carousel
========================= */

.awards-carousel {
    position: relative;
    margin-top: 26px;
    padding: 20px;

    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);

    overflow: hidden;
}

.awards-slider {
    display: flex;
    gap: 20px;
    transition: transform .45s ease;
}

.award-slide {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .35);

    transform: scale(.92);
    opacity: .65;

    transition: transform .35s ease, opacity .35s ease;
}

.award-slide img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

/* 中间 focus */
.award-slide.active {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(248, 147, 33, .35);
}

.award-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* arrows */

.awards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);

    background: rgba(0, 0, 0, .45);
    color: #fff;

    cursor: pointer;
    z-index: 10;
}

.awards-prev {
    left: 10px;
}

.awards-next {
    right: 10px;
}

.awards-arrow:hover {
    border-color: rgba(248, 147, 33, .35);
}

/* dots */

.awards-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.awards-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, .35);

    cursor: pointer;
}

.awards-dots button.active {
    background: #F89321;
}

.award-slide::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(600px 200px at 30% 0%, rgba(255, 255, 255, .15), transparent 60%);

    pointer-events: none;
}

/* =========================
   FAQ - Section 8
========================= */
.faq {
        position: relative;
        overflow: hidden;
        color: #fff;

        background:
            radial-gradient(900px 520px at 80% 30%, rgba(248, 147, 33, .06), transparent 62%),
            radial-gradient(900px 520px at 15% 10%, rgba(255, 255, 255, .05), transparent 55%),
            linear-gradient(180deg, #0f0f10, #141416);

        padding: clamp(64px, 8vw, 110px) 0;
    }

.faq-head {
    text-align: center;
    margin-bottom: 26px;
}

.faq-title {
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.faq-desc {
    margin: 12px auto 0;
    max-width: 820px;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
}

/* Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(18px, 4vw, 42px);
    align-items: start;
}

/* Left media */
.faq-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.faq-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Accordion */
.faq-accordions {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 16px;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
}

.faq-q {
    list-style: none;
    cursor: pointer;
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 16px 16px;
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, .92);
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-a {
    padding: 0 16px 16px;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

/* icon (+ / -) */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
    position: relative;
    flex: 0 0 28px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: #F89321;
    border-radius: 2px;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item[open] .faq-icon::after {
    height: 0;
    /* open -> minus */
}

/* hover */
.faq-item:hover {
    border-color: rgba(248, 147, 33, .28);
}

/* Responsive */
@media (max-width: 980px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CTA / Contact - Section 9
========================= */
.cta {
    background: #222222;
    color: #fff;
    padding: clamp(64px, 8vw, 110px) 0;
}

.cta-box {
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    padding: clamp(22px, 4vw, 44px);

    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: start;

    position: relative;
    overflow: hidden;
}



/* subtle glow */
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 260px at 15% 0%, rgba(248, 147, 33, .20), transparent 60%);
    pointer-events: none;
    opacity: .9;
}

.cta-left,
.cta-right {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4.2vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 14px;
}

.cta-box {
    transition: transform .18s ease, border-color .18s ease;
}

.cta-box:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 147, 33, .18);
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;
    padding: 9px 12px;
    border-radius: 999px;

    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(8px);
}

.cta-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #F89321;
    box-shadow: 0 0 0 4px rgba(248, 147, 33, .12);
}

.cta-accent {
    color: #F89321;
}

.cta-desc {
    margin: 0 0 18px;
    max-width: 680px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    font-size: 15.5px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.cta-btn--primary {
    background: #F89321;
    color: #111;
    border: 1px solid rgba(248, 147, 33, .65);
}

.cta-btn--primary:hover {
    transform: translateY(-1px);
}

.cta-btn--ghost {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
}

.cta-btn--ghost:hover {
    border-color: rgba(248, 147, 33, .35);
    transform: translateY(-1px);
}

/* right info */
.cta-right {
    display: grid;
    gap: 16px;
}

.cta-info {
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
}

.cta-label {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

.cta-link {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 700;
}

.cta-link:hover {
    color: #F89321;
}

.cta-text {
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
    .cta-box {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FOOTER (Pro + Underline)
========================= */
.site-footer {
    background: #0b0b0b;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 54px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}



/* ✅ New: heading + orange underline */
.footer-heading {
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 16px;
    letter-spacing: .01em;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    /* 线长度 */
    height: 3px;
    /* 线粗细 */
    border-radius: 999px;
    background: #F89321;
    /* 橙线 */
}

/* brand */
.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    margin-bottom: 12px;
}

.footer-desc {
    margin: 0;
    max-width: 420px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
}

/* ✅ Quick Links vertical */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.35;
}

.footer-link:hover {
    color: #F89321;
}

.footer-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
    margin-bottom: 6px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.65;
    font-size: 14px;
}

.footer-item {
    margin: 14px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
}

.social-pill:hover {
    border-color: rgba(248, 147, 33, 0.35);
    color: #F89321;
}

/* bottom */
.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
}

.footer-mini {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-weight: 700;
}

.footer-mini:hover {
    color: #F89321;
}

/* responsive */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}