﻿/* ============================================================
   VACUUM FORMING FACTORY — Design System v2
   Color: Navy base + warm orange accent
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Primary palette (navy) */
  --navy-900: #070d1a;
  --navy-800: #0a1628;
  --navy-700: #0f2038;
  --navy-600: #152d4a;
  --navy-500: #1a3a5c;
  --navy-400: #2a5580;
  --navy-300: #3d7ab8;
  --navy-200: #6ba3d6;
  --navy-100: #a8cde8;
  --navy-50: #e0edf7;

  /* Accent (warm orange) */
  --accent-500: #ff6b35;
  --accent-400: #ff8c42;
  --accent-300: #ffaa60;
  --accent-600: #e85a25;
  --accent-glow: rgba(255, 107, 53, 0.25);

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;

  /* Semantic tokens */
  --bg-main: var(--gray-50);
  --bg-card: var(--white);
  --bg-card-hover: #fafcff;
  --text-primary: var(--navy-800);
  --text-secondary: var(--gray-500);
  --text-on-dark: #e8f0f8;
  --text-on-dark-muted: rgba(232, 240, 248, 0.7);
  --border-light: rgba(15, 32, 56, 0.08);
  --border-card: rgba(15, 32, 56, 0.1);

  /* Radius */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.16);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-main);
  font-family: 'IBM Plex Sans', 'Noto Sans SC', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(26, 58, 92, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

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

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

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

/* --- Layout Shell --- */
.site-shell {
  min-height: 100vh;
}

.section {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  padding: 100px 0;
}

.section-header {
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}

/* Decoration line under section titles */
.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-500);
  padding: 5px 16px;
  background: rgba(255, 107, 53, 0.06);
  border-radius: 20px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy-800);
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 680px;
  margin-inline: auto;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.trust {
  position: relative;
  padding-top: 116px;
  padding-bottom: 116px;
}

.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}

.trust .section-header h2 {
  font-size: clamp(34px, 4.6vw, 54px);
}

.trust .section-subtitle {
  max-width: 780px;
  font-size: 18px;
  color: var(--navy-600);
}

.range,
.process,
.cases {
  padding-top: 84px;
  padding-bottom: 84px;
}

.range .section-header h2,
.process .section-header h2,
.cases .section-header h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.range .section-subtitle,
.process .section-subtitle,
.cases .section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   TOPBAR — Glassmorphism navigation   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: background-color, box-shadow;
}

.topbar.scrolled {
  background-color: rgba(248, 250, 252, 0.98);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  color: var(--text-on-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
  border: 1px solid transparent;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--navy-700);
  white-space: nowrap;
  transition: color 0.35s ease;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topnav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.topnav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  border-radius: 1px;
  background: var(--accent-500);
  transition: transform var(--transition-fast);
}

.topnav a:hover {
  color: var(--navy-700);
  background: rgba(15, 32, 56, 0.05);
}

.topnav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.topnav a.active {
  color: var(--accent-500);
  font-weight: 600;
}

.topnav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.topnav a.is-active {
  color: var(--accent-500);
  background: rgba(255, 107, 53, 0.08);
}

.top-email {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.top-email:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-lang {
  position: relative;
}

.top-lang .floating-lang-launcher {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.top-lang .floating-lang-text {
  display: none;
}

.top-lang .floating-lang-current {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-lang .floating-lang-panel {
  right: 0;
  top: calc(100% + 8px);
  bottom: auto;
}

/* Menu toggle button */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(15, 32, 56, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  position: relative;
  transition: background-color 0.35s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  left: 0;
  transition: transform var(--transition-normal), background-color 0.35s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(6px);
}

.menu-toggle.is-active span {
  background: transparent;
}

.menu-toggle.is-active span::before {
  transform: rotate(45deg);
}

.menu-toggle.is-active span::after {
  transform: rotate(-45deg);
}

.topbar:not(.scrolled) .brand-name {
  color: #ffffff;
}

.topbar:not(.scrolled) .brand-mark {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  box-shadow: none;
}

.topbar:not(.scrolled) .topnav a {
  color: rgba(255, 255, 255, 0.75);
}

.topbar:not(.scrolled) .topnav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.topbar:not(.scrolled) .topnav a.is-active {
  color: var(--accent-400);
  background: rgba(255, 107, 53, 0.18);
}

.topbar:not(.scrolled) .top-email {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  box-shadow: none;
}

.topbar:not(.scrolled) .top-email:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.topbar:not(.scrolled) .top-lang .floating-lang-launcher {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.topbar:not(.scrolled) .top-lang .floating-lang-launcher:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.topbar:not(.scrolled) .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar:not(.scrolled) .menu-toggle span,
.topbar:not(.scrolled) .menu-toggle span::before,
.topbar:not(.scrolled) .menu-toggle span::after {
  background: #ffffff;
}

/* Mobile slide-in menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 26, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.is-open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  z-index: 91;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(10, 22, 40, 0.15);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-700);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-nav a:hover {
  background: rgba(15, 32, 56, 0.05);
}

.mobile-nav a.is-active {
  color: var(--accent-500);
  background: rgba(255, 107, 53, 0.08);
}

/* ============================================================
   HERO — Navy surface background   ============================================================ */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}

.hero-surface {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 80vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 6vw, 80px) clamp(24px, 4vw, 64px);
  background:
    linear-gradient(160deg, rgba(6, 17, 34, 0.86) 0%, rgba(11, 29, 52, 0.82) 44%, rgba(20, 58, 97, 0.72) 100%),
    url("CNC-Machining-Center-2.jpg") center 36% / cover no-repeat;
}

/* Decorative grid */
.hero-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 60px);
  pointer-events: none;
}

/* Decorative glow */
.hero-grid-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 75% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 25% 80%, rgba(61, 122, 184, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 50% 50%, rgba(107, 163, 214, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hero-title {
  color: var(--white);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 20px;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.hero-title .accent {
  color: var(--accent-400);
}

.hero-sub {
  color: var(--text-on-dark-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 36px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.45);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RANGE / SIZE BAND
   ============================================================ */
.range-toolbar {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.band-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 10px;
  flex: 1 1 620px;
}

.band-button {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  transition: all var(--transition-fast);
}

.band-button:hover {
  border-color: var(--navy-300);
  background: var(--navy-50);
}

.band-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border-color: var(--navy-700);
  box-shadow: 0 4px 14px rgba(15, 32, 56, 0.2);
}

.unit-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
}

.unit-button {
  min-height: 30px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.unit-button.is-active {
  color: var(--white);
  background: var(--navy-700);
}

.range-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.range-image-wrap {
  min-height: 400px;
  background: linear-gradient(135deg, var(--navy-50) 0%, var(--gray-100) 100%);
  overflow: hidden;
}

.range-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.range-card:hover .range-image {
  transform: scale(1.03);
}

.range-detail {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.range-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(15, 32, 56, 0.06);
  color: var(--navy-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.range-detail h3 {
  margin-top: 16px;
  font-size: 26px;
  color: var(--navy-800);
}

.range-size {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.range-size span {
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.range-size strong {
  font-size: 28px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy-700);
}

.range-spec {
  margin-top: 20px;
}

.range-spec h4 {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.range-spec p {
  color: var(--navy-600);
  line-height: 1.6;
}

.range-cta {
  margin-top: 24px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.range-cta::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.range-cta:hover::after {
  transform: translateX(4px);
}

/* Applications area */
.range-applications {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.range-samples {
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.range-samples-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.range-samples-copy {
  display: grid;
  gap: 8px;
}

.range-samples-head h3 {
  font-size: 22px;
  color: var(--navy-800);
}

.range-samples-head p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 720px;
}

.range-samples-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.18);
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.range-sample-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.range-sample-grid[data-count="1"] {
  grid-template-columns: minmax(0, 1fr);
}

.range-sample-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 32, 56, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(15, 32, 56, 0.06);
  overflow: hidden;
  grid-column: span 6;
}

.range-sample-card.is-featured {
  border-color: rgba(255, 107, 53, 0.16);
  box-shadow: 0 16px 36px rgba(15, 32, 56, 0.08);
}

.range-sample-grid[data-count="1"] .range-sample-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 920px);
}

.range-sample-grid[data-count="2"] .range-sample-card.is-featured {
  order: -1;
  grid-column: span 6;
}

.range-sample-grid[data-count="2"] .range-sample-card:not(.is-featured) {
  grid-column: span 6;
}

.range-sample-grid[data-count="3"] .range-sample-card.is-featured {
  order: -1;
  grid-column: 1 / -1;
}

.range-sample-grid[data-count="3"] .range-sample-card:not(.is-featured) {
  grid-column: span 6;
}

.range-sample-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: var(--navy-50);
}

.range-sample-card.is-featured .range-sample-image-wrap {
  aspect-ratio: 21 / 9;
}

.range-sample-grid[data-count="2"] .range-sample-card.is-featured .range-sample-image-wrap {
  aspect-ratio: 16 / 9.2;
}

.range-sample-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.range-sample-card:hover .range-sample-image {
  transform: scale(1.03);
}

.range-sample-index {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-full);
  background: rgba(15, 32, 56, 0.68);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.range-sample-copy {
  display: grid;
  gap: 6px;
}

.range-sample-copy h4 {
  font-size: 16px;
  color: var(--navy-800);
}

.range-sample-card.is-featured .range-sample-copy h4 {
  font-size: 18px;
}

.range-sample-copy p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

/* Application card */
.range-app-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.range-app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Vacuum mold card */
.range-app-card--vacuum {
  background: linear-gradient(135deg, #f0f7ff 0%, #e1eeff 100%);
  border-color: rgba(16, 77, 153, 0.15);
}

/* Carbon fiber mold card */
.range-app-card--carbon {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-color: rgba(255, 140, 66, 0.2);
}

.range-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.range-app-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

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

.range-app-card--vacuum .range-app-header h4 {
  margin: 0;
  color: #0d47a1;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.range-app-card--carbon .range-app-header h4 {
  margin: 0;
  color: #ff8c42;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.range-app-card--vacuum .range-app-icon {
  color: #1565c0;
}

.range-app-card--carbon .range-app-icon {
  color: #ff8c42;
}

.range-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.range-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.range-tag--vacuum {
  background: rgba(255, 255, 255, 0.8);
  color: #104d99;
  border: 1px solid rgba(16, 77, 153, 0.2);
  backdrop-filter: blur(4px);
}

.range-tag--carbon {
  background: rgba(255, 140, 66, 0.12);
  color: #ffaa60;
  border: 1px solid rgba(255, 140, 66, 0.25);
}

.range-app-card--carbon .range-app-tags .range-tag--carbon:hover {
  background: rgba(255, 140, 66, 0.2);
  border-color: #ff8c42;
}

/* ============================================================
   PROCESS — Timeline   ============================================================ */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-item {
  min-height: 100%;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7fbff 100%);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.process-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.24);
}

.process-icon-wrap {
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--accent-400);
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.process-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: border-color var(--transition-normal), opacity var(--transition-normal);
}

.process-item:hover .process-icon-wrap::before {
  border-color: rgba(255, 107, 53, 0.5);
}

.process-item:hover .process-icon-wrap {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.34);
}

.process-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.process-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-500);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 53, 0.12);
  text-transform: uppercase;
}

.process-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy-800);
  transition: color var(--transition-fast);
}

.process-item:hover h3 {
  color: var(--accent-600);
}

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

/* ============================================================
   TRUST / WHY US 鈥?鍥炬爣鍗＄墖
   ============================================================ */
/* ============================================================
   CASES / EXPERIENCE
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--navy-300);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  display: grid;
  gap: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.case-card.case-accent-energy {
  border-left-color: #1f9d7a;
}

.case-card.case-accent-automotive {
  border-left-color: #ff8c42;
}

.case-card.case-accent-medical {
  border-left-color: #3d7ab8;
}

.case-card.case-accent-aerospace {
  border-left-color: #c95a3d;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 32, 56, 0.06);
  color: var(--navy-600);
}

.case-icon svg {
  width: 24px;
  height: 24px;
}

.case-card h3 {
  font-size: 18px;
  color: var(--navy-800);
}

.case-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.case-metric {
  margin-top: 4px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.25);
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   TRUST / WHY US
   ============================================================ */
.trust-cert-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.trust-cert-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0;
}

.trust-cert-list {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.trust-cert-item {
  flex: 0 0 auto;
  min-width: auto;
  padding: 0 18px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: white;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  filter: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-cert-item:hover {
  border-color: var(--accent-500);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.12);
}

.trust-design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 53, 0.24);
  background: linear-gradient(135deg, #fef8f4 0%, #fff 45%, #f6fbff 100%);
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.trust-design-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.trust-design-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.trust-design-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-design-text h3 {
  font-size: 24px;
  color: var(--navy-800);
  margin-bottom: 12px;
}

.trust-design-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.trust-design-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-design-list li {
  padding-left: 26px;
  position: relative;
  color: var(--navy-700);
  font-size: 14px;
  line-height: 1.5;
}

.trust-design-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.14);
  color: var(--accent-600);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.trust-equipment-strip {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 32, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
}

.trust-equipment-title {
  margin: 0 0 18px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-equipment-item {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 32, 56, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.trust-equipment-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-equipment-value {
  margin: 0;
  color: var(--navy-700);
  font-size: 14px;
  line-height: 1.6;
}

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

.trust-card {
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.2);
}

.trust-icon {
  width: 62px;
  height: 62px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 32, 56, 0.06) 100%);
  color: var(--accent-500);
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.trust-card:hover .trust-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(15, 32, 56, 0.08) 100%);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  transition: transform var(--transition-normal);
}

.trust-card:hover .trust-icon svg {
  transform: scale(1.06);
}

.trust-card h3 {
  font-size: 20px;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.trust-card-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.trust-card-metric {
  margin-top: 12px;
  width: fit-content;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(255, 107, 53, 0.06);
  color: var(--accent-600);
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-panel {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border-card);
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.contact-panel .section-kicker {
  color: var(--accent-400);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel .section-subtitle {
  color: var(--text-on-dark-muted);
}

.contact-primary {
  margin-top: 24px;
}

.contact-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-item {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  text-align: left;
  transition: background var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-label {
  color: var(--text-on-dark-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.contact-value {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.contact-value:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-400);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 32px 20px 100px;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-note {
  margin: 0;
}

.footer-record-link {
  color: var(--accent-500);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-record-link:hover {
  color: var(--accent-600);
  text-decoration: underline;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.floating-lang {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
}

.floating-lang-launcher {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 22, 40, 0.92);
  color: var(--text-on-dark);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-lang-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.5);
}

.floating-lang-icon {
  display: inline-flex;
}

.floating-lang-icon svg {
  width: 17px;
  height: 17px;
}

.floating-lang-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.floating-lang-current {
  font-size: 13px;
  font-weight: 700;
}

.floating-lang-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  min-width: 240px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  display: none;
}

.floating-lang-panel.is-open {
  display: block;
}

.lang-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
  color: var(--navy-700);
  transition: background var(--transition-fast);
}

.lang-option:hover {
  background: rgba(15, 32, 56, 0.05);
}

.lang-option.is-active {
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent-600);
  font-weight: 700;
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-native {
  font-size: 14px;
}

.lang-code {
  color: var(--gray-400);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .range-card {
    grid-template-columns: 1fr;
  }

  .range-image-wrap {
    min-height: 300px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

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

  .trust-equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topnav {
    display: none;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 8px;
  }

  .top-email {
    padding-inline: 14px;
    font-size: 12px;
  }

  .top-lang .floating-lang-launcher {
    min-height: 40px;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .topbar {
    padding-inline: 18px;
  }

  .section {
    width: min(1200px, 100% - 32px);
    padding: 72px 0;
  }

  .hero-surface {
    min-height: clamp(480px, 75vh, 680px);
  }

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

  .contact-panel {
    padding: 36px 24px;
  }

  .trust-design-showcase {
    grid-template-columns: 1fr;
  }

  .trust-equipment-strip {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(26px, 7.5vw, 40px);
  }

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

  .hero-proof-list {
    gap: 10px;
  }

  .hero-proof-item {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .cases-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .range-sample-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .range-detail {
    padding: 24px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 420px) {
  .section {
    width: min(1200px, 100% - 24px);
  }

  .floating-lang {
    right: 12px;
    bottom: 12px;
  }

  .floating-lang-launcher {
    padding: 10px 12px;
  }

  .floating-lang-text {
    display: none;
  }

  .floating-lang-panel {
    min-width: 210px;
    right: -2px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   COOKIE 鍚屾剰妯箙
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 140, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  color: rgba(232, 240, 248, 0.85);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cookie-btn-accept:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(232, 240, 248, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
