@charset "UTF-8";

/* =============================================================
   BoFrame Studio 波映製作 — Design System v2
   Aurora Glass · Deep Ocean (blue)

   配色取自品牌 logo：cyan #6fc3e0、深藍 #2f7fae、米白 #faf5ec。
   暖砂色 #f0d2a4 作為第二強調色，避免整體過於單一藍調。
   要換回原本的紫粉版本，把 css/style-purple-backup.css
   改名成 style.css 即可。
   ============================================================= */

:root {
    /* ---- Surfaces ---- */
    --bg-dark: #06101a;
    --bg-deep: #030910;
    --bg-elev: #0d1a27;
    --bg-card: rgba(255, 255, 255, 0.028);

    /* ---- Ink ---- */
    --text-main: #eef6fa;
    --text-muted: #96acbd;
    --text-dim: #63798c;

    /* ---- Accents ---- */
    --accent: #6fc3e0;
    --accent-soft: #a3dcf0;
    --accent-rose: #f0d2a4;
    --accent-peach: #f7e2c2;
    --accent-glow: rgba(111, 195, 224, 0.45);

    /* sampled from the 波映 logo — used as a secondary accent so the mark
       sits inside the palette instead of on top of it */
    --accent-blue: #6fc3e0;
    --accent-blue-deep: #2f7fae;
    --accent-blue-glow: rgba(111, 195, 224, 0.4);
    --logo-cream: #faf5ec;

    --gradient-primary: linear-gradient(120deg, #8fe3e6 0%, #6fc3e0 46%, #5b9fd6 100%);
    --gradient-aurora: linear-gradient(45deg, #8fe3e6, #a3dcf0, #5b9fd6, #f0d2a4);
    --gradient-line: linear-gradient(90deg, transparent, rgba(111, 195, 224, 0.55), transparent);
    --gradient-cool: linear-gradient(120deg, #8fe3e6 0%, #6fc3e0 55%, #4f8fc8 100%);

    /* ---- Glass ---- */
    --glass-bg: rgba(255, 255, 255, 0.045);
    --glass-border: 1px solid rgba(255, 255, 255, 0.085);
    --glass-brd: rgba(255, 255, 255, 0.085);
    --glass-shadow: 0 24px 60px -20px rgba(0, 8, 18, 0.72);
    --backdrop-blur: blur(10px);

    /* ---- Layout ---- */
    --container-width: 1200px;
    --container-pad: clamp(20px, 5vw, 48px);
    --header-height: 84px;
    --section-y: clamp(80px, 11vw, 150px);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 26px;

    /* ---- Type ---- */
    --font-sans: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-serif: 'Noto Serif TC', 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Playfair Display', 'Noto Serif TC', Georgia, serif;

    /* ---- Motion ---- */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --dur: 0.55s;
}

/* =============================================================
   Reset & Base
   ============================================================= */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

/* Lenis controls scrolling; native smooth would fight it */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

html:not(.lenis) {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.75;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
iframe {
    max-width: 100%;
    display: block;
}

img {
    height: auto;
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: rgba(111, 195, 224, 0.3);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link — accessibility + SEO signal */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 14px 22px;
    background: var(--accent);
    color: #0a1826;
    font-weight: 600;
    border-radius: 0 0 10px 0;
}

.skip-link:focus {
    left: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* =============================================================
   Ambient background — aurora field + film grain (zero images)
   ============================================================= */

.ambient {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 50% -10%, #0b1c2c 0%, transparent 60%),
        var(--bg-dark);
}

.ambient span {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    will-change: transform;
}

.ambient .a1 {
    width: 46vw;
    height: 46vw;
    min-width: 320px;
    min-height: 320px;
    top: -14vw;
    left: -10vw;
    background: radial-gradient(circle, rgba(111, 195, 224, 0.42), transparent 70%);
    animation: drift-a 26s var(--ease-in-out) infinite alternate;
}

.ambient .a2 {
    width: 40vw;
    height: 40vw;
    min-width: 280px;
    min-height: 280px;
    bottom: -12vw;
    right: -8vw;
    background: radial-gradient(circle, rgba(240, 210, 164, 0.16), transparent 70%);
    animation: drift-b 21s var(--ease-in-out) infinite alternate;
}

.ambient .a3 {
    width: 34vw;
    height: 34vw;
    min-width: 240px;
    min-height: 240px;
    top: 42%;
    left: 44%;
    background: radial-gradient(circle, rgba(111, 195, 224, 0.26), transparent 70%);
    animation: drift-c 32s var(--ease-in-out) infinite alternate;
}

@keyframes drift-a {
    to {
        transform: translate3d(14vw, 10vh, 0) scale(1.18);
    }
}

@keyframes drift-b {
    to {
        transform: translate3d(-12vw, -8vh, 0) scale(1.12);
    }
}

@keyframes drift-c {
    to {
        transform: translate3d(-16vw, 12vh, 0) scale(0.86);
    }
}

/* Film grain — SVG noise, ~1KB, adds analogue texture */
.grain {
    position: fixed;
    inset: -50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   Custom cursor (pointer-fine devices only)
   ============================================================= */

.cursor-dot,
.cursor-outline {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body.has-cursor {
        cursor: none;
    }

    body.has-cursor a,
    body.has-cursor button,
    body.has-cursor input,
    body.has-cursor textarea {
        cursor: none;
    }

    body.cursor-ready .cursor-dot,
    body.cursor-ready .cursor-outline {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate3d(-50%, -50%, 0);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        will-change: transform;
    }

    .cursor-dot {
        width: 5px;
        height: 5px;
        background-color: #fff;
        mix-blend-mode: difference;
    }

    .cursor-outline {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
            border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
    }

    body.cursor-hover .cursor-outline {
        width: 64px;
        height: 64px;
        border-color: var(--accent);
        background: rgba(111, 195, 224, 0.09);
    }
}

/* =============================================================
   Layout primitives
   ============================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-inline: var(--container-pad);
}

.container-narrow {
    max-width: 860px;
}

.section {
    padding-block: var(--section-y);
    position: relative;
}

.pt-0 {
    padding-top: 0;
}

.dark-bg {
    background: linear-gradient(180deg, transparent, rgba(3, 9, 16, 0.72) 18%, rgba(3, 9, 16, 0.72) 82%, transparent);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 80px);
}

.rule {
    height: 1px;
    border: 0;
    background: var(--gradient-line);
    margin-block: 0;
}

/* =============================================================
   Typography
   ============================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: 0.005em;
    text-wrap: balance;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.section-header .section-tag::before,
.page-hero .section-tag::before,
.blog-header .section-tag::before,
h3.section-tag::before {
    display: none;
}

.page-hero .section-tag,
.blog-header .section-tag {
    justify-content: center;
}

.page-hero .icon-plate {
    display: flex;
    margin: 0 auto 22px;
}

.section-title {
    font-size: clamp(28px, 4.2vw, 46px);
    margin-bottom: 20px;
    line-height: 1.28;
}

.section-title .highlight,
.grad-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.9;
    text-wrap: pretty;
}

.eyebrow {
    font-family: var(--font-display);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--text-dim);
}

/* =============================================================
   Buttons
   ============================================================= */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out), color 0.35s var(--ease-out);
    will-change: transform;
}

.btn i {
    font-size: 1.05em;
}

.btn-primary {
    color: #05202e;
    background: var(--gradient-primary);
    box-shadow: 0 10px 30px -10px rgba(111, 195, 224, 0.55);
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, #6fc3e0 0%, #8fe3e6 55%, #f0d2a4 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.btn-primary:hover {
    box-shadow: 0 18px 44px -12px rgba(111, 195, 224, 0.7);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out);
}

.btn-outline:hover {
    border-color: rgba(111, 195, 224, 0.55);
}

.btn-outline:hover::before {
    transform: translateY(0);
}

.btn-sm {
    padding: 11px 24px;
    font-size: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent-soft);
    font-size: 15px;
    font-weight: 500;
    transition: gap 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.link-arrow:hover {
    gap: 15px;
    color: #fff;
}

/* =============================================================
   Navbar
   ============================================================= */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: height 0.4s var(--ease-out), background-color 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    height: 68px;
    background: rgba(6, 16, 26, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease-out);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 1002;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--logo-cream);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 6px 18px -6px rgba(111, 195, 224, 0.6);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.logo:hover .logo-mark {
    transform: rotate(-6deg) scale(1.06);
    box-shadow: 0 0 0 1px rgba(111, 195, 224, 0.5), 0 10px 26px -6px rgba(111, 195, 224, 0.75);
}

.navbar.scrolled .logo-mark {
    width: 34px;
    height: 34px;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
}

.logo-text {
    font-family: var(--font-display);
    background: linear-gradient(100deg, #fff 10%, #cdeaf6 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo-dot {
    color: var(--accent-rose);
    font-size: 1.1em;
    line-height: 0;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 36px);
}

.nav-link {
    position: relative;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.35s var(--ease-out);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
}

#lang-toggle {
    width: 44px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: 0.35s var(--ease-out);
}

#lang-toggle:hover {
    color: #fff;
    border-color: var(--accent);
    background: rgba(111, 195, 224, 0.12);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    font-size: 20px;
    color: var(--text-main);
}

/* =============================================================
   Hero
   ============================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-block: calc(var(--header-height) + 40px) 80px;
}

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

/* Animated aurora ribbons — replaces the old external image slider */
.hero-aurora {
    position: absolute;
    inset: -20%;
    filter: blur(70px);
    opacity: 0.75;
    will-change: transform;
}

.hero-aurora i {
    position: absolute;
    display: block;
    border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
    mix-blend-mode: screen;
}

.hero-aurora i:nth-child(1) {
    width: 62%;
    height: 58%;
    top: 4%;
    left: -6%;
    background: linear-gradient(120deg, rgba(111, 195, 224, 0.65), rgba(126, 106, 214, 0.12));
    animation: ribbon-1 22s var(--ease-in-out) infinite alternate;
}

.hero-aurora i:nth-child(2) {
    width: 55%;
    height: 62%;
    bottom: -4%;
    right: -4%;
    background: linear-gradient(200deg, rgba(91, 159, 214, 0.55), rgba(163, 220, 240, 0.12));
    animation: ribbon-2 18s var(--ease-in-out) infinite alternate;
}

.hero-aurora i:nth-child(3) {
    width: 48%;
    height: 46%;
    top: 26%;
    left: 34%;
    background: linear-gradient(60deg, rgba(111, 195, 224, 0.46), rgba(111, 195, 224, 0.12));
    animation: ribbon-3 27s var(--ease-in-out) infinite alternate;
}

@keyframes ribbon-1 {
    to {
        transform: translate3d(10%, 8%, 0) rotate(28deg) scale(1.2);
    }
}

@keyframes ribbon-2 {
    to {
        transform: translate3d(-12%, -10%, 0) rotate(-22deg) scale(1.16);
    }
}

@keyframes ribbon-3 {
    to {
        transform: translate3d(-8%, 14%, 0) rotate(38deg) scale(0.86);
    }
}

/* Fine starfield, drawn in CSS */
.hero-stars {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(1.4px 1.4px at 12% 22%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.2px 1.2px at 78% 14%, rgba(255, 255, 255, 0.75), transparent),
        radial-gradient(1.6px 1.6px at 42% 68%, rgba(255, 235, 250, 0.85), transparent),
        radial-gradient(1px 1px at 88% 58%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1.3px 1.3px at 28% 84%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 62% 38%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.1px 1.1px at 6% 56%, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1.2px 1.2px at 95% 82%, rgba(255, 255, 255, 0.6), transparent);
    animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.65;
    }
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(90% 70% at 50% 45%, transparent 0%, rgba(6, 16, 26, 0.35) 60%, rgba(6, 16, 26, 0.85) 100%),
        linear-gradient(180deg, rgba(6, 16, 26, 0.6) 0%, transparent 26%, transparent 62%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 26px;
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 7.4vw, 88px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.01em;
    margin-bottom: 26px;
    text-shadow: 0 8px 44px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: -0.1em;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-in 1.1s var(--ease-out) 0.9s forwards;
}

@keyframes underline-in {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: clamp(13.5px, 1.8vw, 19px);
    color: rgba(238, 246, 250, 0.78);
    letter-spacing: 0.12em;
    line-height: 2;
    margin-bottom: 40px;
    max-width: 760px;
}

@media (max-width: 520px) {
    .hero-subtitle {
        letter-spacing: 0.04em;
    }
}

/* The About logo is a link to LINE */
.ripple-core a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.ripple-core:hover {
    box-shadow:
        0 0 0 1px rgba(111, 195, 224, 0.45),
        0 0 110px 14px rgba(111, 195, 224, 0.42),
        0 22px 60px -20px rgba(0, 8, 18, 0.7);
}

.about-visual {
    gap: 6px;
}

.logo-line-hint {
    display: block;
    text-align: center;
    margin-top: 22px;
    font-size: 13.5px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    transition: color 0.35s var(--ease-out);
}

.about-visual:hover .logo-line-hint {
    color: var(--text-muted);
}

.logo-line-hint i {
    color: #06c755;
    font-size: 1.25em;
    vertical-align: -0.2em;
    margin-right: 7px;
}

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

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    animation: scroll-pulse 2.4s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        transform: scaleY(0.4);
        transform-origin: top;
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }
}

/* Hero word-by-word entrance */
.hero-content [data-anim] {
    opacity: 0;
    transform: translateY(28px);
    animation: rise-in 1s var(--ease-out) forwards;
}

.hero-content [data-anim="1"] {
    animation-delay: 0.15s;
}

.hero-content [data-anim="2"] {
    animation-delay: 0.32s;
}

.hero-content [data-anim="3"] {
    animation-delay: 0.5s;
}

.hero-content [data-anim="4"] {
    animation-delay: 0.68s;
}

@keyframes rise-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================================
   Trust strip
   ============================================================= */

.trust-strip {
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
    padding-block: 22px;
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 42s linear infinite;
}

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

.marquee-group {
    display: flex;
    align-items: center;
    gap: 52px;
    padding-right: 52px;
}

.marquee-group span {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
    transition: color 0.4s var(--ease-out);
}

.marquee-group span::before {
    content: '◆';
    font-size: 7px;
    vertical-align: middle;
    margin-right: 16px;
    color: var(--accent);
    opacity: 0.55;
}

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

/* =============================================================
   About
   ============================================================= */

.about-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.about-subtitle {
    font-size: clamp(19px, 2.2vw, 25px);
    font-weight: 400;
    color: var(--accent-soft);
    margin-bottom: 26px;
    letter-spacing: 0.05em;
}

.about-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 2.05;
    max-width: 56ch;
    text-wrap: pretty;
}

.about-visual {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
}

/* Concentric ripple mark — “波光倒映” made literal */
.ripple-mark {
    position: relative;
    width: min(340px, 76vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.ripple-mark span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(111, 195, 224, 0.28);
    border-radius: 50%;
    animation: ripple 5.5s var(--ease-out) infinite;
}

.ripple-mark span:nth-child(2) {
    animation-delay: 1.35s;
}

.ripple-mark span:nth-child(2n) {
    border-color: rgba(111, 195, 224, 0.3);
}

.ripple-mark span:nth-child(3) {
    animation-delay: 2.7s;
}

.ripple-mark span:nth-child(4) {
    animation-delay: 4.05s;
}

@keyframes ripple {
    0% {
        transform: scale(0.42);
        opacity: 0;
        border-color: rgba(111, 195, 224, 0.7);
    }

    12% {
        opacity: 1;
    }

    100% {
        transform: scale(1.05);
        opacity: 0;
        border-color: rgba(111, 195, 224, 0.1);
    }
}

.ripple-core {
    position: relative;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--logo-cream);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 90px 10px rgba(111, 195, 224, 0.32),
        0 22px 60px -20px rgba(0, 0, 0, 0.7);
    animation: core-breathe 6.5s var(--ease-in-out) infinite alternate;
}

.ripple-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes core-breathe {
    to {
        transform: translateY(-8px) scale(1.03);
    }
}

/* Legacy decorative elements (kept for backwards compatibility) */
.glass-circle,
.glass-rect {
    display: none;
}

/* =============================================================
   Services
   ============================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    padding: 38px 32px 34px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%),
            rgba(111, 195, 224, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.service-card::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: var(--gradient-line);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 195, 224, 0.32);
    box-shadow: var(--glass-shadow);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card i,
.service-icon {
    font-size: 26px;
    color: var(--accent-soft);
    margin-bottom: 22px;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(140deg, rgba(111, 195, 224, 0.16), rgba(111, 195, 224, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.service-card i {
    font-size: 24px;
    background-color: var(--accent-soft);
}

/* the mask-icon needs its own box; wrap keeps the tinted plate */
.icon-plate {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--accent-soft);
    background: linear-gradient(140deg, rgba(111, 195, 224, 0.16), rgba(111, 195, 224, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.5s var(--ease-out);
}

.service-card:hover .icon-plate {
    color: #fff;
    border-color: rgba(111, 195, 224, 0.4);
    transform: translateY(-2px);
}

.icon-plate i {
    margin: 0;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    border: 0;
    border-radius: 0;
    background-image: none;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
}

.service-card .link-arrow {
    margin-top: 20px;
    font-size: 14px;
}

/* Featured service band — the AI production service sits below the 4 cards */
.service-feature {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    margin-top: 22px;
    padding: clamp(26px, 3.4vw, 38px) clamp(24px, 3.4vw, 40px);
    border-radius: var(--radius);
    background: linear-gradient(120deg, rgba(111, 195, 224, 0.1), rgba(240, 210, 164, 0.06));
    border: 1px solid rgba(111, 195, 224, 0.24);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out);
}

.service-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 195, 224, 0.5);
    box-shadow: var(--glass-shadow);
}

.service-feature .icon-plate {
    margin-bottom: 0;
    width: 62px;
    height: 62px;
    font-size: 28px;
}

.service-feature h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.service-feature p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    max-width: 62ch;
}

.service-feature .feature-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(111, 195, 224, 0.35);
    border-radius: 100px;
    padding: 4px 11px;
    margin-bottom: 12px;
}

@media (max-width: 860px) {
    .service-feature {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .service-feature .btn {
        justify-self: start;
    }
}

/* Featured (repair) services */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 22px;
}

.repair-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out);
}

.repair-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 210, 164, 0.35);
    box-shadow: var(--glass-shadow);
}

.repair-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.repair-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    flex: 1;
}

.repair-card .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 20px;
}

.pill {
    font-size: 12.5px;
    padding: 5px 12px;
    border-radius: 100px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

/* Video facade (click-to-load YouTube) */
.service-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 940px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    background: #08131d;
}

.service-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-facade {
    background-color: #0a1620;
    background-image: radial-gradient(120% 100% at 50% 25%, #2b4a63 0%, #16293a 55%, #0a1620 100%);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.yt-facade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.25), rgba(6, 16, 26, 0.62));
    transition: background 0.5s var(--ease-out);
}

.yt-facade:hover::before {
    background: linear-gradient(180deg, rgba(6, 16, 26, 0.12), rgba(6, 16, 26, 0.5));
}

.yt-play {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 26px;
    transition: transform 0.5s var(--ease-out), background 0.5s var(--ease-out);
}

.yt-play::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: pulse-ring 2.6s var(--ease-out) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.yt-facade:hover .yt-play {
    transform: scale(1.09);
    background: rgba(255, 255, 255, 0.18);
}

/* =============================================================
   Portfolio / floating tags
   ============================================================= */

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.filter-btn {
    position: relative;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
    color: #05202e;
    background: var(--gradient-primary);
    border-color: transparent;
}

.floating-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 940px;
    margin: 0 auto;
}

.glass-tag {
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: transform 0.45s var(--ease-out), color 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

/* The tags are links, so they must sit still — a permanently floating
   target is hard to hit and keeps the compositor busy. Movement is now
   limited to the entrance and to hover. */
.glass-tag:hover,
.glass-tag:focus-visible {
    color: #fff;
    border-color: rgba(111, 195, 224, 0.5);
    box-shadow: 0 12px 34px -12px rgba(111, 195, 224, 0.55);
    transform: translateY(-4px) scale(1.03);
}

.glass-tag::after {
    content: '';
    display: inline-block;
    width: 0;
    overflow: hidden;
    margin-left: 0;
    color: var(--accent);
    white-space: nowrap;
    transition: width 0.4s var(--ease-out), margin-left 0.4s var(--ease-out);
    content: '→';
    opacity: 0;
}

.glass-tag:hover::after,
.glass-tag:focus-visible::after {
    width: 1em;
    margin-left: 8px;
    opacity: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    background: none;
    font: inherit;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    border: var(--glass-border);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    will-change: transform;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
    filter: saturate(0.85) brightness(0.85);
}

.portfolio-item:hover .portfolio-thumb {
    transform: scale(1.07);
    filter: saturate(1.05) brightness(1);
}

.portfolio-overlay {
    display: block;
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, transparent, rgba(3, 9, 16, 0.9));
    transform: translateY(12px);
    opacity: 0.92;
    transition: 0.5s var(--ease-out);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-cat {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.portfolio-title {
    display: block;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
}

/* Tag cloud helpers */

.tags-more {
    text-align: center;
    margin-top: 34px;
}

.block-tag {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 76px 0 26px;
}

.portfolio-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 40px;
}

/* Sibling-type link grid on the category pages */
.type-link-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px 24px;
}

/* =============================================================
   Process steps
   ============================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 32px 26px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    counter-increment: step;
    transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.process-step:hover {
    border-color: rgba(111, 195, 224, 0.3);
    transform: translateY(-4px);
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.9;
}

.process-step h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================================
   FAQ (accordion) — AEO friendly, always in the DOM
   ============================================================= */

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: var(--glass-border);
    overflow: hidden;
    transition: border-color 0.4s var(--ease-out);
}

.faq-item[open] {
    border-color: rgba(111, 195, 224, 0.3);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    transition: color 0.35s var(--ease-out);
}

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

.faq-item summary::after {
    content: '';
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    border-right: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    transform: rotate(45deg) translate(-3px, -3px);
    transition: transform 0.4s var(--ease-out);
}

.faq-item[open] summary::after {
    transform: rotate(225deg) translate(-3px, -3px);
}

.faq-item summary:hover {
    color: var(--accent-soft);
}

.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.95;
}

.faq-answer p+p {
    margin-top: 14px;
}

/* =============================================================
   Contact
   ============================================================= */

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    padding: clamp(34px, 5vw, 62px);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 195, 224, 0.22), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.contact-info h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.9;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 15.5px;
}

.contact-list li i {
    color: var(--accent-soft);
    font-size: 18px;
}

.contact-list a:hover {
    color: #fff;
}

.contact-cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-section p {
    margin-bottom: 28px;
    font-size: 16.5px;
    line-height: 1.95;
    color: var(--text-muted);
}

.contact-note {
    color: var(--accent-peach);
}

/* legacy form styles retained */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* =============================================================
   Footer
   ============================================================= */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-block: 54px 40px;
    background: rgba(3, 9, 16, 0.5);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 42px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    width: 34px;
    height: 34px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.9;
    max-width: 38ch;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 14.5px;
    transition: color 0.35s var(--ease-out), padding-left 0.35s var(--ease-out);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content p {
    color: var(--text-dim);
    font-size: 13.5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 17px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s var(--ease-out);
}

.social-links a:hover {
    color: #05202e;
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

/* =============================================================
   Floating LINE button
   ============================================================= */

/* =============================================================
   LINE CTA — 常駐在右下角的主要行動按鈕

   只留 LINE 一個入口，做成有文字的膠囊而不是純圖示，
   讓「要做什麼」一眼就看得懂。Email 與需求表單改放在
   每一頁下方的行動區塊與首頁聯絡區。
   ============================================================= */

.line-cta {
    position: fixed;
    right: clamp(16px, 3vw, 30px);
    bottom: clamp(16px, 3vw, 30px);
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px 0 18px;
    height: 54px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(140deg, #06c755, #04a344);
    box-shadow: 0 16px 38px -10px rgba(6, 199, 85, 0.65);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
    will-change: transform;
}

.line-cta .fa-line {
    width: 26px;
    height: 26px;
    flex: none;
}

.line-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1.5px solid rgba(6, 199, 85, 0.55);
    animation: pulse-ring 2.8s var(--ease-out) infinite;
}

.line-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 20px 46px -10px rgba(6, 199, 85, 0.85);
}

@media (max-width: 420px) {
    .line-cta {
        height: 50px;
        padding: 0 18px 0 15px;
        font-size: 14px;
        gap: 7px;
    }
    .line-cta .fa-line { width: 23px; height: 23px; }
}

.floating-btn {
    position: relative;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 27px;
    color: #fff;
    background: linear-gradient(140deg, #06c755, #04a344);
    box-shadow: 0 14px 34px -10px rgba(6, 199, 85, 0.6);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
    will-change: transform;
}

.floating-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(6, 199, 85, 0.55);
    animation: pulse-ring 2.8s var(--ease-out) infinite;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 42px -10px rgba(6, 199, 85, 0.8);
}


/* =============================================================
   Performance — older and mobile devices

   Glass blur, screen blending and large filters are what actually
   drop frames on weaker GPUs. Below 900px they are removed and the
   card backgrounds are made slightly more opaque instead; the look
   is nearly identical at that size.
   ============================================================= */

@media (max-width: 900px) {

    .service-card,
    .repair-card,
    .process-step,
    .blog-card,
    .glass-tag,
    .btn-outline,
    .service-feature,
    .article-body,
    .related-links,
    .faq-item,
    .yt-play,
    .nav-menu {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .service-card,
    .repair-card,
    .process-step,
    .blog-card,
    .faq-item {
        background: rgba(20, 34, 48, 0.62);
    }

    .glass-tag,
    .btn-outline {
        background: rgba(20, 34, 48, 0.5);
    }

    .article-body {
        background: rgba(13, 26, 39, 0.72);
    }

    .hero-aurora {
        filter: blur(50px);
    }

    .hero-aurora i {
        mix-blend-mode: normal;
        opacity: 0.85;
    }

    .ambient span {
        filter: blur(60px);
    }

    .grain {
        opacity: 0.035;
    }
}

/* =============================================================
   perf-lite — set by app.js when the device reports few cores,
   little memory, data saver, a slow connection, or simply cannot
   hold a smooth frame rate. Everything decorative stops.
   ============================================================= */

.perf-lite .grain,
.perf-lite .hero-stars {
    display: none;
}

.perf-lite *,
.perf-lite *::before,
.perf-lite *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.perf-lite .ambient span,
.perf-lite .hero-aurora i,
.perf-lite .ripple-mark span,
.perf-lite .ripple-core,
.perf-lite .marquee,
.perf-lite .line-cta::after,
.perf-lite .floating-btn::after,
.perf-lite .yt-play::after,
.perf-lite .hero-scroll::after,
.perf-lite .glass-tag {
    animation: none !important;
}

.perf-lite * {
    will-change: auto !important;
}

.perf-lite .ambient span {
    filter: blur(48px);
    opacity: 0.42;
}

.perf-lite .hero-aurora {
    filter: blur(40px);
}

.perf-lite .hero-aurora i {
    mix-blend-mode: normal;
}

.perf-lite .service-card,
.perf-lite .repair-card,
.perf-lite .process-step,
.perf-lite .blog-card,
.perf-lite .faq-item,
.perf-lite .glass-tag,
.perf-lite .btn-outline,
.perf-lite .contact-box,
.perf-lite .service-feature,
.perf-lite .related-links {
    background: rgba(20, 34, 48, 0.66);
}

.perf-lite .navbar.scrolled {
    background: rgba(6, 16, 26, 0.95);
}

.perf-lite .reveal,
.perf-lite [data-reveal] {
    transition-duration: 0.35s;
}

/* =============================================================
   Back to top
   ============================================================= */

.to-top {
    position: fixed;
    right: clamp(16px, 3vw, 30px);
    bottom: calc(clamp(16px, 3vw, 30px) + 70px);
    z-index: 900;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 19px;
    color: var(--accent-soft);
    background: rgba(13, 26, 39, 0.86);
    border: 1px solid rgba(111, 195, 224, 0.3);
    box-shadow: 0 10px 26px -10px rgba(0, 8, 18, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out),
        visibility 0.4s, color 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
        background-color 0.3s var(--ease-out);
}

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

.to-top:hover {
    color: #05202e;
    background: var(--gradient-primary);
    border-color: transparent;
}

.to-top:active {
    transform: translateY(2px);
}

@media (max-width: 640px) {
    .to-top {
        width: 44px;
        height: 44px;
        font-size: 17px;
        bottom: calc(clamp(16px, 3vw, 30px) + 64px);
    }
}


/* The floating button is big enough for the full LINE mark; the plain bubble
   stays everywhere else, where the lettering would turn to mush. */
.line-cta .fa-line,
.floating-btn .fa-line {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%203.1C6.75%203.1%202.5%206.44%202.5%2010.56c0%203.69%203.37%206.78%207.92%207.37.31.07.73.2.84.47.1.24.06.6.03.83l-.13.79c-.04.24-.19.93.82.511.02-.43%205.48-3.23%207.48-5.53h-.01c1.38-1.51%202.05-3.04%202.05-4.44C21.5%206.44%2017.25%203.1%2012%203.1ZM6.15%208.62H7.2v3.03h1.5v.99H6.15ZM9.35%208.62h1.05v4.02H9.35ZM11.25%208.62h.92l1.46%202.06V8.62h.98v4.02h-.92l-1.46-2.06v2.06h-.98ZM15.0%208.62h2.45v.99h-1.45v.54h1.4v.98h-1.4v.53h1.45v.98H15.0Z%22%2F%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%203.1C6.75%203.1%202.5%206.44%202.5%2010.56c0%203.69%203.37%206.78%207.92%207.37.31.07.73.2.84.47.1.24.06.6.03.83l-.13.79c-.04.24-.19.93.82.511.02-.43%205.48-3.23%207.48-5.53h-.01c1.38-1.51%202.05-3.04%202.05-4.44C21.5%206.44%2017.25%203.1%2012%203.1ZM6.15%208.62H7.2v3.03h1.5v.99H6.15ZM9.35%208.62h1.05v4.02H9.35ZM11.25%208.62h.92l1.46%202.06V8.62h.98v4.02h-.92l-1.46-2.06v2.06h-.98ZM15.0%208.62h2.45v.99h-1.45v.54h1.4v.98h-1.4v.53h1.45v.98H15.0Z%22%2F%3E%3C%2Fsvg%3E");
}

/* =============================================================
   Modal
   ============================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 7, 13, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
}

.modal.active {
    opacity: 1;
}

.modal-content {
    width: 100%;
    max-width: 940px;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.45s var(--ease-out);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: -46px;
    right: 0;
    font-size: 34px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

.video-container {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--glass-shadow);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#modal-title {
    margin-top: 20px;
    font-size: 20px;
}

#modal-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 6px;
}

/* =============================================================
   Scroll reveal
   ============================================================= */

.reveal,
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.active,
[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="left"] {
    transform: translateX(-34px);
}

[data-reveal="right"] {
    transform: translateX(34px);
}

[data-reveal="scale"] {
    transform: scale(0.96);
}

/* =============================================================
   Breadcrumbs
   ============================================================= */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-dim);
    margin-bottom: 26px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s var(--ease-out);
}

.breadcrumb a:hover {
    color: var(--accent-soft);
}

.breadcrumb li+li::before {
    content: '/';
    margin-right: 8px;
    opacity: 0.5;
}

.breadcrumb ol,
.breadcrumb {
    list-style: none;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =============================================================
   Page hero (inner pages)
   ============================================================= */

.page-hero {
    padding: calc(var(--header-height) + clamp(56px, 8vw, 96px)) 0 clamp(40px, 5vw, 64px);
    text-align: center;
}

.page-hero .section-title {
    font-size: clamp(30px, 5vw, 52px);
}

.page-hero .section-desc {
    max-width: 660px;
    margin: 0 auto;
}

.page-hero .hero-btns {
    margin-top: 34px;
    justify-content: center;
}

.page-hero + .section,
.blog-header + .section {
    padding-top: clamp(36px, 5vw, 64px);
}

/* Prose block for service pages */
.prose {
    max-width: 780px;
    margin: 0 auto;
    font-size: 16.5px;
    line-height: 2.05;
    color: #e3edf3;
}

.prose h2 {
    font-size: clamp(21px, 2.6vw, 27px);
    color: var(--accent-soft);
    margin: 52px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(111, 195, 224, 0.2);
}

.prose h3 {
    font-size: 18.5px;
    margin: 34px 0 14px;
    color: #fff;
}

.prose p {
    margin-bottom: 22px;
    text-wrap: pretty;
}

.prose ul {
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.prose li {
    position: relative;
    padding-left: 26px;
    color: var(--text-muted);
}

.prose li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.78em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.prose strong {
    color: #fff;
    font-weight: 600;
}

.prose a,
.faq-answer a {
    color: var(--accent-soft);
    border-bottom: 1px solid rgba(111, 195, 224, 0.4);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.prose a:hover,
.faq-answer a:hover {
    color: #fff;
    border-color: #fff;
}

.callout {
    padding: 26px 30px;
    border-radius: var(--radius);
    background: linear-gradient(140deg, rgba(240, 210, 164, 0.08), rgba(111, 195, 224, 0.08));
    border: 1px solid rgba(240, 210, 164, 0.2);
    margin: 32px 0;
}

.callout p:last-child {
    margin-bottom: 0;
}

/* Three-point script sample inside a service / type page */
.script-sample {
    background: rgba(111, 195, 224, 0.07);
    border-color: rgba(111, 195, 224, 0.22);
}

.script-sample p {
    font-size: 15px;
    line-height: 2.1;
    color: #dceaf2;
    letter-spacing: 0.01em;
}

.prose h3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* CTA band */
.cta-band {
    text-align: center;
    padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 56px);
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(240, 210, 164, 0.1), rgba(111, 195, 224, 0.1));
    border: 1px solid rgba(240, 210, 164, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.cta-band h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 14px;
}

.cta-band p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.9;
}

.cta-band .hero-btns {
    justify-content: center;
}

/* =============================================================
   Blog listing
   ============================================================= */

.blog-header {
    padding: calc(var(--header-height) + clamp(56px, 8vw, 96px)) 0 clamp(40px, 5vw, 60px);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out),
        box-shadow 0.5s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(111, 195, 224, 0.34);
    box-shadow: var(--glass-shadow);
}

.blog-thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.9s var(--ease-out);
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

.blog-thumb-wrap {
    overflow: hidden;
}

.blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 26px 26px;
}

.blog-date {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-rose);
    margin-bottom: 14px;
}

.blog-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #fff;
}

.blog-title a {
    transition: color 0.35s var(--ease-out);
}

.blog-title a:hover {
    color: var(--accent-soft);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-soft);
    font-size: 14.5px;
    font-weight: 500;
    transition: gap 0.35s var(--ease-out), color 0.35s var(--ease-out);
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 13px;
    color: #fff;
}

/* =============================================================
   Article reading view
   ============================================================= */

.article-hero {
    padding: calc(var(--header-height) + clamp(44px, 6vw, 72px)) 0 clamp(28px, 4vw, 44px);
    text-align: center;
}

.article-header-info {
    max-width: 820px;
    margin: 0 auto 38px;
}

.article-title {
    font-size: clamp(26px, 4.4vw, 42px);
    line-height: 1.42;
    margin-bottom: 20px;
    color: #fff;
    text-wrap: balance;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 22px;
    color: var(--text-dim);
    font-size: 14px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--accent-rose);
}

.article-hero-img {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.article-body {
    max-width: 750px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 58px);
    border-radius: var(--radius-lg);
    background: rgba(13, 26, 39, 0.5);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 17px;
    line-height: 2.05;
    color: #e4eef4;
}

.article-body h2 {
    font-size: clamp(20px, 2.6vw, 25px);
    color: var(--accent-soft);
    margin: 46px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(111, 195, 224, 0.2);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-size: 18px;
    margin: 30px 0 12px;
    color: #fff;
}

.article-body p {
    margin-bottom: 22px;
    text-wrap: pretty;
}

.article-body ul,
.article-body ol {
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-body li {
    position: relative;
    padding-left: 26px;
    color: #d2e0ea;
}

.article-body li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.82em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.article-body a {
    color: var(--accent-soft);
    border-bottom: 1px solid rgba(111, 195, 224, 0.4);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.article-body a:hover {
    color: #fff;
    border-color: #fff;
}

.article-body strong {
    color: #fff;
    font-weight: 600;
}

.article-cta {
    margin-top: 56px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius);
    background: linear-gradient(140deg, rgba(240, 210, 164, 0.1), rgba(111, 195, 224, 0.1));
    border: 1px solid rgba(240, 210, 164, 0.2);
    text-align: center;
}

.article-cta h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #fff;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.article-cta ul {
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-rose);
    font-size: 15px;
    margin-bottom: 28px;
    transition: gap 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.btn-back-blog:hover {
    gap: 15px;
    color: #fff;
}

/* Related links after an article */
.related-links {
    max-width: 750px;
    margin: 46px auto 0;
    padding: 30px clamp(22px, 4vw, 40px);
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: var(--glass-border);
}

.related-links h2 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--accent-soft);
}

.related-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.35s var(--ease-out), padding-left 0.35s var(--ease-out);
}

.related-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 980px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
        min-height: 260px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 68px;
    }

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

    .nav-menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 84vw);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 22px;
        padding: 90px 36px 40px;
        background: rgba(6, 16, 26, 0.94);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 19px;
    }

    .logo-mark,
    .navbar.scrolled .logo-mark {
        width: 32px;
        height: 32px;
    }

    .logo {
        font-size: 22px;
        gap: 9px;
    }

    .hero-title {
        letter-spacing: 0;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .service-card,
    .repair-card {
        padding: 30px 24px;
    }

    .contact-cta-section .btn {
        align-self: stretch;
    }

    .close-modal {
        top: -40px;
    }
}

/* =============================================================
   Accessibility: reduced motion & print
   ============================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .grain,
    .hero-stars {
        display: none;
    }

    .hero-content [data-anim] {
        opacity: 1;
        transform: none;
    }
}

@media print {

    .navbar,
    .line-cta,
    .floating-btn,
    .cursor-dot,
    .cursor-outline,
    .ambient,
    .grain,
    .hero-scroll {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}


/* ===== Inline SVG icon set (replaces Font Awesome CDN) ===== */
i[class*="fa-"],
.icn {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
}

.fa-cut{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2218%22%20r%3D%222.4%22%2F%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222.4%22%2F%3E%3Cpath%20d%3D%22M8%207.2%2020%2018M20%206%208%2016.8%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2218%22%20r%3D%222.4%22%2F%3E%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222.4%22%2F%3E%3Cpath%20d%3D%22M8%207.2%2020%2018M20%206%208%2016.8%22%2F%3E%3C%2Fsvg%3E")}
.fa-magic{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020%2014.5%209.5M16.5%207.5%2018%206%22%2F%3E%3Cpath%20d%3D%22m14%204%20.7%201.9L16.6%206.6l-1.9.7L14%209.2l-.7-1.9L11.4%206.6l1.9-.7z%22%2F%3E%3Cpath%20d%3D%22m20%2011%20.5%201.4%201.4.5-1.4.5L20%2015l-.5-1.4-1.4-.5%201.4-.5z%22%2F%3E%3Cpath%20d%3D%22m6%203%20.4%201.1L7.5%204.5l-1.1.4L6%206l-.4-1.1L4.5%204.5l1.1-.4z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020%2014.5%209.5M16.5%207.5%2018%206%22%2F%3E%3Cpath%20d%3D%22m14%204%20.7%201.9L16.6%206.6l-1.9.7L14%209.2l-.7-1.9L11.4%206.6l1.9-.7z%22%2F%3E%3Cpath%20d%3D%22m20%2011%20.5%201.4%201.4.5-1.4.5L20%2015l-.5-1.4-1.4-.5%201.4-.5z%22%2F%3E%3Cpath%20d%3D%22m6%203%20.4%201.1L7.5%204.5l-1.1.4L6%206l-.4-1.1L4.5%204.5l1.1-.4z%22%2F%3E%3C%2Fsvg%3E")}
.fa-palette{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203a9%209%200%201%200%200%2018%202%202%200%200%200%201.7-3%202%202%200%200%201%201.7-3H18a3%203%200%200%200%203-3%209%209%200%200%200-9-9Z%22%2F%3E%3Ccircle%20cx%3D%227.5%22%20cy%3D%2212%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%229.8%22%20cy%3D%227.8%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2214.6%22%20cy%3D%227.2%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203a9%209%200%201%200%200%2018%202%202%200%200%200%201.7-3%202%202%200%200%201%201.7-3H18a3%203%200%200%200%203-3%209%209%200%200%200-9-9Z%22%2F%3E%3Ccircle%20cx%3D%227.5%22%20cy%3D%2212%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%229.8%22%20cy%3D%227.8%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2214.6%22%20cy%3D%227.2%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E")}
.fa-volume-up{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M11%205%206.5%208.8H3.5v6.4h3L11%2019z%22%2F%3E%3Cpath%20d%3D%22M15.2%209.2a4%204%200%200%201%200%205.6M18%206.5a8%208%200%200%201%200%2011%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M11%205%206.5%208.8H3.5v6.4h3L11%2019z%22%2F%3E%3Cpath%20d%3D%22M15.2%209.2a4%204%200%200%201%200%205.6M18%206.5a8%208%200%200%201%200%2011%22%2F%3E%3C%2Fsvg%3E")}
.fa-envelope{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225%22%20width%3D%2219%22%20height%3D%2214%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22m3.5%207%207.3%205.4a2%202%200%200%200%202.4%200L20.5%207%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225%22%20width%3D%2219%22%20height%3D%2214%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22m3.5%207%207.3%205.4a2%202%200%200%200%202.4%200L20.5%207%22%2F%3E%3C%2Fsvg%3E")}
.fa-bars{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%207h16M4%2012h16M4%2017h16%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%207h16M4%2012h16M4%2017h16%22%2F%3E%3C%2Fsvg%3E")}
.fa-times{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%206l12%2012M18%206%206%2018%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%206l12%2012M18%206%206%2018%22%2F%3E%3C%2Fsvg%3E")}
.fa-arrow-right{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2012h15M13%206l6%206-6%206%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2012h15M13%206l6%206-6%206%22%2F%3E%3C%2Fsvg%3E")}
.fa-arrow-left{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M20%2012H5M11%206l-6%206%206%206%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M20%2012H5M11%206l-6%206%206%206%22%2F%3E%3C%2Fsvg%3E")}
.fa-check-circle{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m8%2012.4%202.7%202.6L16%209.6%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m8%2012.4%202.7%202.6L16%209.6%22%2F%3E%3C%2Fsvg%3E")}
.fa-calendar-alt{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%225%22%20width%3D%2217%22%20height%3D%2215.5%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M3.5%209.5h17M8%203v4M16%203v4%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%225%22%20width%3D%2217%22%20height%3D%2215.5%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M3.5%209.5h17M8%203v4M16%203v4%22%2F%3E%3C%2Fsvg%3E")}
.fa-folder{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3.5%206.5A1.5%201.5%200%200%201%205%205h4.2l1.8%202.4H19a1.5%201.5%200%200%201%201.5%201.5v8.6A1.5%201.5%200%200%201%2019%2019H5a1.5%201.5%200%200%201-1.5-1.5z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3.5%206.5A1.5%201.5%200%200%201%205%205h4.2l1.8%202.4H19a1.5%201.5%200%200%201%201.5%201.5v8.6A1.5%201.5%200%200%201%2019%2019H5a1.5%201.5%200%200%201-1.5-1.5z%22%2F%3E%3C%2Fsvg%3E")}
.fa-pen-nib{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020%208.5%208.5%2015.5%204l4.5%204.5-4.5%207L4%2020Z%22%2F%3E%3Cpath%20d%3D%22m10.5%2013.5%203-3%22%2F%3E%3Ccircle%20cx%3D%229.2%22%20cy%3D%2214.8%22%20r%3D%221.6%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020%208.5%208.5%2015.5%204l4.5%204.5-4.5%207L4%2020Z%22%2F%3E%3Cpath%20d%3D%22m10.5%2013.5%203-3%22%2F%3E%3Ccircle%20cx%3D%229.2%22%20cy%3D%2214.8%22%20r%3D%221.6%22%2F%3E%3C%2Fsvg%3E")}
.fa-waveform{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2012h2M7%208v8M11%204.5v15M15%207.5v9M19%2010.5v3%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2012h2M7%208v8M11%204.5v15M15%207.5v9M19%2010.5v3%22%2F%3E%3C%2Fsvg%3E")}
.fa-file-recovery{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M13.5%203H7a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h10a2%202%200%200%200%202-2V8.5z%22%2F%3E%3Cpath%20d%3D%22M13.5%203v5.5H19%22%2F%3E%3Cpath%20d%3D%22M9.5%2014.5a2.8%202.8%200%201%200%20.9-2.1M10%2011.2v1.6H8.4%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M13.5%203H7a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h10a2%202%200%200%200%202-2V8.5z%22%2F%3E%3Cpath%20d%3D%22M13.5%203v5.5H19%22%2F%3E%3Cpath%20d%3D%22M9.5%2014.5a2.8%202.8%200%201%200%20.9-2.1M10%2011.2v1.6H8.4%22%2F%3E%3C%2Fsvg%3E")}
.fa-restore{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225.5%22%20width%3D%2219%22%20height%3D%2213%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M10%209.5%2015%2012l-5%202.5z%22%2F%3E%3Cpath%20d%3D%22M6%205.5v13M18%205.5v13%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225.5%22%20width%3D%2219%22%20height%3D%2213%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M10%209.5%2015%2012l-5%202.5z%22%2F%3E%3Cpath%20d%3D%22M6%205.5v13M18%205.5v13%22%2F%3E%3C%2Fsvg%3E")}
.fa-mic{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%229%22%20y%3D%223%22%20width%3D%226%22%20height%3D%2210.5%22%20rx%3D%223%22%2F%3E%3Cpath%20d%3D%22M5.5%2011.5a6.5%206.5%200%200%200%2013%200M12%2018v3M9%2021h6%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%229%22%20y%3D%223%22%20width%3D%226%22%20height%3D%2210.5%22%20rx%3D%223%22%2F%3E%3Cpath%20d%3D%22M5.5%2011.5a6.5%206.5%200%200%200%2013%200M12%2018v3M9%2021h6%22%2F%3E%3C%2Fsvg%3E")}
.fa-shield{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203%205%206v5.4c0%204.2%202.8%207.6%207%209.6%204.2-2%207-5.4%207-9.6V6z%22%2F%3E%3Cpath%20d%3D%22m9%2012%202.2%202.2L15.5%2010%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203%205%206v5.4c0%204.2%202.8%207.6%207%209.6%204.2-2%207-5.4%207-9.6V6z%22%2F%3E%3Cpath%20d%3D%22m9%2012%202.2%202.2L15.5%2010%22%2F%3E%3C%2Fsvg%3E")}
.fa-clock{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M12%207v5.3l3.2%202%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M12%207v5.3l3.2%202%22%2F%3E%3C%2Fsvg%3E")}
.fa-upload{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2016V4M8%207.5%2012%203.5l4%204%22%2F%3E%3Cpath%20d%3D%22M4%2015v3.5A2.5%202.5%200%200%200%206.5%2021h11a2.5%202.5%200%200%200%202.5-2.5V15%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2016V4M8%207.5%2012%203.5l4%204%22%2F%3E%3Cpath%20d%3D%22M4%2015v3.5A2.5%202.5%200%200%200%206.5%2021h11a2.5%202.5%200%200%200%202.5-2.5V15%22%2F%3E%3C%2Fsvg%3E")}
.fa-quote{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%224%22%20y%3D%222.8%22%20width%3D%2216%22%20height%3D%2218.4%22%20rx%3D%222.2%22%2F%3E%3Cpath%20d%3D%22M8%208h8M8%2012h8M8%2016h5%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%224%22%20y%3D%222.8%22%20width%3D%2216%22%20height%3D%2218.4%22%20rx%3D%222.2%22%2F%3E%3Cpath%20d%3D%22M8%208h8M8%2012h8M8%2016h5%22%2F%3E%3C%2Fsvg%3E")}
.fa-play{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M10%208.4%2016%2012l-6%203.6z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22M10%208.4%2016%2012l-6%203.6z%22%2F%3E%3C%2Fsvg%3E")}
.fa-plus{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%205v14M5%2012h14%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%205v14M5%2012h14%22%2F%3E%3C%2Fsvg%3E")}
.fa-instagram{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M7.6%202.5h8.8A5.1%205.1%200%200%201%2021.5%207.6v8.8a5.1%205.1%200%200%201-5.1%205.1H7.6a5.1%205.1%200%200%201-5.1-5.1V7.6A5.1%205.1%200%200%201%207.6%202.5Zm0%201.9A3.2%203.2%200%200%200%204.4%207.6v8.8a3.2%203.2%200%200%200%203.2%203.2h8.8a3.2%203.2%200%200%200%203.2-3.2V7.6a3.2%203.2%200%200%200-3.2-3.2ZM12%207a5%205%200%201%201%200%2010%205%205%200%200%201%200-10Zm0%201.9a3.1%203.1%200%201%200%200%206.2%203.1%203.1%200%200%200%200-6.2Zm5.3-2.6a1.2%201.2%200%201%201%200%202.4%201.2%201.2%200%200%201%200-2.4Z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M7.6%202.5h8.8A5.1%205.1%200%200%201%2021.5%207.6v8.8a5.1%205.1%200%200%201-5.1%205.1H7.6a5.1%205.1%200%200%201-5.1-5.1V7.6A5.1%205.1%200%200%201%207.6%202.5Zm0%201.9A3.2%203.2%200%200%200%204.4%207.6v8.8a3.2%203.2%200%200%200%203.2%203.2h8.8a3.2%203.2%200%200%200%203.2-3.2V7.6a3.2%203.2%200%200%200-3.2-3.2ZM12%207a5%205%200%201%201%200%2010%205%205%200%200%201%200-10Zm0%201.9a3.1%203.1%200%201%200%200%206.2%203.1%203.1%200%200%200%200-6.2Zm5.3-2.6a1.2%201.2%200%201%201%200%202.4%201.2%201.2%200%200%201%200-2.4Z%22%2F%3E%3C%2Fsvg%3E")}
.fa-facebook{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M22%2012a10%2010%200%201%200-11.6%209.9v-7H7.9V12h2.5V9.8c0-2.5%201.5-3.9%203.8-3.9%201.1%200%202.2.2%202.2.2v2.4h-1.2c-1.2%200-1.6.8-1.6%201.6V12h2.7l-.4%202.9h-2.3v7A10%2010%200%200%200%2022%2012Z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M22%2012a10%2010%200%201%200-11.6%209.9v-7H7.9V12h2.5V9.8c0-2.5%201.5-3.9%203.8-3.9%201.1%200%202.2.2%202.2.2v2.4h-1.2c-1.2%200-1.6.8-1.6%201.6V12h2.7l-.4%202.9h-2.3v7A10%2010%200%200%200%2022%2012Z%22%2F%3E%3C%2Fsvg%3E")}
.fa-youtube{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M21.6%207.2a2.5%202.5%200%200%200-1.8-1.8C18.2%205%2012%205%2012%205s-6.2%200-7.8.4A2.5%202.5%200%200%200%202.4%207.2%2026%2026%200%200%200%202%2012a26%2026%200%200%200%20.4%204.8%202.5%202.5%200%200%200%201.8%201.8C5.8%2019%2012%2019%2012%2019s6.2%200%207.8-.4a2.5%202.5%200%200%200%201.8-1.8A26%2026%200%200%200%2022%2012a26%2026%200%200%200-.4-4.8ZM10%2015.1V8.9l5.2%203.1Z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M21.6%207.2a2.5%202.5%200%200%200-1.8-1.8C18.2%205%2012%205%2012%205s-6.2%200-7.8.4A2.5%202.5%200%200%200%202.4%207.2%2026%2026%200%200%200%202%2012a26%2026%200%200%200%20.4%204.8%202.5%202.5%200%200%200%201.8%201.8C5.8%2019%2012%2019%2012%2019s6.2%200%207.8-.4a2.5%202.5%200%200%200%201.8-1.8A26%2026%200%200%200%2022%2012a26%2026%200%200%200-.4-4.8ZM10%2015.1V8.9l5.2%203.1Z%22%2F%3E%3C%2Fsvg%3E")}
.fa-line{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M12%203C6.75%203%202.5%206.36%202.5%2010.5c0%203.7%203.37%206.8%207.92%207.4.31.06.73.2.84.46.1.24.06.6.03.84l-.13.8c-.04.24-.19.94.83.51%201.02-.43%205.48-3.23%207.48-5.53h-.01c1.38-1.51%202.04-3.05%202.04-4.48C21.5%206.36%2017.25%203%2012%203Z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23000%22%3E%3Cpath%20d%3D%22M12%203C6.75%203%202.5%206.36%202.5%2010.5c0%203.7%203.37%206.8%207.92%207.4.31.06.73.2.84.46.1.24.06.6.03.84l-.13.8c-.04.24-.19.94.83.51%201.02-.43%205.48-3.23%207.48-5.53h-.01c1.38-1.51%202.04-3.05%202.04-4.48C21.5%206.36%2017.25%203%2012%203Z%22%2F%3E%3C%2Fsvg%3E")}
.fa-heart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2020.3%204.6%2013a4.6%204.6%200%200%201%206.5-6.5l.9.9.9-.9A4.6%204.6%200%200%201%2019.4%2013Z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2020.3%204.6%2013a4.6%204.6%200%200%201%206.5-6.5l.9.9.9-.9A4.6%204.6%200%200%201%2019.4%2013Z%22%2F%3E%3C%2Fsvg%3E")}
.fa-music{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%2018V5.5l11-2V16%22%2F%3E%3Ccircle%20cx%3D%226.4%22%20cy%3D%2218%22%20r%3D%222.6%22%2F%3E%3Ccircle%20cx%3D%2217.4%22%20cy%3D%2216%22%20r%3D%222.6%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%2018V5.5l11-2V16%22%2F%3E%3Ccircle%20cx%3D%226.4%22%20cy%3D%2218%22%20r%3D%222.6%22%2F%3E%3Ccircle%20cx%3D%2217.4%22%20cy%3D%2216%22%20r%3D%222.6%22%2F%3E%3C%2Fsvg%3E")}
.fa-camera{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%208.5A2%202%200%200%201%205%206.5h2.2l1.3-2h7l1.3%202H19a2%202%200%200%201%202%202v8.5a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212.6%22%20r%3D%223.6%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%208.5A2%202%200%200%201%205%206.5h2.2l1.3-2h7l1.3%202H19a2%202%200%200%201%202%202v8.5a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212.6%22%20r%3D%223.6%22%2F%3E%3C%2Fsvg%3E")}
.fa-mobile{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%226.5%22%20y%3D%222.5%22%20width%3D%2211%22%20height%3D%2219%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M10.5%205.5h3M10.8%2018.5h2.4%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%226.5%22%20y%3D%222.5%22%20width%3D%2211%22%20height%3D%2219%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M10.5%205.5h3M10.8%2018.5h2.4%22%2F%3E%3C%2Fsvg%3E")}
.fa-film{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%224%22%20width%3D%2219%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M7%204v16M17%204v16M2.5%2012h19M2.5%208h4.5M2.5%2016h4.5M17%208h4.5M17%2016h4.5%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%224%22%20width%3D%2219%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M7%204v16M17%204v16M2.5%2012h19M2.5%208h4.5M2.5%2016h4.5M17%208h4.5M17%2016h4.5%22%2F%3E%3C%2Fsvg%3E")}
.fa-users{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%229.2%22%20cy%3D%228.4%22%20r%3D%223.2%22%2F%3E%3Cpath%20d%3D%22M3.2%2019.5a6%206%200%200%201%2012%200%22%2F%3E%3Cpath%20d%3D%22M16%205.6a3.2%203.2%200%200%201%200%205.6M17.4%2014.2a6%206%200%200%201%203.4%205.3%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%229.2%22%20cy%3D%228.4%22%20r%3D%223.2%22%2F%3E%3Cpath%20d%3D%22M3.2%2019.5a6%206%200%200%201%2012%200%22%2F%3E%3Cpath%20d%3D%22M16%205.6a3.2%203.2%200%200%201%200%205.6M17.4%2014.2a6%206%200%200%201%203.4%205.3%22%2F%3E%3C%2Fsvg%3E")}
.fa-frame{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%2218%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22m5.5%2017%204-4.6%203%203%202.6-2.6%203.4%204.2%22%2F%3E%3Ccircle%20cx%3D%229%22%20cy%3D%228.6%22%20r%3D%221.3%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%2218%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22m5.5%2017%204-4.6%203%203%202.6-2.6%203.4%204.2%22%2F%3E%3Ccircle%20cx%3D%229%22%20cy%3D%228.6%22%20r%3D%221.3%22%2F%3E%3C%2Fsvg%3E")}
.fa-box{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m12%202.8%208.5%204.3v9.8L12%2021.2%203.5%2016.9V7.1z%22%2F%3E%3Cpath%20d%3D%22m3.6%207.2%208.4%204.3%208.4-4.3M12%2011.5v9.5%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m12%202.8%208.5%204.3v9.8L12%2021.2%203.5%2016.9V7.1z%22%2F%3E%3Cpath%20d%3D%22m3.6%207.2%208.4%204.3%208.4-4.3M12%2011.5v9.5%22%2F%3E%3C%2Fsvg%3E")}
.fa-clapper{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%209.5h18v9a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%22%2F%3E%3Cpath%20d%3D%22m3.4%209.3.9-3.6%2017%203.2-.6%202.6%22%2F%3E%3Cpath%20d%3D%22m8.2%206.6-1.6%203M13%207.6l-1.6%203M17.8%208.6l-1.6%203%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%209.5h18v9a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%22%2F%3E%3Cpath%20d%3D%22m3.4%209.3.9-3.6%2017%203.2-.6%202.6%22%2F%3E%3Cpath%20d%3D%22m8.2%206.6-1.6%203M13%207.6l-1.6%203M17.8%208.6l-1.6%203%22%2F%3E%3C%2Fsvg%3E")}
.fa-book{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%204.5A1.5%201.5%200%200%201%205.5%203H19v14.5H5.5A1.5%201.5%200%200%200%204%2019z%22%2F%3E%3Cpath%20d%3D%22M4%2019a2%202%200%200%200%202%202h13v-3.5%22%2F%3E%3Cpath%20d%3D%22M8%207.5h7M8%2011h5%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%204.5A1.5%201.5%200%200%201%205.5%203H19v14.5H5.5A1.5%201.5%200%200%200%204%2019z%22%2F%3E%3Cpath%20d%3D%22M4%2019a2%202%200%200%200%202%202h13v-3.5%22%2F%3E%3Cpath%20d%3D%22M8%207.5h7M8%2011h5%22%2F%3E%3C%2Fsvg%3E")}
.fa-ai-video{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225%22%20width%3D%2219%22%20height%3D%2214%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M9.8%209.9%2014.6%2012l-4.8%202.1z%22%2F%3E%3Cpath%20d%3D%22m18.6%202%20.55%201.5L20.7%204.1l-1.55.6L18.6%206.2l-.55-1.5L16.5%204.1l1.55-.6z%22%2F%3E%3Cpath%20d%3D%22m5.2%201.6.4%201.1%201.1.4-1.1.4-.4%201.1-.4-1.1L3.7%203.1l1.1-.4z%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222.5%22%20y%3D%225%22%20width%3D%2219%22%20height%3D%2214%22%20rx%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M9.8%209.9%2014.6%2012l-4.8%202.1z%22%2F%3E%3Cpath%20d%3D%22m18.6%202%20.55%201.5L20.7%204.1l-1.55.6L18.6%206.2l-.55-1.5L16.5%204.1l1.55-.6z%22%2F%3E%3Cpath%20d%3D%22m5.2%201.6.4%201.1%201.1.4-1.1.4-.4%201.1-.4-1.1L3.7%203.1l1.1-.4z%22%2F%3E%3C%2Fsvg%3E")}
.fa-arrow-up{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2020V5M6%2011l6-6%206%206%22%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2020V5M6%2011l6-6%206%206%22%2F%3E%3C%2Fsvg%3E")}


/* =============================================================
   修復示意動畫（viz）

   純 SVG + CSS，沒有圖檔也沒有 JS。一條掃描線由左往右掃過，
   線後面的內容換成「修復後」的樣子——用畫面直接說明我們在做什麼。
   低效能裝置與 prefers-reduced-motion 會停在完成狀態，不做動畫。
   ============================================================= */

.viz {
    position: relative;
    margin: 40px auto 0;
    max-width: 900px;
    height: 190px;
    padding: 20px 22px 34px;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(120% 140% at 20% 0%, rgba(47, 127, 174, 0.16), transparent 62%),
        rgba(10, 22, 34, 0.72);
    border: 1px solid rgba(111, 195, 224, 0.16);
}

.viz svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* --- 波形 --- */
.viz-line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.viz-before { stroke: rgba(240, 210, 164, 0.5); }
.viz-after  { stroke: var(--accent); }

.viz-clip {
    clip-path: inset(0 100% 0 0);
    animation: viz-reveal 5.6s var(--ease-out) infinite;
}

/* 掃描線經過之後，「修復前」那條淡下去，才看得出是被換掉的 */
.viz-before {
    animation: viz-dim 5.6s var(--ease-out) infinite;
}

@keyframes viz-dim {
    0%, 10%   { opacity: 1; }
    58%, 88%  { opacity: 0.16; }
    100%      { opacity: 1; }
}

@keyframes viz-reveal {
    0%        { clip-path: inset(0 100% 0 0); }
    8%        { clip-path: inset(0 100% 0 0); }
    58%, 88%  { clip-path: inset(0 0 0 0); }
    100%      { clip-path: inset(0 100% 0 0); }
}

.viz-sweep {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 22px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 18px 3px rgba(111, 195, 224, 0.5);
    animation: viz-sweep 5.6s var(--ease-out) infinite;
}

@keyframes viz-sweep {
    0%, 8%   { transform: translateX(0); opacity: 0; }
    12%      { opacity: 1; }
    58%      { transform: translateX(calc(900px - 44px)); opacity: 1; }
    64%      { transform: translateX(calc(900px - 44px)); opacity: 0; }
    100%     { transform: translateX(calc(900px - 44px)); opacity: 0; }
}

/* --- 檔案區塊歸位 --- */
.viz-blk {
    fill: rgba(111, 195, 224, 0.22);
    stroke: rgba(111, 195, 224, 0.5);
    stroke-width: 1;
    transform-box: fill-box;
    transform-origin: center;
    animation: viz-snap 5.6s var(--ease-out) infinite;
    animation-delay: var(--d, 0s);
}

@keyframes viz-snap {
    0%, 6%   { transform: translate(var(--ox), var(--oy)) rotate(6deg); opacity: 0.28; }
    38%, 86% { transform: translate(0, 0) rotate(0); opacity: 1; }
    100%     { transform: translate(var(--ox), var(--oy)) rotate(6deg); opacity: 0.28; }
}

/* --- 掃描線消失 --- */
.viz-scan {
    fill: rgba(240, 210, 164, 0.34);
    animation: viz-fade 5.6s var(--ease-out) infinite;
    animation-delay: var(--d, 0s);
}

@keyframes viz-fade {
    0%, 14%  { opacity: 1; transform: translateX(0); }
    56%, 88% { opacity: 0.06; transform: translateX(3px); }
    100%     { opacity: 1; transform: translateX(0); }
}

.viz-grain svg { background: linear-gradient(120deg, rgba(47,127,174,.18), rgba(6,16,26,.2)); border-radius: 12px; }

/* --- 前後標籤 --- */
.viz-tag {
    position: absolute;
    bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(6, 16, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.viz-tag-a { left: 22px;  color: rgba(240, 210, 164, 0.9); }

/* 右上角，避開右下角常駐的 LINE 按鈕 */
.viz-tag-b {
    right: 22px;
    bottom: auto;
    top: 14px;
    color: var(--accent);
}

@media (max-width: 700px) {
    .viz { height: 160px; padding: 16px 16px 32px; }
    .viz-tag { font-size: 11px; padding: 3px 9px; }
    @keyframes viz-sweep {
        0%, 8%  { transform: translateX(0); opacity: 0; }
        12%     { opacity: 1; }
        58%     { transform: translateX(calc(100vw - 90px)); opacity: 1; }
        64%,100%{ transform: translateX(calc(100vw - 90px)); opacity: 0; }
    }
}

/* 低效能裝置或使用者要求減少動態時，直接停在「修復後」的狀態 */
.perf-lite .viz-clip,
.perf-lite .viz-before,
.perf-lite .viz-sweep,
.perf-lite .viz-blk,
.perf-lite .viz-scan {
    animation: none !important;
}

.perf-lite .viz-clip { clip-path: inset(0 0 0 0); }
.perf-lite .viz-before { opacity: 0.16; }
.perf-lite .viz-sweep { opacity: 0; }
.perf-lite .viz-blk { transform: none; opacity: 1; }
.perf-lite .viz-scan { opacity: 0.06; }

@media (prefers-reduced-motion: reduce) {
    .viz-clip, .viz-before, .viz-sweep, .viz-blk, .viz-scan { animation: none !important; }
    .viz-clip { clip-path: inset(0 0 0 0); }
    .viz-before { opacity: 0.16; }
    .viz-sweep { opacity: 0; }
    .viz-blk { transform: none; opacity: 1; }
    .viz-scan { opacity: 0.06; }
}

/* 流程卡片：滑過時邊框亮起，讓四張卡不會太靜態 */
.process-step {
    transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out),
                box-shadow 0.5s var(--ease-out);
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 195, 224, 0.42);
    box-shadow: 0 22px 46px -24px rgba(0, 0, 0, 0.8);
}
