/* ═══════════════════════════════════════════════════════════════
   SNOWL — Marine White Clean Design (Original Style)
   Design System: oklch · 8px grid · cubic-bezier
   ═══════════════════════════════════════════════════════════════ */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --c-primary:   oklch(0.22 0.06 250);
  --c-primary-h: oklch(0.32 0.06 250);
  --c-accent:   oklch(0.70 0.16 210);
  --c-accent-d: oklch(0.60 0.18 210);
  --c-accent-bg:oklch(0.96 0.02 210);

  --c-white:    oklch(1 0 0);
  --c-bg:       oklch(0.99 0 0);
  --c-surface:  oklch(0.985 0.005 250);
  --c-sand:     oklch(0.96 0.01 80);
  --c-border:   oklch(0.89 0.01 250);
  --c-muted:    oklch(0.55 0.01 250);
  --c-body:     oklch(0.33 0.01 250);
  --c-footer:   oklch(0.15 0.02 250);

  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --sp-12: 96px; --sp-16: 128px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs:   0.75rem;  --text-sm:   0.875rem;
  --text-base: 1rem;      --text-lg:   1.125rem;
  --text-xl:   1.25rem;  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem; --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --r-sm:   8px; --r-md:   12px; --r-lg:   16px;
  --r-xl:   24px; --r-full: 9999px;

  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.06);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.08);
  --shadow-lg: 0 8px 32px oklch(0 0 0 / 0.10);

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-sm:  150ms; --dur-md: 250ms; --dur-lg: 400ms;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-surface); }
::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: var(--r-full); }
::selection { background: oklch(0.70 0.16 210 / 0.2); }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-3); position: relative; z-index: 1; }
.section    { padding: var(--sp-6) 0; }
.section--white { background: var(--c-white); }
.section--sand  { background: var(--c-sand); }

/* ── Page Background ─────────────────────────────────────── */
.page-bg {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, oklch(0.70 0.16 210 / 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, oklch(0.22 0.06 250 / 0.04) 0%, transparent 50%),
    var(--c-bg);
  pointer-events: none; z-index: 0;
}

/* ── Loader ──────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; background: var(--c-white); z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--sp-2);
  transition: opacity var(--dur-md) var(--ease);
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner { width: 40px; height: 40px; border: 2px solid var(--c-border); border-top-color: var(--c-accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { color: var(--c-primary); font-size: var(--text-sm); font-weight: 800; letter-spacing: 4px; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--c-primary);  /* Deep navy like screenshot */
  border-bottom: 1px solid oklch(0.15 0.02 250);
  transition: box-shadow var(--dur-md) var(--ease);
  height: 64px;
}
.navbar.scrolled { box-shadow: 0 4px 20px oklch(0 0 0 / 0.25); }

.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-3); display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: var(--sp-1); text-decoration: none; }
.nav-logo-text { font-size: var(--text-xl); font-weight: 900; color: var(--c-white); letter-spacing: 2px; }
.nav-logo-dot { width: 7px; height: 7px; background: var(--c-accent); border-radius: 50%; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: oklch(0.80 0.01 250);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: color var(--dur-sm) var(--ease), background var(--dur-sm) var(--ease);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--c-white); background: oklch(0.35 0.05 250); }
.nav-links a.active { color: var(--c-white); background: oklch(0.30 0.06 250); }

.has-dropdown { position: relative; }
.has-dropdown::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 20px; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.dropdown-arrow { font-size: 10px; opacity: 0.7; transition: transform var(--dur-sm) var(--ease); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% - 2px); left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); min-width: 190px; padding: var(--sp-1);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-sm) var(--ease), transform var(--dur-sm) var(--ease);
  z-index: 200; display: flex; flex-direction: column; gap: 2px;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; }
.dropdown-menu a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--c-body);
  display: block;
  white-space: nowrap;
  transition: background var(--dur-sm) var(--ease), color var(--dur-sm) var(--ease);
}
.dropdown-menu a:hover { background: var(--c-accent-bg); color: var(--c-primary); }

.lang-switcher { display: flex; align-items: center; gap: 3px; }
.lang-btn {
  background: none;
  border: 1px solid oklch(0.50 0.02 250);
  color: oklch(0.75 0.01 250);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur-sm) var(--ease), color var(--dur-sm) var(--ease), border-color var(--dur-sm) var(--ease);
  letter-spacing: 0.3px;
}
.lang-btn:hover { background: oklch(0.35 0.05 250); color: var(--c-white); border-color: oklch(0.35 0.05 250); }
.lang-btn.active { background: oklch(0.30 0.06 250); color: var(--c-white); border-color: oklch(0.30 0.06 250); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--sp-1); }
.menu-toggle span { width: 22px; height: 2px; background: var(--c-white); border-radius: 2px; }

/* ── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--c-primary);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-md) var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: oklch(0.85 0.01 250);
  text-decoration: none;
  font-size: var(--text-2xl);
  font-weight: 800;
  padding: var(--sp-1) var(--sp-3);
  transition: color var(--dur-sm) var(--ease);
}
.mobile-menu a:hover { color: var(--c-white); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: auto; display: flex; align-items: center;
  padding: 80px 0 48px;
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-surface) 100%);
  position: relative; overflow: hidden;
}
.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: radial-gradient(ellipse at right center, oklch(0.70 0.16 210 / 0.07) 0%, transparent 65%); pointer-events: none; }
.hero-content { max-width: 680px; }

.hero-badge { display: inline-flex; align-items: center; gap: var(--sp-1); background: var(--c-accent-bg); border: 1px solid oklch(0.70 0.16 210 / 0.2); padding: 6px var(--sp-2); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-3); animation: fadeUp var(--dur-lg) var(--ease) both; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl)); font-weight: 900; color: var(--c-primary); line-height: 1.1; margin-bottom: var(--sp-3); animation: fadeUp var(--dur-lg) var(--ease) 0.08s both; }
.hero h1 span { color: var(--c-accent-d); }
.hero-desc { font-size: var(--text-lg); color: var(--c-muted); max-width: 65ch; margin-bottom: var(--sp-5); line-height: 1.8; animation: fadeUp var(--dur-lg) var(--ease) 0.16s both; }
.hero-buttons { display: flex; gap: var(--sp-2); flex-wrap: wrap; animation: fadeUp var(--dur-lg) var(--ease) 0.24s both; }

.hero-stats { display: flex; gap: var(--sp-8); margin-top: var(--sp-10); padding-top: var(--sp-6); border-top: 1px solid var(--c-border); animation: fadeUp var(--dur-lg) var(--ease) 0.32s both; }
.stat-number { font-size: var(--text-4xl); font-weight: 900; color: var(--c-primary); line-height: 1; }
.stat-number span { color: var(--c-accent); }
.stat-label { font-size: var(--text-xs); color: var(--c-muted); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px var(--sp-3); border-radius: var(--r-md); font-size: var(--text-sm); font-weight: 700; text-decoration: none; cursor: pointer; border: none; font-family: var(--font); transition: background var(--dur-sm) var(--ease), color var(--dur-sm) var(--ease), transform var(--dur-sm) var(--ease), box-shadow var(--dur-sm) var(--ease); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--c-primary); color: var(--c-white); box-shadow: 0 2px 12px oklch(0.22 0.06 250 / 0.20); }
.btn-primary:hover { background: var(--c-primary-h); transform: translateY(-2px); box-shadow: 0 4px 20px oklch(0.22 0.06 250 / 0.25); }
.btn-outline { background: transparent; color: var(--c-primary); border: 1.5px solid var(--c-border); }
.btn-outline:hover { background: var(--c-accent-bg); border-color: var(--c-accent); color: var(--c-primary); }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--sp-5); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--c-accent-bg); border: 1px solid oklch(0.70 0.16 210 / 0.2); padding: 5px var(--sp-2); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 700; color: var(--c-primary); margin-bottom: var(--sp-2); }
.section-title { font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)); font-weight: 900; color: var(--c-primary); margin-bottom: var(--sp-2); }
.section-desc { font-size: var(--text-lg); color: var(--c-muted); max-width: 65ch; margin: 0 auto; line-height: 1.8; }

/* ── Categories Grid ──────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.category-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-4); text-align: center; cursor: pointer; text-decoration: none; display: block; color: var(--c-body); box-shadow: var(--shadow-sm); transition: border-color var(--dur-sm) var(--ease), transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease); }
.category-card:hover { border-color: var(--c-accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-icon { width: 64px; height: 64px; margin: 0 auto var(--sp-3); background: var(--c-accent-bg); border: 1px solid oklch(0.70 0.16 210 / 0.12); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; transition: background var(--dur-sm) var(--ease); }
.category-card:hover .category-icon { background: var(--c-accent); }
.category-card:hover .category-icon svg { color: var(--c-white); }
.category-icon svg { color: var(--c-accent); transition: color var(--dur-sm) var(--ease); }
.category-card h3 { font-size: var(--text-base); font-weight: 800; color: var(--c-primary); margin-bottom: var(--sp-1); }
.category-card p { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; max-width: 28ch; margin: 0 auto; }

/* ── About Grid ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.about-image { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--c-border); aspect-ratio: 4/3; position: relative; box-shadow: var(--shadow-md); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay { position: absolute; bottom: var(--sp-3); left: var(--sp-3); right: var(--sp-3); background: oklch(1 0 0 / 0.92); backdrop-filter: blur(12px); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: var(--sp-2) var(--sp-3); display: flex; justify-content: space-around; }
.about-image-stat { text-align: center; }
.about-image-stat .num { font-size: var(--text-2xl); font-weight: 900; color: var(--c-accent); }
.about-image-stat .label { font-size: var(--text-xs); color: var(--c-muted); font-weight: 600; }
.about-text h2 { font-size: var(--text-3xl); font-weight: 900; color: var(--c-primary); margin-bottom: var(--sp-3); }
.about-text p { color: var(--c-muted); margin-bottom: var(--sp-2); font-size: var(--text-base); line-height: 1.8; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: var(--sp-4); }
.highlight-item { display: flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); transition: background var(--dur-sm) var(--ease), border-color var(--dur-sm) var(--ease); }
.highlight-item:hover { background: var(--c-accent-bg); border-color: oklch(0.70 0.16 210 / 0.2); }
.highlight-item .icon { color: var(--c-accent); flex-shrink: 0; display: flex; }
.highlight-item .label { font-size: var(--text-sm); font-weight: 700; color: var(--c-primary); }

/* ── Advantages Grid ──────────────────────────────────────── */
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.advantage-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-3); text-align: center; box-shadow: var(--shadow-sm); transition: border-color var(--dur-sm) var(--ease), transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease); }
.advantage-card:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.advantage-icon { width: 52px; height: 52px; margin: 0 auto var(--sp-2); background: var(--c-accent-bg); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; }
.advantage-icon svg { color: var(--c-accent); }
.advantage-card h3 { font-size: var(--text-base); font-weight: 800; color: var(--c-primary); margin-bottom: 6px; }
.advantage-card p { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; }

/* ── Products Grid ────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.product-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; display: block; color: var(--c-body); box-shadow: var(--shadow-sm); transition: border-color var(--dur-sm) var(--ease), transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease); }
.product-card:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-lg) var(--ease); }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-tag { position: absolute; top: var(--sp-2); left: var(--sp-2); background: var(--c-accent); color: var(--c-white); font-size: var(--text-xs); font-weight: 800; padding: 3px 12px; border-radius: var(--r-full); letter-spacing: 0.5px; }
.product-info { padding: var(--sp-3); }
.product-info h3 { font-size: var(--text-base); font-weight: 800; color: var(--c-primary); margin-bottom: 4px; }
.product-info p { font-size: var(--text-sm); color: var(--c-muted); margin-bottom: var(--sp-2); line-height: 1.6; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.product-tag-item { font-size: var(--text-xs); padding: 2px 10px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-full); color: var(--c-muted); font-weight: 600; }

/* ── Process Grid ────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); position: relative; }
.process-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-d)); opacity: 0.2; }
.process-step { text-align: center; position: relative; }
.step-number { width: 56px; height: 56px; margin: 0 auto var(--sp-3); background: var(--c-accent); color: var(--c-white); font-size: var(--text-2xl); font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; box-shadow: 0 2px 12px oklch(0.70 0.16 210 / 0.25); }
.process-step h3 { font-size: var(--text-base); font-weight: 800; color: var(--c-primary); margin-bottom: 6px; }
.process-step p { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; }

/* ── News Grid ────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.news-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color var(--dur-sm) var(--ease), transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease); }
.news-card:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-image { aspect-ratio: 16/9; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-lg) var(--ease); }
.news-card:hover .news-image img { transform: scale(1.04); }
.news-content { padding: var(--sp-3); }
.news-date { font-size: var(--text-xs); color: var(--c-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.news-content h3 { font-size: var(--text-base); font-weight: 800; color: var(--c-primary); margin-bottom: 6px; line-height: 1.4; }
.news-content p { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; }

/* ── Videos ──────────────────────────────────────────────── */
.videos-placeholder { text-align: center; padding: var(--sp-10) var(--sp-3); color: var(--c-muted); font-size: var(--text-lg); line-height: 2.4; }
.videos-placeholder strong { color: var(--c-primary); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-section { background: linear-gradient(180deg, var(--c-white) 0%, var(--c-accent-bg) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }
.contact-info h2 { font-size: var(--text-3xl); font-weight: 900; color: var(--c-primary); margin-bottom: var(--sp-2); }
.contact-info > p { color: var(--c-muted); margin-bottom: var(--sp-5); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-item { display: flex; align-items: center; gap: var(--sp-2); }
.contact-icon { width: 48px; height: 48px; background: var(--c-accent-bg); border: 1px solid oklch(0.70 0.16 210 / 0.15); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--c-accent); }
.contact-item .label { font-size: var(--text-xs); color: var(--c-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact-item .value { font-size: var(--text-base); color: var(--c-primary); font-weight: 600; }
.contact-form { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: var(--sp-5); box-shadow: var(--shadow-md); }
.form-title { font-size: var(--text-xl); font-weight: 800; color: var(--c-primary); margin-bottom: var(--sp-4); }
.form-group { margin-bottom: var(--sp-3); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--c-body); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 12px var(--sp-2); color: var(--c-body); font-size: var(--text-base); font-family: var(--font); transition: border-color var(--dur-sm) var(--ease), box-shadow var(--dur-sm) var(--ease); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px oklch(0.70 0.16 210 / 0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-submit { width: 100%; padding: 14px; font-size: var(--text-base); }
.success-message { display: none; margin-top: var(--sp-2); padding: var(--sp-2); background: oklch(0.90 0.12 145 / 0.15); border: 1px solid oklch(0.75 0.12 145 / 0.3); border-radius: var(--r-md); color: oklch(0.35 0.12 145); font-size: var(--text-sm); font-weight: 600; text-align: center; }
.success-message.show { display: block; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { padding: var(--sp-8) 0 var(--sp-4); background: var(--c-footer); color: oklch(0.75 0.01 250); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.footer-brand .nav-logo-text { color: var(--c-white); font-size: var(--text-xl); }
.footer-brand p { color: oklch(0.60 0.01 250); font-size: var(--text-sm); margin-top: var(--sp-2); line-height: 1.8; }
.footer-col h4 { font-size: var(--text-xs); font-weight: 800; color: var(--c-white); margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--sp-1); }
.footer-col ul li a { color: oklch(0.60 0.01 250); text-decoration: none; font-size: var(--text-sm); transition: color var(--dur-sm) var(--ease); }
.footer-col ul li a:hover { color: var(--c-accent); }
.footer-bottom { border-top: 1px solid oklch(0.25 0.01 250); padding-top: var(--sp-3); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: var(--text-xs); color: oklch(0.45 0.01 250); }

/* ── Animations ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-lang .lang-btn { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 5px 10px; font-size: 0.7rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
  .mobile-lang .lang-btn:hover, .mobile-lang .lang-btn.active { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
  .mobile-lang .lang-btn[data-lang="zh"] { font-size: 0.75rem; }
  .mobile-menu { flex-direction: column; padding: 16px; gap: 4px; }
  .mobile-menu a { color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-decoration: none; }
  .mobile-menu a:hover { color: var(--c-accent); }
  .mobile-menu.active { display: flex; opacity: 1; pointer-events: auto; }
  .hero { padding: 80px 0 var(--sp-8); }
  .hero h1 { font-size: var(--text-3xl); }
  .hero-stats { gap: var(--sp-4); flex-wrap: wrap; }
  .stat-number { font-size: var(--text-3xl); }
  .hero-stats { margin-top: var(--sp-6); padding-top: var(--sp-4); }
  .about-grid, .categories-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }
  .section { padding: var(--sp-8) 0; }
  .section-header { margin-bottom: var(--sp-5); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
