/* =====================================================
   NEO FAIR partners — メインスタイルシート
   Design: Refined / Editorial / Premium
   ===================================================== */

/* ─── Variables ─── */
:root {
  /* Brand */
  --brand:        #4a9ab5;
  --brand-dark:   #2d7a96;
  --brand-deep:   #1a5a72;
  --brand-light:  #8bc8dd;
  --brand-pale:   #e8f5fa;

  /* Neutral */
  --ink:          #0e1a22;
  --ink-mid:      #1e3040;
  --ink-light:    #3d5265;
  --muted:        #6b8899;
  --border:       #d8e6ed;
  --surface:      #f6fafb;
  --white:        #ffffff;

  /* Type */
  --sans:  'Noto Sans JP', sans-serif;
  --serif: 'Noto Serif JP', serif;
  --display: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-py: 120px;
  --container:  1140px;
  --header-h:   72px;

  /* Misc */
  --radius:     10px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --ease-out:   cubic-bezier(0, 0, .2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Utility ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.pc-only { display: block; }
.sp-only { display: none; }

/* ─── Section base ─── */
.section { padding: var(--section-py) 0; }

.section-header { text-align: center; margin-bottom: 72px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand);
}
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.eyebrow-light::before, .eyebrow-light::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand-light);
  opacity: .6;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 18px;
}
.section-title--left { text-align: left; }
.section-title-light {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 18px;
}
.section-lead {
  font-size: .975rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(14, 26, 34, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.logo:hover .logo-mark {
  border-color: var(--brand-light);
  background: rgba(139,200,221,.1);
}
.logo-text-main {
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}
.logo-text-main em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: .06em;
}
.logo-text-sub {
  font-size: .6rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  display: block;
  margin-top: 2px;
}

/* Nav */
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white) !important;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  transition: all .25s var(--ease);
}
.nav-cta:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 1100; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 900;
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav-overlay.active { opacity: 1; }


/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #081520 0%, #0e2637 40%, #163548 70%, #1d4a62 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,154,181,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,154,181,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 40%, rgba(74,154,181,.18) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 10% 85%, rgba(45,122,150,.12) 0%, transparent 60%);
}

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

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 28px;
}
.label-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--brand-light);
  opacity: .6;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.hero-title-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.7);
  font-style: italic;
}

.hero-copy {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.65);
  line-height: 2;
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border: 1.5px solid var(--brand);
  box-shadow: 0 4px 24px rgba(74,154,181,.4);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,154,181,.5);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

/* Hero wordmark */
.hero-wordmark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  letter-spacing: .1em;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* Scroll */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-track {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollAnim 2s var(--ease-out) infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ═══════════════════════════════
   CONCEPT
═══════════════════════════════ */
.concept {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.concept-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.concept-en {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--brand-pale);
  letter-spacing: .1em;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
}
.concept-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.concept-body {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 2.2;
}
.concept-body strong {
  color: var(--brand-dark);
  font-weight: 700;
}


/* ═══════════════════════════════
   PHILOSOPHY
═══════════════════════════════ */
.philosophy {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #0a1e2c 0%, #102d40 45%, #153d55 100%);
}
.philosophy-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 20%, rgba(74,154,181,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(45,122,150,.1) 0%, transparent 60%);
}

.philosophy-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Manifesto */
.manifesto {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 80px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  backdrop-filter: blur(8px);
}
.manifesto-quote {
  font-size: 2rem;
  color: var(--brand-light);
  opacity: .4;
  margin-bottom: 28px;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.manifesto-body p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 2;
  font-family: var(--serif);
}
.manifesto-body strong {
  color: var(--white);
  font-weight: 700;
}
.manifesto-sign {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sign-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.sign-role {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* Beliefs */
.beliefs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.belief-item {
  padding: 48px 40px;
  background: rgba(255,255,255,.03);
  transition: background .3s var(--ease);
  border-right: 1px solid rgba(255,255,255,.07);
}
.belief-item:last-child { border-right: none; }
.belief-item:hover { background: rgba(255,255,255,.07); }
.belief-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(74,154,181,.2);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.belief-item h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.belief-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
}


/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  transition: background .3s var(--ease);
}
.service-card:hover { background: #fafeff; }
.service-card--featured .service-card-inner {
  border-top: 3px solid var(--brand);
}

.service-card-inner {
  padding: 48px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-pale);
  line-height: 1;
}
.service-icon {
  font-size: 1.6rem;
  color: var(--brand-dark);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.service-card h3 span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.service-card > .service-card-inner > p {
  font-size: .9rem;
  color: var(--ink-light);
  line-height: 1.85;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  flex: 1;
}
.service-card li {
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-card li::before {
  content: '—';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ═══════════════════════════════
   TRACK RECORD
═══════════════════════════════ */
.track-record { background: var(--white); }

/* Numbers */
.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.number-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background .3s var(--ease);
}
.number-item:last-child { border-right: none; }
.number-item:hover { background: var(--surface); }
.number-val {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1;
}
.number-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}
.number-label {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
.number-label small {
  display: block;
  font-size: .72rem;
  color: var(--border);
  margin-top: 4px;
  color: var(--muted);
  opacity: .7;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,90,114,.1);
}
.case-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 50px;
  width: fit-content;
}
.case-tag--bank { background: rgba(45,122,150,.1); color: var(--brand-dark); }
.case-tag--buy  { background: rgba(14,133,133,.1); color: #0e8585; }
.case-tag--sell { background: rgba(26,90,114,.08); color: var(--brand-deep); }

.case-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
}
.case-card p {
  font-size: .875rem;
  color: var(--ink-light);
  line-height: 1.85;
  flex: 1;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-pale);
  padding: 3px 10px;
  border-radius: 50px;
}
.cases-note {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 8px;
}


/* ═══════════════════════════════
   FLOW
═══════════════════════════════ */
.flow { background: var(--surface); }

.flow-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.flow-step-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.flow-step-body {
  padding: 0 16px;
}
.flow-step-body h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.flow-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--brand);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
}
.flow-step-body p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.8;
}
.flow-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-light), var(--border));
  margin-top: 27px;
  position: relative;
}
.flow-connector::after {
  content: '';
  position: absolute;
  right: -1px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--border);
}


/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

/* Profile card */
.about-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.about-photo-placeholder {
  background: linear-gradient(145deg, var(--ink-mid), var(--brand-deep));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.15);
}
.about-card-body {
  padding: 32px;
  background: var(--white);
}
.about-en-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.about-jp-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-role {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.about-company-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-company-info p {
  font-size: .82rem;
  color: var(--ink-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.about-company-info i {
  color: var(--brand);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Content */
.about-content-col { padding-top: 8px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.95;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-history {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.history-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.history-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-dark);
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--brand-pale);
}
.history-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.history-item p {
  font-size: .875rem;
  color: var(--ink-light);
  line-height: 1.85;
}


/* ═══════════════════════════════
   NEWS
═══════════════════════════════ */
.news { background: var(--surface); }

.news-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.news-item time {
  font-size: .8rem;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 72px;
}
.news-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-badge--new  { background: #fde8e8; color: #c53030; }
.news-badge--info { background: var(--brand-pale); color: var(--brand-dark); }
.news-badge--col  { background: rgba(14,133,133,.08); color: #0e8585; }

.news-item a {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
  transition: color .2s;
  line-height: 1.5;
}
.news-item a:hover { color: var(--brand-dark); }


/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #081520 0%, #0e2637 50%, #153d55 100%);
}
.contact-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 85% 25%, rgba(74,154,181,.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 10% 80%, rgba(45,122,150,.1) 0%, transparent 60%);
}
.contact-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,154,181,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,154,181,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.contact-left { padding-top: 8px; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}
.contact-title span {
  color: var(--brand-light);
}
.contact-lead {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 2;
  margin-bottom: 48px;
}
.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.promise-item > i {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(74,154,181,.15);
  border: 1px solid rgba(74,154,181,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light);
  font-size: .95rem;
  flex-shrink: 0;
}
.promise-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.promise-item p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* Form */
.contact-right { position: relative; z-index: 2; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.form-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.req {
  font-size: .65rem;
  background: #fde8e8;
  color: #c53030;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .875rem;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(74,154,181,.12);
  background: var(--white);
}
.form-group input.is-error,
.form-group select.is-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.08);
}
.form-error {
  font-size: .72rem;
  color: #e53e3e;
  min-height: 16px;
  display: block;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.75;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.form-check input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.form-check label {
  font-size: .82rem;
  color: var(--ink-light);
  cursor: pointer;
  line-height: 1.55;
}
.form-check label a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--brand-dark);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(45,122,150,.4);
}
.btn-submit:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,122,150,.5);
}
.btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 18px;
}
.form-success i {
  font-size: 1.4rem;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-success strong {
  display: block;
  font-size: .9rem;
  color: #15803d;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-success p {
  font-size: .82rem;
  color: #166534;
  line-height: 1.6;
}


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
  background: #060f16;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
  background: rgba(255,255,255,.04);
}
.footer-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-name span {
  font-weight: 300;
}
.footer-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
  letter-spacing: .04em;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--brand-light); }

.footer-info {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.2); }
.footer-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.2);
  transition: color .2s;
}
.footer-links a:hover { color: var(--brand-light); }


/* ═══════════════════════════════
   BACK TO TOP
═══════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--brand-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(45,122,150,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .3s var(--ease);
  z-index: 999;
  border: none;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.back-to-top:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,122,150,.5);
}


/* ═══════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-aos].aos-animate {
  opacity: 1; transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

[data-aos-delay="60"]  { transition-delay: .06s; }
[data-aos-delay="80"]  { transition-delay: .08s; }
[data-aos-delay="120"] { transition-delay: .12s; }
[data-aos-delay="160"] { transition-delay: .16s; }
[data-aos-delay="180"] { transition-delay: .18s; }
[data-aos-delay="240"] { transition-delay: .24s; }
[data-aos-delay="260"] { transition-delay: .26s; }


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 88px; }
  .services-grid    { grid-template-columns: 1fr; }
  .numbers-row      { grid-template-columns: repeat(2, 1fr); }
  .numbers-row .number-item:nth-child(2) { border-right: none; }
  .cases-grid       { grid-template-columns: 1fr 1fr; }
  .about-layout     { grid-template-columns: 1fr; gap: 48px; }
  .about-card       { position: static; max-width: 440px; }
  .contact-layout   { grid-template-columns: 1fr; gap: 48px; }
  .beliefs          { grid-template-columns: 1fr; }
  .belief-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .belief-item:last-child { border-bottom: none; }
  .flow-track       { flex-direction: column; align-items: center; gap: 0; }
  .flow-connector   { width: 2px; height: 36px; background: linear-gradient(to bottom, var(--brand-light), var(--border)); margin: 0; }
  .flow-connector::after { border-color: transparent; border-top-color: var(--border); right: -4px; top: auto; bottom: -1px; }
  .flow-step        { max-width: 480px; width: 100%; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --section-py: 72px; }

  .pc-only { display: none; }
  .sp-only { display: block; }

  .hamburger { display: flex; }

  .global-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    background: rgba(8,21,32,.98);
    backdrop-filter: blur(20px);
    padding: calc(var(--header-h) + 28px) 24px 32px;
    z-index: 1000;
    transition: right .4s var(--ease);
    border-left: 1px solid rgba(255,255,255,.07);
  }
  .global-nav.open { right: 0; }
  .nav-overlay { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 13px 14px; font-size: .95rem; }
  .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; justify-content: center; }

  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero-wordmark { font-size: 80px; right: -20px; opacity: .5; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn { justify-content: center; }

  .concept { padding: 60px 0; }

  .manifesto { padding: 36px 28px; }

  .numbers-row { grid-template-columns: 1fr 1fr; }

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

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-info br { display: none; }

  .back-to-top { bottom: 20px; right: 20px; }

  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .numbers-row { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--border); }
  .number-item:last-child { border-bottom: none; }
  .contact-form { padding: 24px 18px; }
  .manifesto { padding: 28px 20px; }
  .fee-inner { gap: 48px; }
  .fee-cards { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════
   HERO FEE BADGE
═══════════════════════════════ */
.hero-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.hero-fee-badge i {
  color: #6ee7b7;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-fee-badge strong {
  color: var(--white);
  font-weight: 700;
}


/* ═══════════════════════════════
   FEE SECTION
═══════════════════════════════ */
.fee-section {
  background: var(--ink);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.fee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 30%, rgba(74,154,181,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 70%,  rgba(74,154,181,.07) 0%, transparent 60%);
  pointer-events: none;
}

.fee-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.fee-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.fee-lead {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 2;
  margin-bottom: 20px;
}
.fee-lead--em {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  font-family: var(--serif);
  border-left: 3px solid var(--brand);
  padding-left: 18px;
  margin-top: 28px;
}
.fee-lead--em strong {
  color: var(--white);
  font-weight: 700;
}

/* Right – Cards */
.fee-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fee-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fee-card--no {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.fee-card--yes {
  background: rgba(74,154,181,.12);
  border: 1px solid rgba(74,154,181,.3);
  position: relative;
  overflow: hidden;
}
.fee-card--yes::before {
  content: 'NEO FAIR';
  position: absolute;
  top: -14px; right: -10px;
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 600;
  color: rgba(74,154,181,.08);
  letter-spacing: .08em;
  pointer-events: none;
  white-space: nowrap;
}

.fee-card-icon {
  font-size: 1.4rem;
}
.fee-card--no  .fee-card-icon { color: rgba(255,255,255,.2); }
.fee-card--yes .fee-card-icon { color: #6ee7b7; }

.fee-card h3 {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: -4px;
}
.fee-card--yes h3 { color: var(--white); }

.fee-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fee-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  line-height: 1.5;
}
.fee-card--no li {
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.15);
}
.fee-card--no li i { color: rgba(255,80,80,.4); font-size: .75rem; margin-top: 3px; flex-shrink: 0; }
.fee-card--yes li { color: rgba(255,255,255,.85); }
.fee-card--yes li i { color: #6ee7b7; font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.fee-card--yes li strong { color: var(--white); font-weight: 700; }

.fee-note {
  margin-top: 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .fee-inner { grid-template-columns: 1fr; gap: 56px; }
  .fee-title { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  .hero-fee-badge { font-size: .8rem; padding: 8px 16px; }
  .fee-cards { grid-template-columns: 1fr; }
  .fee-card { padding: 24px 20px; }
}
