/* =============================================
   AIスモールビズ - Main Stylesheet
   All class names are obfuscated via class-map.php
   ============================================= */

/* === CSS Variables === */
:root {
  --primary: #2563EB;
  --primary-dark: #1E40AF;
  --primary-light: #DBEAFE;
  --accent: #8B5CF6;
  --accent-light: #EDE9FE;
  --gradient: linear-gradient(135deg, #2563EB, #8B5CF6);
  --gradient-soft: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(139,92,246,0.08));
  --bg: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 6px rgba(15,23,42,0.04), 0 10px 15px rgba(15,23,42,0.06);
  --shadow-lg: 0 10px 25px rgba(15,23,42,0.06), 0 20px 50px rgba(15,23,42,0.08);
  --shadow-xl: 0 20px 40px rgba(15,23,42,0.08), 0 30px 70px rgba(15,23,42,0.1);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

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

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--accent)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* === Container - tp2wk9 === */
.tp2wk9 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Header - fw7ag5 === */
.fw7ag5 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: var(--transition);
}

.fw7ag5.scrolled {
  box-shadow: var(--shadow-md);
}

/* Header Inner - ux2qe8 */
.ux2qe8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo - dn3ks6 */
.dn3ks6 { display: flex; align-items: center; gap: 0.5rem; }
.pe9vr2 { height: 42px; width: auto; transition: var(--transition-bounce); }
.dn3ks6:hover .pe9vr2 { transform: scale(1.05); }

/* Nav - hg8tx1 */
.hg8tx1 { display: flex; align-items: center; }

/* Nav List - wj5fm3 */
.wj5fm3 {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

/* Nav Link - sk7di4 */
.sk7di4 {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.sk7di4:hover {
  color: var(--primary);
  background: var(--gradient-soft);
}

.sk7di4.ob6za8 {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

/* === Hero Section - wt5kn8 === */
.wt5kn8 {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, transparent 100%);
}

.wt5kn8::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero Content - af2xq4 */
.af2xq4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Badge - uo8vf2 */
.uo8vf2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-soft);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Hero Title - lj7bu6 */
.lj7bu6 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Hero Subtitle - rs9ec3 */
.rs9ec3 {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Hero Image - yk4mi5 */
.yk4mi5 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yk4mi5 img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(37,99,235,0.1));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === Buttons === */
/* btn - ex4rg2 */
.ex4rg2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* btn-primary - hw7nf5 */
.hw7nf5 {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.hw7nf5:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
  color: white;
}

.hw7nf5::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hw7nf5:hover::after { left: 100%; }

/* btn-outline - ma6ti3 */
.ma6ti3 {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.ma6ti3:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Hero CTA - dh1wp7 */
.dh1wp7 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === Sections === */
/* section - zg3la9 */
.zg3la9 {
  padding: 5rem 0;
}

/* section-header - cx7ni4 */
.cx7ni4 {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* section-label - bt9gx2 */
.bt9gx2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* section-title - pf1we6 */
.pf1we6 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* section-subtitle - km5rj8 */
.km5rj8 {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* text-gradient - qk8mp1 */
.qk8mp1 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Card Grid - my9tw5 === */
.my9tw5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* === Card - hn4qd7 === */
.hn4qd7 {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

/* card-hover - fe4jc8 */
.fe4jc8:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* card-image - wu2fy5 */
.wu2fy5 {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gradient-soft);
}

.wu2fy5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.fe4jc8:hover .wu2fy5 img {
  transform: scale(1.05);
}

/* card-featured - uk3pg6 */
.uk3pg6 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* card-body - ra8tk1 */
.ra8tk1 {
  padding: 1.5rem;
}

/* card-category - ei6lm3 */
.ei6lm3 {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--cat-color, var(--primary));
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 10%, transparent);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.ei6lm3:hover {
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 20%, transparent);
}

/* card-title - jo9xs4 */
.jo9xs4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.jo9xs4 a {
  color: var(--text);
  text-decoration: none;
}

.jo9xs4 a:hover { color: var(--primary); }

/* card-excerpt - vb7pa8 */
.vb7pa8 {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* card-meta - gd2uw6 */
.gd2uw6 {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.gd2uw6 span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* === Category Cards - sw6oa1 === */
.wg5dx6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sw6oa1 {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.sw6oa1::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sw6oa1:hover::before { transform: scaleX(1); }

.sw6oa1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.lx3ev7 {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  transition: var(--transition-bounce);
}

.sw6oa1:hover .lx3ev7 { transform: scale(1.1); }

.pi8kr4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hb2ny9 {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* === Featured Slider - rh5np4 === */
.rh5np4 {
  position: relative;
  margin-bottom: 2rem;
}

.rh5np4 .swiper-slide { height: auto; }

.rh5np4 .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.rh5np4 .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* === Two Column Layout - ba7ue9 === */
.ba7ue9 {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* === Sidebar - cj4bg8 === */
.cj4bg8 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

/* sidebar-widget - le9ur2 */
.le9ur2 {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

/* Glass effect - ot6da8 */
.ot6da8 {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* sidebar-title - xk6dh7 */
.xk6dh7 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}

.xk6dh7::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient);
}

/* sidebar-list - pn3wi4 */
.pn3wi4 {
  list-style: none;
}

.pn3wi4 li { margin-bottom: 0; }

/* sidebar-item - qv1fm6 */
.qv1fm6 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  flex-wrap: wrap;
  gap: 0.25rem;
}

.qv1fm6 a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.qv1fm6 a small {
  color: var(--text-light);
  font-size: 0.78rem;
  width: 100%;
}

/* sidebar-search - ty8kc9 */
.ty8kc9 {
  display: flex;
  gap: 0.5rem;
}

/* badge - nw7xr9 */
.nw7xr9 {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  flex-shrink: 0;
}

/* === Search === */
/* search-input - nr8lk7 */
.nr8lk7 {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

.nr8lk7:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* search-btn - co5jm1 */
.co5jm1 {
  padding: 0.75rem 1rem;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.co5jm1:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* search-box (main page) - fg2wy4 */
.fg2wy4 {
  max-width: 600px;
  margin: 2rem auto;
}

.fg2wy4 form { display: flex; gap: 0.75rem; }

/* search-count - ql9ua8 */
.ql9ua8 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* === Breadcrumbs - fa2yk7 === */
.fa2yk7 {
  padding: 1.5rem 0;
}

.fa2yk7 ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 0;
}

.ln6rp1 {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
}

.ln6rp1 a {
  color: var(--text-muted);
  transition: var(--transition);
}

.ln6rp1 a:hover { color: var(--primary); }

.ln6rp1 span { color: var(--text-light); }

.ue9dc5 {
  margin: 0 0.5rem;
  color: var(--text-light);
}

/* === Pagination - wi4hm8 === */
.wi4hm8 {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.oa1tn6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.oa1tn6:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.oa1tn6.rv5yf9 {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

/* === Article Page === */
/* article - tm1qh3 */
.tm1qh3 {
  max-width: 100%;
}

/* article-header - fy7wa5 */
.fy7wa5 {
  margin-bottom: 2rem;
}

/* article-title - kn4ig8 */
.kn4ig8 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* article-meta - up2re6 */
.up2re6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.up2re6 span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* article-image - bx9lc1 */
.bx9lc1 {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-soft);
}

.bx9lc1 img {
  width: 100%;
  display: block;
}

/* article-content - ga5vj7 */
.ga5vj7 {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-secondary);
}

.ga5vj7 h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 3rem 0 1.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

.ga5vj7 h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.ga5vj7 p { margin-bottom: 1.5rem; }

.ga5vj7 ul, .ga5vj7 ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.ga5vj7 li { margin-bottom: 0.75rem; }

.ga5vj7 blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--gradient-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.ga5vj7 code {
  font-family: var(--font-mono);
  background: var(--primary-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.ga5vj7 pre {
  background: #0F172A;
  color: #E2E8F0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.ga5vj7 pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.ga5vj7 strong { color: var(--text); font-weight: 600; }

.ga5vj7 a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* article-related - hs1ya3 */
.hs1ya3 {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* === Page Header - fs6dj8 === */
.fs6dj8 {
  padding: 3rem 0 2rem;
  text-align: center;
  position: relative;
}

.fs6dj8::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient-soft);
  z-index: -1;
}

/* page-title - hm1nc5 */
.hm1nc5 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* page-description - ya9rg3 */
.ya9rg3 {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === Stats Section - cf8lx7 === */
.cf8lx7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.nu5hr2 {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.qe1va9 {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.yj4gk6 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === Forms === */
/* form - sc8kw7 */
.sc8kw7 {
  max-width: 100%;
}

/* form-group - yn3lx1 */
.yn3lx1 { margin-bottom: 1.5rem; }

/* form-label - hf6pa5 */
.hf6pa5 {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* form-input - ut9re2 */
.ut9re2, .bm4dg8 {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: var(--transition);
}

.ut9re2:focus, .bm4dg8:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.bm4dg8 { min-height: 160px; resize: vertical; }

/* form-submit - ja1nh6 */
.ja1nh6 {
  width: 100%;
  padding: 1rem;
  background: var(--gradient);
  color: white;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.ja1nh6:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

/* form-message - px5tc9 */
.px5tc9 {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* === Contact Grid - de7ns8 === */
.de7ns8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.pt1gk3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rv9bh2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* === About Page === */
.ng5xt7 {
  padding: 4rem 0;
  text-align: center;
}

.yb8ek2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-secondary);
}

.la1wp4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.cx6ri9 {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.cx6ri9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* === Legal Pages - uq4xh7 === */
.uq4xh7 {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.wn8bf2 {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-secondary);
}

.wn8bf2 h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

.wn8bf2 p { margin-bottom: 1.25rem; }

.gt6pk9 {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* === Error Pages - iz3wa1 === */
.iz3wa1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 3rem 2rem;
}

.lv7mj5 {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.dx2yc8 {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* === Cookie Banner - zt3ga1 === */
.zt3ga1 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1.25rem 2rem;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ip7nd5 {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  flex: 1;
}

.ip7nd5 a { color: #93C5FD; }

.km2yv8 {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.fr6lq3 {
  padding: 0.6rem 1.5rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-jp);
  font-size: 0.85rem;
}

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

.ow4hc9 {
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-jp);
  font-size: 0.85rem;
}

.ow4hc9:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* === Footer - am5jx1 === */
.am5jx1 {
  background: #0F172A;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.gi2pb8 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.nf9ry5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bk3to7 { list-style: none; }

.bk3to7 li { margin-bottom: 0.75rem; }

.vc6hd2 {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.vc6hd2:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 0.25rem;
}

/* Footer logo uses logo-white.svg, no filter needed */

.xm1qg4 {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.pe8wn9 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* === Responsive === */
@media (max-width: 1200px) {
  .my9tw5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .ba7ue9 { grid-template-columns: 1fr; }
  .cj4bg8 { position: static; }
  .af2xq4 { grid-template-columns: 1fr; text-align: center; }
  .rs9ec3 { margin: 0 auto 2.5rem; }
  .dh1wp7 { justify-content: center; }
  .yk4mi5 { order: -1; }
  .yk4mi5 img { max-width: 400px; margin: 0 auto; }
  .gi2pb8 { grid-template-columns: 1fr 1fr; }
  .cf8lx7 { grid-template-columns: repeat(2, 1fr); }
  .de7ns8 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .tp2wk9 { padding: 0 1.25rem; }
  .wt5kn8 { padding: 3rem 0; }
  .lj7bu6 { font-size: 2rem; }
  .pf1we6 { font-size: 1.75rem; }
  .my9tw5 { grid-template-columns: 1fr; }
  .wg5dx6 { grid-template-columns: repeat(2, 1fr); }
  .la1wp4 { grid-template-columns: 1fr; }
  .zg3la9 { padding: 3rem 0; }
  .kn4ig8 { font-size: 1.75rem; }
  .gi2pb8 { grid-template-columns: 1fr; gap: 2rem; }
  .zt3ga1 { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .lj7bu6 { font-size: 1.75rem; }
  .pf1we6 { font-size: 1.5rem; }
  .wg5dx6 { grid-template-columns: 1fr; }
  .cf8lx7 { grid-template-columns: 1fr; }
  .dh1wp7 { flex-direction: column; }
  .dh1wp7 .ex4rg2 { width: 100%; justify-content: center; }
  .lv7mj5 { font-size: 5rem; }
}
