/* ============================================
   FarBar AI - 響應式設計 CSS
   基於 1920px 基準設計，支援多種解析度縮放
   斷點: 1920px, 1440px, 1366px, 1200px, 1080px, 375px
   ============================================ */

/* ============================================
   CSS 變數系統 - 1920px 基準設計
   ============================================ */
:root {
    /* 色彩系統 */
    --primary-gradient: linear-gradient(90deg, #1fc8ab, #5e8dfe);
    --primary-teal: #1fc8ab;
    --primary-blue: #5e8dfe;
    --bg-dark: #06161a;
    --bg-darker: #061519;
    --text-white: #fff;
    --text-gray: #c7c7c7;
    --text-muted: #63657e;
    --text-placeholder: #818182;
    --btn-purple: #503ae7;
    --btn-purple-hover: #6b52f5;
    --border-light: #dce4ec;

    /* 縮放比例 (1920px = 0.9) - 全域縮放 */
    --scale: 0.9;

    /* 間距系統 - 基於 1920px，用 max() 確保最小間距 */
    --spacing-xs: max(4px, calc(8px * var(--scale)));
    --spacing-sm: max(8px, calc(12px * var(--scale)));
    --spacing-md: max(12px, calc(16px * var(--scale)));
    --spacing-lg: max(16px, calc(24px * var(--scale)));
    --spacing-xl: max(20px, calc(32px * var(--scale)));
    --spacing-2xl: max(24px, calc(48px * var(--scale)));
    --spacing-3xl: max(32px, calc(64px * var(--scale)));
    --spacing-4xl: max(40px, calc(80px * var(--scale)));

    /* 字體大小 - 基於 1920px，用 max() 與 round() 確保最小可讀字級並對齊像素 */
    --font-xs: max(12px, round(nearest, calc(14px * var(--scale)), 2px));
    --font-sm: max(12px, round(nearest, calc(16px * var(--scale)), 2px));
    --font-md: max(14px, round(nearest, calc(18px * var(--scale)), 2px));
    --font-lg: max(14px, round(nearest, calc(20px * var(--scale)), 2px));
    --font-xl: max(16px, round(nearest, calc(24px * var(--scale)), 2px));
    --font-2xl: max(18px, round(nearest, calc(26px * var(--scale)), 2px));
    --font-3xl: max(20px, round(nearest, calc(28px * var(--scale)), 2px));
    --font-4xl: max(24px, round(nearest, calc(40px * var(--scale)), 2px));
    --font-5xl: max(28px, round(nearest, calc(48px * var(--scale)), 2px));

    /* 容器與尺寸 */
    --container-max: calc(1200px * var(--scale));
    --container-padding: calc(20px * var(--scale));
    --features-max-width: calc(1360px * var(--scale));
    --feature-image-width: calc(580px * var(--scale));
    --feature-image-height: calc(400px * var(--scale));
    --feature-gap: calc(134px * var(--scale));
    --feature-content-gap: calc(48px * var(--scale));

    /* 圓角 */
    --radius-sm: calc(5px * var(--scale));
    --radius-md: calc(25px * var(--scale));
    --radius-lg: calc(32px * var(--scale));

    /* 導航列 */
    --nav-height: calc(80px * var(--scale));
    --nav-padding: calc(36px * var(--scale));
    --logo-height: calc(36px * var(--scale));

    /* 按鈕尺寸 */
    --cta-width: calc(220px * var(--scale));
    --cta-height: calc(60px * var(--scale));

    /* 過渡動畫 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ============================================
   1440px 斷點 (75% of 1920)
   ============================================ */
@media (max-width: 1440px) {
    :root {
        --scale: 0.75;
        --container-padding: 24px;
        --nav-padding: 28px;
    }
}

/* ============================================
   1366px 斷點 (71% of 1920)
   ============================================ */
@media (max-width: 1366px) {
    :root {
        --scale: 0.71;
        --container-padding: 22px;
        --nav-padding: 24px;
    }
}

/* ============================================
   1200px 斷點 (62.5% of 1920)
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --scale: 0.625;
        --container-padding: 20px;
        --nav-padding: 20px;
    }
}

/* ============================================
   1080px 斷點 (56% of 1920)
   ============================================ */
@media (max-width: 1080px) {
    :root {
        --scale: 0.56;
        --container-padding: 20px;
        --nav-padding: 20px;
    }
}

/* ============================================
   375px 斷點 (手機版)
   ============================================ */
@media (max-width: 375px) {
    :root {
        --scale: 0.5;
        --container-padding: 16px;
        --nav-padding: 16px;
    }
}

/* ============================================
   CSS Reset & 基礎樣式
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ============================================
   導航列 - 1920px 基準
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(rgba(7, 41, 50, 0));
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1920px;
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--nav-padding);
}

.logo-link {
    display: block;
}

.logo {
    height: var(--logo-height);
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-links a {
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

/* 漢堡選單按鈕 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-fast);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 手機版選單面板 */
.mobile-menu {
    display: none;
    background-color: rgba(6, 22, 26, 0.98);
    padding: var(--spacing-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-links a {
    display: block;
    padding: var(--spacing-md);
    font-size: var(--font-lg);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast);
}

.mobile-nav-links a:hover {
    background-color: rgba(31, 200, 171, 0.1);
    color: var(--primary-teal);
}

/* ============================================
   Hero 區域 - 1920px 基準
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: calc(600px * var(--scale));
    max-height: calc(900px * var(--scale));
    overflow: hidden;
    display: flex;
    /* align-items: center;  <-- 移除垂直置中，改用 padding-top 控制 */
    align-items: flex-start;
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-bg {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(237px * var(--scale));
    background: linear-gradient(180deg, var(--bg-darker) 32.21%, rgba(9, 61, 75, 0.25) 73.56%, rgba(7, 41, 50, 0));
    z-index: -1;
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(237px * var(--scale));
    background: linear-gradient(0deg, var(--bg-darker) 32.21%, rgba(0, 14, 17, 0.5) 62.98%, rgba(7, 41, 50, 0));
    z-index: -1;
}

.hero-content {
    width: 100%;
    /* 讓 Hero 內容寬度與 Feature Grid 總寬度一致：(單欄寬 * 2) + 間距 */
    /* 這樣可確保 Hero 左側邊緣與下方第一張卡片的左邊緣對齊 */
    max-width: calc((var(--feature-image-width) * 2) + var(--feature-gap));
    margin: 0 auto;
    padding: 0;
    /* 移除左右 Padding，改用 max-width + margin auto 控制水平位置 */
    padding-top: calc(274px * var(--scale));
    /* 保持垂直定位 */
}

.hero-title {
    font-size: var(--font-5xl);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: calc(60px * var(--scale));
    /* 增加間距以接近原始設計 visually */
}

.hero-title-en {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-brand-icon {
    width: calc(143px * var(--scale));
}

.hero-subtitle {
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.4;
}

/* ============================================
   主要內容區 - 1920px 基準
   ============================================ */
.main-content {
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
    z-index: 0;
}

/* 不規律科技感網格背景 */
.main-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: calc(60px * var(--scale)) calc(60px * var(--scale));
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: 
        radial-gradient(circle at 20% 15%, black 0%, transparent 25%),
        radial-gradient(circle at 85% 55%, black 0%, transparent 30%),
        radial-gradient(circle at 30% 85%, black 0%, transparent 25%);
    mask-image: 
        radial-gradient(circle at 20% 15%, black 0%, transparent 25%),
        radial-gradient(circle at 85% 55%, black 0%, transparent 30%),
        radial-gradient(circle at 30% 85%, black 0%, transparent 25%);
}

.network-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin-bottom: -100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* 公司簡介區塊 */
.intro-section {
    text-align: center;
    padding: var(--spacing-4xl) var(--container-padding);
    max-width: calc(900px * var(--scale));
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(6px * var(--scale)) calc(20px * var(--scale));
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 200, 171, .18), rgba(94, 141, 254, .18));
    border: 1px solid rgba(31, 200, 171, .5);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    width: auto;
    height: auto;
    white-space: nowrap;
}

.badge-text {
    font-size: var(--font-xs);
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: .08em;
    color: #cdeee7;
    position: relative;
    z-index: 1;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-teal), var(--primary-blue));
    filter: blur(84px);
    z-index: 0;
}

.intro-title {
    font-size: var(--font-4xl);
    font-weight: 500;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-md);
}

.intro-description {
    font-size: var(--font-xl);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ============================================
   服務區塊 - 1920px 基準
   ============================================ */
.features-section {
    padding: var(--spacing-2xl) var(--container-padding) var(--spacing-4xl);
    max-width: var(--features-max-width);
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: var(--feature-image-width) var(--feature-image-width);
    gap: var(--feature-gap);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-4xl);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-image {
    position: relative;
    width: var(--feature-image-width);
    height: var(--feature-image-height);
    flex-shrink: 0;
}

.feature-image img {
    width: var(--feature-image-width);
    height: var(--feature-image-height);
    object-fit: contain;
    border-radius: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    width: var(--feature-image-width);
    gap: var(--feature-content-gap);
}

.feature-content .section-badge {
    margin-bottom: 0;
}

/* Badge 群組樣式（與基準設計一致） */
.divsectionHeaderBadgeGroup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(12px * var(--scale));
}

/* 標題與描述群組 */
.feature-title-group {
    display: flex;
    flex-direction: column;
    gap: calc(16px * var(--scale));
}

.feature-title {
    font-size: var(--font-3xl);
    font-weight: 500;
    margin: 0;
}

.feature-description {
    font-size: var(--font-lg);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-clamp: 6;
}

/* CTA 按鈕 */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--cta-width);
    height: var(--cta-height);
    padding: calc(16px * var(--scale)) calc(20px * var(--scale));
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-teal);
    font-size: max(12px, calc(20px * var(--scale)));
    font-weight: 500;
    color: var(--text-white);
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.cta-button:hover {
    background-color: rgba(31, 200, 171, 0.1);
}

.cta-button.secondary {
    border-color: var(--primary-teal);
    opacity: 0.9;
}

/* 模糊光暈效果 */
.blur-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.blur-1 {
    width: calc(800px * var(--scale));
    height: calc(800px * var(--scale));
    background-color: rgba(118, 185, 0, 0.12); /* Softer Nvidia Green */
    top: 5%;
    left: -10%;
    animation: fluidMove1 25s infinite alternate ease-in-out;
}

.blur-2 {
    width: calc(900px * var(--scale));
    height: calc(900px * var(--scale));
    background-color: rgba(31, 200, 171, 0.08); /* Softer Brand Teal */
    top: 35%;
    right: -10%;
    left: auto;
    animation: fluidMove2 30s infinite alternate ease-in-out;
}

.blur-3 {
    width: calc(700px * var(--scale));
    height: calc(700px * var(--scale));
    background-color: rgba(118, 185, 0, 0.08); /* Softer Nvidia Green */
    top: 70%;
    left: 10%;
    animation: fluidMove3 28s infinite alternate ease-in-out;
}

.blur-4 {
    width: calc(600px * var(--scale));
    height: calc(600px * var(--scale));
    background-color: rgba(94, 141, 254, 0.06); /* Softer Brand Blue */
    top: 50%;
    left: 20%;
    animation: fluidMove4 35s infinite alternate ease-in-out;
}

.blur-5 {
    width: calc(1000px * var(--scale));
    height: calc(1000px * var(--scale));
    background-color: rgba(118, 185, 0, 0.06); /* Softer Nvidia Green */
    top: 15%;
    right: 15%;
    left: auto;
    animation: fluidMove5 40s infinite alternate ease-in-out;
}

@keyframes fluidMove1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(15%, 10%) scale(1.2) rotate(45deg); }
    100% { transform: translate(-5%, 25%) scale(0.9) rotate(90deg); }
}
@keyframes fluidMove2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-20%, -15%) scale(1.1) rotate(-45deg); }
    100% { transform: translate(-10%, 15%) scale(0.95) rotate(-90deg); }
}
@keyframes fluidMove3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(10%, -20%) scale(1.3) rotate(30deg); }
    100% { transform: translate(25%, -5%) scale(0.8) rotate(60deg); }
}
@keyframes fluidMove4 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(25%, 15%) scale(1.4) rotate(-30deg); }
    100% { transform: translate(-15%, -25%) scale(0.9) rotate(-60deg); }
}
@keyframes fluidMove5 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-15%, 25%) scale(1.1) rotate(60deg); }
    100% { transform: translate(10%, 5%) scale(1.3) rotate(120deg); }
}

/* ============================================
   客戶案例區塊 - 1920px 基準
   ============================================ */
.clients-section {
    padding: var(--spacing-4xl) var(--container-padding);
    background-color: #fff;
    color: #000;
}

.section-title {
    font-size: var(--font-4xl);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-xl);
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    max-width: calc(700px * var(--scale));
    margin: 0 auto var(--spacing-xl);
}

/* 案例網格 - 對齊 farbarAi.html 設計稿 */
.case-grid {
    display: grid;
    /* 基準設計: 3 欄，每欄 410px */
    grid-template-columns: repeat(3, calc(410px * var(--scale)));
    gap: calc(32px * var(--scale));
    /* 置中對齊，對應原始設計稿的 left: 313px */
    max-width: calc((410px * 3 + 32px * 2) * var(--scale));
    margin: 0 auto;
    justify-content: center;
}

.case-item {
    /* 成功案例 API 的圖一律是 800x540，用同一個比例才不會裁掉現場的看板 */
    width: calc(410px * var(--scale));
    aspect-ratio: 800 / 540;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.case-item:hover img {
    transform: scale(1.05);
}

/*
 * 客戶名與設備型號疊在圖上（由 shared/success-cases.js 產生）。
 * 底部漸層是必要的：照片下緣的亮度無法預期，沒有這層襯底，白字會在
 * 淺色地板或亮螢幕上直接消失。
 */
.case-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: calc(48px * var(--scale)) calc(20px * var(--scale)) calc(16px * var(--scale));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.85));
    color: #fff;
    pointer-events: none;
}

.case-device {
    font-size: var(--font-md);
    font-weight: 500;
    line-height: 1.4;
}

.case-client {
    margin-top: calc(4px * var(--scale));
    font-size: var(--font-sm);
    line-height: 1.4;
    opacity: 0.85;
}

/* 滑動指示點 - 桌面版預設隱藏 */
.case-slider-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 0;
}

.case-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary-teal);
}

/* ============================================
   信任橫幅 - 1920px 基準
   ============================================ */
.trust-banner {
    width: 100%;
    position: relative;
}

.trust-banner img {
    width: 100%;
    height: auto;
    min-height: calc(160px * var(--scale));
    object-fit: cover;
    display: block;
}

.trust-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    width: 90%;
    max-width: 1200px;
}

.trust-banner-title {
    font-size: var(--font-3xl);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: calc(8px * var(--scale));
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.trust-banner-subtitle {
    font-size: var(--font-3xl);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
}

/* ============================================
   聯絡我們區塊 - 1920px 基準
   ============================================ */
.contact-section {
    background-color: var(--bg-dark);
    padding: var(--spacing-4xl) var(--container-padding);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(575px * var(--scale));
    background: linear-gradient(180deg, #14142b, rgba(20, 20, 43, 0));
    pointer-events: none;
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    margin-bottom: var(--spacing-2xl);
}

.contact-title {
    font-size: var(--font-4xl);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.contact-divider {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-name {
    font-size: var(--font-xl);
    font-weight: 500;
}

.contact-phone,
.contact-email {
    font-size: var(--font-xl);
    font-weight: 500;
}

/* 聯絡表單 */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    font-size: var(--font-sm);
    background-color: #fff;
    color: #000;
    border-radius: 2px;
}

.form-group input {
    height: calc(48px * var(--scale));
}

.form-group textarea {
    min-height: calc(120px * var(--scale));
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-placeholder);
}

.submit-btn {
    width: fit-content;
    min-width: calc(162px * var(--scale));
    padding: calc(12px * var(--scale)) calc(32px * var(--scale));
    background-color: var(--btn-purple);
    color: var(--text-white);
    font-size: var(--font-sm);
    font-weight: 500;
    border: none;
    transition: background-color var(--transition-normal);
    align-self: flex-start;
    margin-top: var(--spacing-md);
}

.submit-btn:hover {
    background-color: var(--btn-purple-hover);
}

/* ============================================
   響應式設計 - 1440px
   ============================================ */
@media (max-width: 1440px) {
    /* .hero-content padding-left removed - handled by main layout variable */

    .nav-links {
        gap: var(--spacing-lg);
    }
}

/* ============================================
   響應式設計 - 1366px
   ============================================ */
@media (max-width: 1366px) {
    /* .hero-content padding-left removed - handled by main layout variable */

    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   響應式設計 - 1200px
   ============================================ */
@media (max-width: 1200px) {
    /* .hero-content padding-left removed - handled by main layout variable */

    .nav-links {
        gap: var(--spacing-md);
    }

}

/* ============================================
   響應式設計 - 1080px（沿用 1200px 設計，僅調整縮放比例）
   ============================================ */
@media (max-width: 1080px) {
    :root {
        --scale: 0.56;
        --container-padding: 20px;
        --nav-padding: 20px;
        /* 更新 Gap 變數以匹配 .feature-row 的 gap 設定，確保 .hero-content 寬度一致 */
        --feature-gap: calc(60px * var(--scale));
    }

    /* .hero-content padding-left removed */

    .nav-links {
        gap: var(--spacing-sm);
    }

    /* 放寬最大寬度，讓簡介文字有足夠空間排成兩行 */
    .intro-section {
        max-width: 650px;
    }

    /* 服務區塊卡片同步縮小尺寸 */
    .feature-row {
        grid-template-columns: var(--feature-image-width) var(--feature-image-width);
        gap: calc(60px * var(--scale));
    }

    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   響應式設計 - 960px（平板過渡到手機版）
   ============================================ */
@media (max-width: 960px) {
    :root {
        --scale: 0.52;
        --nav-height: 70px;
        

    }

    .section-subtitle {
        max-width: 600px;
        margin: 0 auto var(--spacing-xl);
    }

    /* 恢復 960px 以下的原始卡片位置 */
    .eyeboom-gallery {
        left: 0;
    }

    .hero {
        align-items: center;
        /* 手機版平板模式恢復垂直置中 */
        height: auto;
        /* Prevent 100vh resizing issues */
        min-height: 600px;
        /* Ensure reasonable height */
    }

    .hero-bg {
        object-position: left center;
    }

    .hero-content {
        /* 手機版單欄模式：限制內容寬度並置中 */
        max-width: 700px;
        padding-left: 0;
        text-align: center;
        padding-top: var(--nav-height);
        /* 垂直位置改用 padding-top 控制，不靠 align-items */
    }

    .hero-brand {
        justify-content: center;
    }

    .intro-section {
        max-width: 600px;
    }

    /* 服務區塊卡片改為單欄堆疊 */
    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-image {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .feature-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .feature-content {
        align-items: center;
        width: 100%;
        gap: var(--spacing-xl);
    }

    .feature-content .divsectionHeaderBadgeGroup {
        align-items: center;
    }

    .feature-title-group {
        align-items: center;
    }

    .feature-description {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-button {
        margin: 0 auto;
        padding: 0 24px;
        min-width: 160px;
    }

    .section-badge {
        padding: 6px 16px !important;
    }

    /* 聯絡區塊 */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .contact-info {
        text-align: center;
    }

    .case-grid {
        /* 維持 3 欄並縮小尺寸 */
        grid-template-columns: repeat(3, calc(410px * var(--scale)));
        gap: calc(32px * var(--scale));
        max-width: calc((410px * 3 + 32px * 2) * var(--scale));
    }

    .case-item {
        width: calc(410px * var(--scale));
        aspect-ratio: 800 / 540;
    }
}

/* ============================================
   響應式設計 - 768px（平板／手機過渡）
   ============================================ */
@media (max-width: 768px) {
    :root {
        --scale: 0.48;
        --nav-height: 64px;
    }

    /* 導航列 - 手機版 */
    .nav-container {
        padding: 0 16px;
    }

    .logo {
        height: 28px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero 手機版 */
    .hero {
        min-height: 400px;
        max-height: 600px;
        height: auto;
        align-items: center;
    }

    .hero-bg {
        object-position: left center;
        background-attachment: scroll !important;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        padding: calc(100px) 20px 40px;
        text-align: center;
    }

    .hero-title {
    }

    .hero-description {
    }

    .hero-brand {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        margin-top: 40px;
    }

    .hero-brand-icon {
        width: 100px;
    }

    /* 簡介區塊 手機版 */
    .intro-section {
        padding: var(--spacing-3xl) var(--container-padding);
        max-width: 600px;
        margin: 0 auto;
    }

    /* 服務區塊 手機版 */
    .feature-row {
        max-width: 100%;
    }

    .feature-description {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-subtitle {
        max-width: 600px;
        margin: 0 auto var(--spacing-xl);
    }

    .feature-image img {
        max-width: 100%;
    }

    .case-grid {
        /* 平板改為 2 欄 - 使用響應式網格 */
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .case-item {
        width: 100%;
        height: auto;
        aspect-ratio: 800 / 540;
    }

    /* 聯絡區塊 手機版 */
    .contact-title {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   響應式設計 - 481px（手機版 - 滑動輪播）
   ============================================ */
/* ============================================
   響應式設計 - 600px（手機版 - 滑動輪播）
   ============================================ */
@media (max-width: 600px) {
    :root {
        --scale: 0.55;
        --nav-height: 56px;
    }

    .hero {
        min-height: 380px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-title {
    }

    .hero-description {
    }

    .intro-section {
        padding: var(--spacing-2xl) var(--container-padding);
    }

    .clients-section .case-grid {
        /* 手機版 - 水平滑動輪播 - 強制 Flex */
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        /* 覆寫 Grid 屬性以免干擾 */
        grid-template-columns: none;

        gap: 16px;
        padding: 0 0 16px 0;
        /* 底部留空間給 scrollbar（如果顯示） */
        margin: 0 -20px;
        /* 負邊距以抵消容器的 padding */
        padding-left: 20px;
        /* 補回視覺 padding */
        padding-right: 20px;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);

        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .case-grid::-webkit-scrollbar {
        display: none;
    }

    /* 增加權重以確保覆蓋原樣式 (0,2,0) -> (0,3,0) */
    .clients-section .case-grid .case-item {
        /* 顯示整張完整卡片 */
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 800 / 540;
        scroll-snap-align: center;
        border-radius: 8px;
        overflow: hidden;
        margin: 0;
    }

    .clients-section .case-grid .case-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 手機版才顯示的滑動指示點 */
    .case-slider-dots {
        display: flex;
    }

    .contact-container {
        padding: 0 var(--spacing-sm);
    }

    .submit-btn {
        width: 100%;
        padding: 14px 32px;
    }

    .feature-row {
        max-width: 100%;
    }
}

/* ============================================
   動畫定義
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 滾動時顯示的動畫 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   輔助類別
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 高對比度模式 */
@media (prefers-contrast: high) {
    .section-badge {
        border-width: 2px;
    }

    .cta-button {
        border-width: 3px;
    }
}

/* 減少動態偏好 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   響應式設計 - 375px（小尺寸手機）
   ============================================ */
@media (max-width: 375px) {
    .hero-title {
    }

    .hero-description {
    }
}

/* ============================================
   主打新功能：智慧 EyEBooM 看板
   ============================================ */
.eyeboom-feature {
    max-width: var(--features-max-width);
    margin: 0 auto;
    padding: calc(28px * var(--scale)) var(--container-padding) calc(20px * var(--scale));
}

.eyeboom-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: calc(56px * var(--scale));
    align-items: center;
    padding: calc(38px * var(--scale)) calc(60px * var(--scale));
    border-radius: calc(24px * var(--scale));
    border: 1px solid rgba(31, 200, 171, .28);
    background:
        radial-gradient(120% 150% at 100% 0%, rgba(94, 141, 254, .12), transparent 55%),
        radial-gradient(120% 150% at 0% 100%, rgba(31, 200, 171, .10), transparent 55%),
        linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
    overflow: hidden;
}

.eyeboom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 200, 171, .7), transparent);
}

.eyeboom-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyeboom-tag {
    display: inline-flex;
    align-items: center;
    gap: calc(9px * var(--scale));
    padding: calc(6px * var(--scale)) calc(15px * var(--scale));
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 200, 171, .18), rgba(94, 141, 254, .18));
    border: 1px solid rgba(31, 200, 171, .5);
    font-size: var(--font-xs);
    font-weight: 700;
    letter-spacing: .08em;
    color: #cdeee7;
    font-family: Arial, sans-serif;
}

.eyeboom-tag .dot {
    width: calc(7px * var(--scale));
    height: calc(7px * var(--scale));
    border-radius: 50%;
    background: var(--primary-teal);
    box-shadow: 0 0 0 calc(4px * var(--scale)) rgba(31, 200, 171, .22);
    animation: ebPulse 1.8s ease-in-out infinite;
}

@keyframes ebPulse {
    0%, 100% { box-shadow: 0 0 0 calc(3px * var(--scale)) rgba(31, 200, 171, .30); }
    50% { box-shadow: 0 0 0 calc(7px * var(--scale)) rgba(31, 200, 171, 0); }
}

.eyeboom-title {
    font-size: var(--font-4xl);
    font-weight: 700;
    line-height: 1.3;
    margin: calc(18px * var(--scale)) 0 calc(14px * var(--scale));
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyeboom-desc {
    font-size: var(--font-lg);
    line-height: 1.7;
    color: var(--text-gray);
    max-width: calc(560px * var(--scale));
}

.eyeboom-points {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: calc(20px * var(--scale));
    margin: calc(24px * var(--scale)) 0 calc(30px * var(--scale));
}

.eyeboom-points li {
    display: flex;
    align-items: center;
    gap: calc(10px * var(--scale));
    font-size: var(--font-sm);
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.eyeboom-points .eyeboom-ico {
    width: calc(32px * var(--scale));
    height: calc(32px * var(--scale));
    border-radius: 50%;
}

.eyeboom-points .eyeboom-ico::before {
    width: calc(7px * var(--scale));
    height: calc(12px * var(--scale));
    border-width: 0 calc(2.2px * var(--scale)) calc(2.2px * var(--scale)) 0;
}

.eyeboom-ico {
    width: calc(36px * var(--scale));
    height: calc(36px * var(--scale));
    border-radius: 50%;
    flex-shrink: 0;
    background: transparent;
    border: calc(1.5px * var(--scale)) solid var(--primary-teal);
    display: grid;
    place-items: center;
}

/* 用 border 轉 45 度做出打勾符號 */
.eyeboom-ico::before {
    content: '';
    width: calc(8px * var(--scale));
    height: calc(14px * var(--scale));
    border: solid var(--primary-teal);
    border-width: 0 calc(2.5px * var(--scale)) calc(2.5px * var(--scale)) 0;
    transform: translateY(calc(-1.5px * var(--scale))) rotate(45deg);
}

.eyeboom-cta {
    display: inline-flex;
    align-items: center;
    gap: calc(10px * var(--scale));
    height: var(--cta-height);
    padding: 0 calc(30px * var(--scale));
    border-radius: var(--radius-sm);
    font-size: var(--font-md);
    font-weight: 500;
    color: #fff;
    background: var(--primary-gradient);
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.eyeboom-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* 海報預覽 - 疊放排列 */
.eyeboom-gallery {
    position: relative;
    height: calc(440px * var(--scale));
}

.eyeboom-poster {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(212px * var(--scale));
    aspect-ratio: 9 / 16;
    border-radius: calc(14px * var(--scale));
    overflow: hidden;
    box-shadow: 0 calc(20px * var(--scale)) calc(45px * var(--scale)) rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: left var(--transition-normal), transform var(--transition-normal), opacity var(--transition-normal);
}

.eyeboom-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eyeboom-poster.p1 { left: -8%; transform: translateY(-50%) rotate(-2deg) scale(1.12); z-index: 3; }
.eyeboom-poster.p2 { left: 22%; transform: translateY(-50%) scale(.96) rotate(1.5deg); z-index: 2; opacity: .97; }
.eyeboom-poster.p3 { left: 51%; transform: translateY(-50%) scale(.9) rotate(3deg); z-index: 1; opacity: .9; }

/* 圓形箭頭按鈕 */
.eyeboom-nav {
    position: absolute;
    top: 50%;
    right: calc(6px * var(--scale));
    transform: translateY(-50%);
    width: calc(58px * var(--scale));
    height: calc(58px * var(--scale));
    border-radius: 50%;
    background: var(--primary-gradient);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: round(nearest, calc(26px * var(--scale)), 2px);
    line-height: 1;
    box-shadow: 0 calc(8px * var(--scale)) calc(22px * var(--scale)) rgba(31, 200, 171, .4);
    z-index: 6;
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.eyeboom-nav:hover {
    filter: brightness(1.08);
    transform: translateY(-50%) translateX(3px);
}

@keyframes ebFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 calc(-12px * var(--scale)); }
}

/* 確保這些微調寫在最下方，才能覆蓋掉全域設定 */
@media (max-width: 1200px) {
    /* 只有 1200px：讓首頁的三個卡片整體含按鈕往右移一點點 */
    .eyeboom-gallery {
        left: 15px;
    }
}

@media (max-width: 1080px) {
    /* 1080px 也與 1200px 相同，保留卡片往右移 15px 的設定 */
    .eyeboom-gallery {
        left: 15px;
    }
    
    /* 只有 1080px：藍色導航按鈕稍微再往右移一點點 */
    .eyeboom-nav {
        right: -15px;
    }
}

/* 主打區 響應式 */
@media (max-width: 960px) {
    .eyeboom-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
        text-align: center;
    }

    .eyeboom-text { align-items: center; }
    .eyeboom-points { align-items: flex-start; }
    .eyeboom-desc { max-width: none; }

    .eyeboom-gallery {
        height: 380px;
        order: -1;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .eyeboom-poster { width: 170px; }
    
    .eyeboom-poster.p1 { left: 0; transform: translateY(-50%) rotate(-2deg) scale(1.05); }
    .eyeboom-poster.p2 { left: 50%; transform: translate(-50%, -50%) rotate(1.5deg) scale(0.96); }
    .eyeboom-poster.p3 { left: auto; right: 0; transform: translateY(-50%) rotate(3deg) scale(0.9); }
    
    .eyeboom-nav {
        right: -10px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .eyeboom-feature { padding-top: 24px; }
    .eyeboom-card { padding: 30px 20px; }
    
    .eyeboom-points {
        flex-wrap: wrap;
        justify-content: center;
    }
    .eyeboom-gallery { 
        height: 400px; 
        max-width: 100%;
        margin: 0 auto;
    }
    .eyeboom-poster { width: 210px; }
    
    .eyeboom-poster.p1 { left: 50%; transform: translate(-50%, -50%); z-index: 3; box-shadow: 0 15px 35px rgba(0,0,0,0.6); }
    .eyeboom-poster.p2 { left: 50%; transform: translate(-25%, -50%) rotate(4deg) scale(0.85); z-index: 2; opacity: 0.7; }
    .eyeboom-poster.p3 { left: 50%; transform: translate(-75%, -50%) rotate(-3deg) scale(0.75); z-index: 1; opacity: 0.5; }
    
    .eyeboom-nav { 
        right: 70px; 
        width: 44px; 
        height: 44px; 
    }
}


/* ===== EyEBooM 迷你海報（純 CSS，cqw 等比縮放） ===== */
.eyeboom-poster { container-type: size; background: #0b1412; }
.pmini { position: absolute; inset: 0; overflow: hidden; font-family: 'Noto Sans TC', sans-serif; }
.pmini .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* 飲品海報 */
.pmini--kiwi { background: #0f1a12; }
.pmini--kiwi .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,8,.35), transparent 26%, rgba(6,12,8,.92)); }
.eb-eyebrow { position: absolute; top: 7cqw; left: 7cqw; font: 700 3.5cqw/1 Arial, sans-serif; letter-spacing: .14em; color: #d3ecc6; z-index: 2; }
.eb-kiwi-ttl { position: absolute; left: 7cqw; bottom: 13cqw; display: flex; flex-direction: column; color: #f4ead8; font-family: Georgia, 'Times New Roman', serif; font-style: italic; line-height: .84; z-index: 2; }
.eb-kiwi-ttl i { font-size: 18cqw; font-weight: 400; }
.eb-kiwi-sub { position: absolute; left: 7cqw; bottom: 6.5cqw; font: 500 3.3cqw/1.2 'Noto Sans TC', sans-serif; letter-spacing: .04em; color: rgba(255,255,255,.72); z-index: 2; }

/* 歡迎 / AI 主播 */
.pmini--welcome { background: radial-gradient(120% 92% at 50% 0%, #157068, #0a1c2e 72%); }
.eb-w-hi { position: absolute; top: 31cqw; right: 11cqw; z-index: 4; background: linear-gradient(90deg, #ff5fa2, #a06bff); color: #fff; font: 700 3.4cqw/1 'Noto Sans TC', sans-serif; padding: 1.6cqw 3cqw; border-radius: 99px; transform: rotate(-8deg); }
.eb-w-photo { position: absolute; top: 12cqw; left: 50%; transform: translateX(-50%); width: 60cqw; height: 60cqw; border-radius: 50%; overflow: hidden; border: 1.4cqw solid rgba(255,255,255,.88); box-shadow: 0 4cqw 10cqw rgba(0,0,0,.45); }
.eb-w-photo img { width: 100%; height: 100%; object-fit: cover; }
.eb-w-ttl { position: absolute; top: 78cqw; left: 0; right: 0; text-align: center; color: #fff; font: 800 9.5cqw/1 Arial, sans-serif; letter-spacing: .02em; }
.eb-w-ttl b { display: block; margin-top: 1cqw; font: italic 800 8cqw/1 Georgia, serif; background: linear-gradient(90deg, #7fe9d8, #a9b8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eb-w-sub { position: absolute; bottom: 7cqw; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font: 500 3.4cqw/1.2 'Noto Sans TC', sans-serif; }

/* 鞋款海報 */
.pmini--shoe { background: linear-gradient(150deg, #dcf25c, #a9de46); }
.eb-s-eyebrow { position: absolute; top: 7cqw; left: 7cqw; font: 700 3.4cqw/1 Arial, sans-serif; letter-spacing: .16em; color: #1b2a08; }
.eb-s-ttl { position: absolute; top: 13cqw; left: 7cqw; color: #141a07; font: 800 13cqw/.9 Arial, sans-serif; letter-spacing: -.01em; }
.eb-s-ttl i { font-family: Georgia, serif; font-style: italic; font-weight: 700; }
.eb-s-img { position: absolute; bottom: 7cqw; left: -8cqw; width: 116%; max-width: none; transform: rotate(-7deg); filter: drop-shadow(0 5cqw 7cqw rgba(0,0,0,.22)); }

/* badge 不斷行 */
.eyeboom-tag { white-space: nowrap; }
.eyeboom-title { white-space: nowrap; }
@media (max-width: 600px) { .eyeboom-title { white-space: normal; } }

.eb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 480px) {
    .eyeboom-nav {
        right: 0;
        width: 36px;
        height: 36px;
    }
}

/* 統一 .cta-button 與 .eyeboom-cta 在窄螢幕下的高度 */
@media (max-width: 1200px) {
    .cta-button, .eyeboom-cta {
        height: 40px !important;
    }
}

@media (max-width: 600px) {
    .cta-button, .eyeboom-cta {
        height: 38px !important;
    }
}
