/*  GoldenLaneAuto — World-class Auto Export
    Design language: Carvana × Mobile.de × Bring-A-Trailer
    Strict design system. Restraint. Editorial typography.
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* ===== Type ===== */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* ===== Color (limited palette, restrained) ===== */
  --ink:       #050E0A;     /* primary text */
  --ink-2:     #1F2A24;     /* secondary heading */
  --text:      #3F5048;     /* body */
  --text-2:    #67786F;     /* meta */
  --subtle:    #98A29C;     /* placeholder */
  --line:      #E7EAE7;
  --line-2:    #F0F2F0;
  --bg:        #FFFFFF;
  --bg-soft:   #F7F8F7;
  --bg-soft-2: #EEF1EE;
  --bg-dark:   #050E0A;
  --bg-card:   #FFFFFF;

  --green:     #0B6B47;
  --green-d:   #06432D;
  --green-l:   #0D8A5E;
  --green-bg:  #EEF7F1;
  --green-line:#CFE3D6;
  --amber:     #C2701C;
  --amber-l:   #E5933A;
  --amber-bg:  #FBF3E8;
  --red:       #B5343E;

  /* ===== Spacing (8-based) ===== */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px;  --s-8: 32px;  --s-10: 40px; --s-12: 48px; --s-14: 56px;
  --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-28: 112px; --s-32: 128px;

  /* ===== Radius ===== */
  --r-1: 4px; --r-2: 6px; --r-3: 10px; --r-4: 14px; --r-5: 20px; --r-pill: 999px;

  /* ===== Shadow ===== */
  --shadow-1: 0 1px 2px rgba(5,14,10,.04);
  --shadow-2: 0 4px 12px rgba(5,14,10,.05);
  --shadow-3: 0 16px 40px rgba(5,14,10,.08);
  --shadow-4: 0 32px 80px rgba(5,14,10,.14);

  /* ===== Motion ===== */
  --ease:     cubic-bezier(.2,.85,.25,1);
  --ease-out: cubic-bezier(.32,.72,0,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ===== Type scale ===== */
.t-xs   { font-size: 11px;  line-height: 1.5;  letter-spacing: .02em; }
.t-sm   { font-size: 13px;  line-height: 1.55; }
.t-base { font-size: 15px;  line-height: 1.6; }
.t-lg   { font-size: 17px;  line-height: 1.55; }
.t-xl   { font-size: 20px;  line-height: 1.4; }
.t-2xl  { font-size: 24px;  line-height: 1.3;  letter-spacing: -.012em; }
.t-3xl  { font-size: 32px;  line-height: 1.2;  letter-spacing: -.018em; }
.t-4xl  { font-size: 40px;  line-height: 1.1;  letter-spacing: -.022em; }
.t-5xl  { font-size: 56px;  line-height: 1.05; letter-spacing: -.028em; }
.t-6xl  { font-size: 72px;  line-height: 1;    letter-spacing: -.032em; }
.t-display { font-family: var(--font-display); font-weight: 400; }
.t-mono { font-family: var(--font-mono); letter-spacing: -.02em; }
.t-up   { text-transform: uppercase; letter-spacing: .12em; font-size: 11.5px; font-weight: 600; }
.t-dim  { color: var(--text-2); }

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px){ .container { padding: 0 20px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; color: var(--green);
  text-transform: uppercase; letter-spacing: .16em;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--green); opacity: .5;
}
.dark .eyebrow { color: rgba(255,255,255,.7); }
.dark .eyebrow::before { background: rgba(255,255,255,.4); }

/* ============ TOP NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(5,14,10,.06);
}
.nav-row { display: flex; align-items: center; height: 72px; gap: 40px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--ink); color: var(--bg);
  border-radius: 8px; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  letter-spacing: -.04em;
}
.nav-links { display: flex; gap: 2px; flex: 1; margin-left: 8px; }
.nav-links a {
  padding: 9px 14px; border-radius: var(--r-2);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all .15s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content:''; display:block; width:18px; height:2px; background: var(--green); margin: 2px auto -2px; border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-lang { display: flex; gap: 0; align-items: center; padding: 2px; background: var(--bg-soft); border-radius: var(--r-2); }
.nav-lang a {
  padding: 5px 8px; font-size: 12px; font-weight: 600; color: var(--text-2);
  border-radius: var(--r-1);
}
.nav-lang a.active { color: var(--ink); background: var(--bg); box-shadow: var(--shadow-1); }
.nav-cta {
  background: var(--ink); color: var(--bg) !important;
  padding: 11px 22px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .18s var(--ease);
}
.nav-cta:hover { background: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-2); }
@media (max-width: 960px){ .nav-links { display: none; } }

/* ============ ICONS ============ */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 36px; height: 36px; }

/* ============ HERO — Editorial ============ */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  color: rgba(255,255,255,.92);
  padding: 96px 0 88px; isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(11,107,71,.25), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(194,112,28,.10), transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-wrap { max-width: 980px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  margin-bottom: 32px; color: rgba(255,255,255,.9);
}
.hero-eyebrow .live-dot {
  width: 8px; height: 8px; background: #34D399; border-radius: 50%; box-shadow: 0 0 0 4px rgba(52,211,153,.18);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 8vw, 96px); line-height: .98;
  letter-spacing: -.04em; color: white;
  margin: 0 0 24px;
}
.hero h1 .it { font-style: italic; color: #6EE7B7; }
.hero p.lead {
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,.7);
  max-width: 640px; margin: 0 auto 40px;
}
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: white; color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 12px 32px rgba(0,0,0,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 18px 40px rgba(0,0,0,.4); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: white;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.btn-solid {
  background: var(--ink); color: white;
  box-shadow: var(--shadow-2);
}
.btn-solid:hover { background: var(--green); transform: translateY(-1px); }
.btn-outline {
  background: white; color: var(--ink); border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }

.hero-search {
  max-width: 1100px; margin: 56px auto 0; padding: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-5);
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto; gap: 6px;
}
.hero-search .f {
  padding: 12px 16px; border-radius: var(--r-3);
  background: rgba(255,255,255,.06);
  transition: background .15s var(--ease);
  text-align: left;
}
.hero-search .f:hover { background: rgba(255,255,255,.1); }
.hero-search .f label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 4px;
}
.hero-search select, .hero-search input {
  background: transparent; border: none; color: white;
  font-size: 14px; font-weight: 500; width: 100%; padding: 0;
  cursor: pointer; outline: none;
}
.hero-search select option { background: var(--ink); color: white; }
.hero-search .submit {
  padding: 0 28px; border-radius: var(--r-3);
  background: white; color: var(--ink);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s var(--ease);
}
.hero-search .submit:hover { background: #34D399; color: var(--ink); }
@media (max-width: 1000px){ .hero-search { grid-template-columns: 1fr 1fr; } .hero-search .submit { grid-column: 1/-1; padding: 14px; } }

.hero-meta {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  margin-top: 36px; font-size: 12.5px; color: rgba(255,255,255,.55);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }

/* ============ STAT BAR (numbers) ============ */
.stat-bar {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 28px; position: relative;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 52px); color: var(--ink);
  letter-spacing: -.04em; line-height: 1;
}
.stat-lbl {
  margin-top: 10px; font-size: 12.5px; color: var(--text-2);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
}
@media (max-width: 720px){
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat { border-right: none; }
}

/* ============ SECTION ============ */
.section { padding: 120px 0; }
.section.tight { padding: 80px 0; }
.section.compact { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--bg-dark); color: rgba(255,255,255,.85); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: white; }
.section.dark .section-sub { color: rgba(255,255,255,.6); }

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--ink);
  margin: 14px 0 0;
}
.section-head h2 .it { font-style: italic; color: var(--green); }
.section-head .section-sub { font-size: 17px; color: var(--text-2); margin-top: 16px; line-height: 1.55; }

.section-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-row h2 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.025em; }
.section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: gap .2s var(--ease);
}
.section-link:hover { gap: 10px; }

/* ============ CAR CARD — Editorial ============ */
.cars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cars.four { grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px){ .cars, .cars.four { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 600px){ .cars, .cars.four { grid-template-columns: 1fr; } }

.car {
  display: block; background: var(--bg-card); color: inherit;
  border-radius: var(--r-4); overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
}
.car:hover { transform: translateY(-4px); }
.car-img-wrap {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--bg-soft);
  border-radius: var(--r-4);
}
.car-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
}
.car:hover .car-img { transform: scale(1.045); }
.car-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px; pointer-events: none;
}
.car-bd {
  padding: 4px 10px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.94); color: var(--ink);
  backdrop-filter: blur(10px);
}
.car-bd.ev { background: var(--green); color: white; }
.car-bd.new { background: var(--amber); color: white; }
.car-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.94); display: grid; place-items: center;
  cursor: pointer; transition: all .2s var(--ease);
  backdrop-filter: blur(10px);
  border: none;
}
.car-fav:hover { background: white; transform: scale(1.08); }
.car-fav svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; stroke-width: 2; }
.car-fav.on svg { fill: var(--red); stroke: var(--red); }

.car-body { padding: 18px 4px 4px; }
.car-title {
  font-size: 18px; font-weight: 600; color: var(--ink);
  letter-spacing: -.014em; line-height: 1.25; margin: 0 0 4px;
  display: flex; justify-content: space-between; align-items: start; gap: 12px;
}
.car-sub {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-2); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .04em;
}
.car-meta {
  display: flex; flex-wrap: wrap; gap: 14px 18px;
  font-size: 12.5px; color: var(--text);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
}
.car-meta span { display: inline-flex; align-items: center; gap: 5px; }
.car-meta svg { color: var(--text-2); flex-shrink: 0; }
.car-foot { display: flex; align-items: end; justify-content: space-between; }
.car-price {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; color: var(--ink);
  letter-spacing: -.025em; line-height: 1;
}
.car-price small {
  display: block; font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; color: var(--text-2);
  margin-top: 5px; letter-spacing: .12em; text-transform: uppercase;
}
.car-inquire {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--r-pill);
  transition: all .15s var(--ease);
}
.car:hover .car-inquire { background: var(--ink); color: white; border-color: var(--ink); }

/* ============ BRAND WALL ============ */
.brand-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-4); overflow: hidden; }
@media (max-width: 900px){ .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px){ .brand-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-cell {
  background: var(--bg); padding: 28px 12px;
  text-align: center; transition: all .15s var(--ease);
  text-decoration: none; color: inherit;
}
.brand-cell:hover { background: var(--bg-soft); }
.brand-cell-name {
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  letter-spacing: -.012em;
}
.brand-cell-count {
  margin-top: 4px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-2);
}

/* ============ CATEGORY (split / asymmetric) ============ */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 900px){ .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-4);
  padding: 28px 24px 24px; transition: all .2s var(--ease);
  position: relative;
}
.cat:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.cat svg { width: 28px; height: 28px; color: var(--green); margin-bottom: 18px; }
.cat h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1; margin: 0 0 4px; letter-spacing: -.02em;
}
.cat .ct { font-family: var(--font-mono); font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }
.cat .arrow { position: absolute; top: 28px; right: 24px; opacity: .25; transition: all .2s var(--ease); }
.cat:hover .arrow { opacity: 1; transform: translateX(4px); }
.cat.featured {
  background: var(--bg-dark); border-color: var(--bg-dark); color: white;
}
.cat.featured h3, .cat.featured svg { color: white; }
.cat.featured .ct { color: rgba(255,255,255,.55); }
.cat.featured svg { color: #34D399; }
.cat.featured .arrow { color: rgba(255,255,255,.4); }

/* ============ EDITORIAL BLOCK (50/50) ============ */
.editorial {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
@media (max-width: 960px){ .editorial { grid-template-columns: 1fr; gap: 40px; } }
.editorial-text h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--ink);
  margin: 14px 0 20px;
}
.editorial-text h2 .it { font-style: italic; color: var(--green); }
.editorial-text p { font-size: 16px; line-height: 1.65; color: var(--text); margin-bottom: 14px; }
.editorial-bullets { list-style: none; margin-top: 24px; }
.editorial-bullets li {
  display: flex; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14.5px; color: var(--text);
}
.editorial-bullets li:last-child { border-bottom: 1px solid var(--line-2); }
.editorial-bullets li strong { color: var(--ink); font-weight: 600; }
.editorial-bullets li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ============ MARKETS BAND ============ */
.markets {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 900px){ .markets { grid-template-columns: repeat(2, 1fr); } }
.market-cell {
  padding: 28px 24px; border-right: 1px solid var(--line);
  transition: background .15s var(--ease);
  text-decoration: none; color: inherit;
}
.market-cell:last-child { border-right: none; }
.market-cell:hover { background: var(--bg-soft); }
@media (max-width: 900px){ .market-cell:nth-child(even) { border-right: none; } .market-cell { border-bottom: 1px solid var(--line); } }
.market-cell .flag { font-size: 32px; line-height: 1; margin-bottom: 14px; }
.market-cell .name {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.2;
}
.market-cell .port {
  margin-top: 6px; font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-2); text-transform: uppercase; letter-spacing: .08em;
}
.market-cell .days {
  margin-top: 14px; font-size: 13px; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============ TESTIMONIAL / PROCESS / SIGNALS ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px){ .process { grid-template-columns: 1fr 1fr; gap: 24px; } }
.process-step { position: relative; padding-top: 24px; border-top: 2px solid var(--ink); }
.process-step .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--green); margin-bottom: 8px;
}
.process-step h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -.015em; }
.process-step p { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,.7);
  padding: 96px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer h4 {
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px;
}
.footer .logo-big {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 32px; color: white; letter-spacing: -.02em; line-height: 1;
  margin-bottom: 18px;
}
.footer p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .15s var(--ease); }
.footer ul li a:hover { color: white; }
.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.4);
}

.seo-cluster {
  margin-top: 24px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.seo-cluster summary {
  cursor: pointer; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .12em;
  list-style: none; text-align: center;
}
.seo-cluster summary::-webkit-details-marker { display: none; }
.seo-cluster .chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; justify-content: center;
}
.seo-cluster .chips a {
  font-size: 11px; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-pill);
  padding: 5px 10px;
  transition: all .15s var(--ease);
}
.seo-cluster .chips a:hover { color: white; border-color: rgba(255,255,255,.3); }

/* ============ LIST PAGE ============ */
.list-page { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 56px 0 96px; }
@media (max-width: 900px){ .list-page { grid-template-columns: 1fr; gap: 24px; } }
.filters {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-4);
  padding: 28px; height: fit-content; position: sticky; top: 96px;
}
.filters h4 { font-size: 11px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.fgroup { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.fgroup:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fgroup select { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-2); background: white; font-size: 14px; }
.fgroup select:focus { outline: none; border-color: var(--ink); }
.fchips { display: flex; flex-wrap: wrap; gap: 6px; }
.fchips a {
  padding: 7px 13px; font-size: 12.5px; border: 1px solid var(--line);
  border-radius: var(--r-pill); color: var(--text);
}
.fchips a.active { background: var(--ink); color: white; border-color: var(--ink); }
.fchips a:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

.list-top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.list-top .count {
  font-family: var(--font-display); font-weight: 400;
  font-size: 36px; color: var(--ink); letter-spacing: -.025em; line-height: 1;
}
.list-top .count small { display: block; margin-top: 6px; font-family: var(--font-sans); font-size: 13px; color: var(--text-2); letter-spacing: 0; }
.list-top select { padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--r-2); font-size: 13.5px; background: white; }

/* ============ DETAIL PAGE ============ */
.breadcrumb {
  padding: 24px 0; font-size: 13px; color: var(--text-2);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { color: var(--subtle); }
.breadcrumb .now { color: var(--ink); font-weight: 500; }

.detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding-bottom: 96px; }
@media (max-width: 1000px){ .detail { grid-template-columns: 1fr; } }

.gallery-main {
  aspect-ratio: 4/3; background: var(--bg-soft);
  background-size: cover; background-position: center;
  border-radius: var(--r-4); position: relative; overflow: hidden;
}
.gallery-main .ovrly {
  position: absolute; left: 20px; bottom: 20px;
  padding: 8px 16px; background: rgba(5,14,10,.85); color: white;
  border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
}
.thumb-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 12px; }
.thumb {
  aspect-ratio: 1/1; background-size: cover; background-position: center;
  border-radius: var(--r-2); cursor: pointer;
  opacity: .7; transition: all .2s var(--ease);
  border: 2px solid transparent;
}
.thumb:hover { opacity: 1; }
.thumb.on { opacity: 1; border-color: var(--ink); }

.media-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.media-tool {
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-3);
  font-size: 13px; color: var(--text); cursor: pointer; background: white;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .15s var(--ease);
}
.media-tool:hover { border-color: var(--ink); color: var(--ink); }
.media-tool svg { color: var(--green); }

.d-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.d-bd {
  padding: 5px 11px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
}
.d-bd.ev { background: var(--green); color: white; }
.d-bd.gray { background: var(--bg-soft); color: var(--text); }
.d-bd.live {
  background: var(--amber-bg); color: var(--amber);
  display: inline-flex; align-items: center; gap: 6px;
}
.d-bd.live::before { content:''; width:6px; height:6px; background: var(--amber); border-radius:50%; }

.d-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--ink);
  margin: 4px 0 16px;
}
.d-meta {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  font-size: 14px; color: var(--text);
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.d-meta span { display: inline-flex; align-items: center; gap: 6px; }
.d-meta svg { color: var(--green); }

.price-card {
  padding: 28px 28px 24px;
  background: white;
  border: 1px solid var(--line); border-radius: var(--r-4);
  margin-bottom: 16px;
  box-shadow: var(--shadow-1);
}
.fx-tabs {
  display: inline-flex; padding: 3px; background: var(--bg-soft);
  border-radius: var(--r-pill); margin-bottom: 16px;
}
.fx-tabs button {
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--text-2); border-radius: var(--r-pill);
}
.fx-tabs button.on { background: var(--ink); color: white; }
.fx-label { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: .14em; text-transform: uppercase; }
.fx-price {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 56px); color: var(--ink);
  margin: 8px 0 18px; letter-spacing: -.04em; line-height: 1;
}
.fx-price small { font-family: var(--font-sans); font-size: 14px; color: var(--text-2); font-weight: 600; letter-spacing: .08em; }
.fx-break { padding-top: 18px; border-top: 1px solid var(--line); }
.fx-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; color: var(--text); }
.fx-row strong { color: var(--ink); font-weight: 600; }

.why-block {
  background: var(--bg-soft); border-radius: var(--r-4);
  padding: 20px 24px; margin-bottom: 16px;
}
.why-block h4 { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.why-block ul { list-style: none; }
.why-block li { display: flex; gap: 10px; padding: 5px 0; font-size: 13.5px; line-height: 1.5; color: var(--text); }
.why-block li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

.talk-card {
  background: var(--ink); color: white;
  border-radius: var(--r-4); padding: 24px;
  box-shadow: var(--shadow-3);
}
.talk-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: white; }
.ch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ch {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); border-radius: var(--r-3);
  text-decoration: none; color: white; transition: all .2s var(--ease);
}
.ch:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.ch-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.ch.wa .ch-icon { background: #25D366; }
.ch.tg .ch-icon { background: #229ED9; }
.ch.wc .ch-icon { background: #07C160; }
.ch.em .ch-icon { background: var(--amber); }
.ch-name { font-size: 13.5px; font-weight: 600; line-height: 1.15; }
.ch-sub { font-size: 11px; opacity: .65; }
.talk-foot { font-size: 11px; opacity: .55; margin-top: 14px; text-align: center; letter-spacing: .08em; }

.specs { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.specs h3 { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 56px; }
@media (max-width: 800px){ .specs-grid { grid-template-columns: 1fr; gap: 0; } }
.specs-grid .row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.specs-grid .row .k { color: var(--text-2); }
.specs-grid .row .v { color: var(--ink); font-weight: 600; }

/* ============ PAGE HERO (内页) ============ */
.page-hero { background: var(--bg-dark); color: rgba(255,255,255,.85); padding: 80px 0 64px; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11,107,71,.18), transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02;
  letter-spacing: -.03em; color: white;
}
.page-hero h1 .it { font-style: italic; color: #6EE7B7; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 720px; margin-top: 14px; line-height: 1.55; }

/* Long-form */
.longform { max-width: 760px; margin: 0 auto; padding: 64px 0; }
.longform h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; line-height: 1.15; letter-spacing: -.02em;
  color: var(--ink); margin: 56px 0 16px;
}
.longform h3 { font-size: 20px; margin: 36px 0 12px; color: var(--ink); }
.longform p { font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 16px; }
.longform ul, .longform ol { padding-left: 28px; margin: 16px 0 20px; }
.longform li { margin-bottom: 8px; font-size: 16px; line-height: 1.65; color: var(--text); }
.longform strong { color: var(--ink); font-weight: 600; }
.longform a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============ MISC ============ */
[dir="rtl"] .car-meta, [dir="rtl"] .nav-links { direction: rtl; }
::selection { background: var(--green); color: white; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* Print */
@media print { .nav, .footer, .seo-cluster, .talk-card, .media-tools { display: none !important; } body { color: black; background: white; } }
