/* ============================================================
   スキルマーケット紹介 — さいたひと
   - 親しみやすい青系パステル
   - 丸み・手書き風アクセント
   - レスポンシブ（モバイルファースト）
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  /* Brand blues */
  --blue-900: #1E5B86;
  --blue-700: #2E7DB0;
  --blue-500: #4FA8E0;     /* primary */
  --blue-400: #7FC0E8;
  --blue-300: #A8D5F0;
  --blue-200: #CCE6F7;
  --blue-100: #E5F2FB;
  --blue-50:  #F2F8FD;

  /* Warm accent */
  --orange-500: #FFA94D;
  --orange-300: #FFD4A1;
  --orange-100: #FFEEDB;

  /* Neutrals */
  --ink-900: #1F2A37;
  --ink-700: #3F4A5A;
  --ink-500: #6B7785;
  --ink-300: #B7BFCC;
  --ink-100: #E6EAF0;
  --bg:      #FBFDFF;
  --white:   #FFFFFF;

  /* Status */
  --green-500: #4CAF7B;
  --green-100: #E1F4E9;

  /* Type */
  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-num: "Plus Jakarta Sans", var(--font-jp);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(31, 91, 134, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 91, 134, 0.10);
  --shadow-lg: 0 16px 40px rgba(31, 91, 134, 0.14);

  /* Layout */
  --container: 1080px;
  --gutter: 20px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 72px 0; position: relative; }
@media (max-width: 720px) { section { padding: 56px 0; } }

/* ---------- Decorative blobs / dots ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.blob.b1 { width: 280px; height: 280px; background: var(--blue-200); top: -80px; left: -80px; }
.blob.b2 { width: 220px; height: 220px; background: var(--orange-100); bottom: -60px; right: -40px; }

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--blue-200) 1.2px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 253, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-100);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue-900);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  display: grid; place-items: center;
  color: white;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-size: 16px; }
.brand-sub { font-size: 11px; color: var(--ink-500); font-weight: 500; display: block; line-height: 1; margin-top: 2px;}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink-700);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--blue-100); color: var(--blue-700); }
.nav-links .cta {
  background: var(--blue-500);
  color: white;
  font-weight: 700;
}
.nav-links .cta:hover { background: var(--blue-700); color: white; }

@media (max-width: 720px) {
  .nav-links a:not(.cta) { display: none; }
  .brand-name { font-size: 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 64px;
  padding-bottom: 96px;
  background:
    radial-gradient(ellipse at top right, var(--blue-100), transparent 60%),
    radial-gradient(ellipse at bottom left, var(--orange-100), transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1.5px solid var(--blue-200);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }

.hero h1 {
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0 16px;
  letter-spacing: 0.01em;
}
.hero h1 .marker {
  background: linear-gradient(transparent 60%, var(--orange-300) 60%);
  padding: 0 4px;
}
.hero h1 .blue-marker {
  background: linear-gradient(transparent 60%, var(--blue-200) 60%);
  padding: 0 4px;
}
.hero p.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-700);
  margin: 0 0 28px;
  max-width: 520px;
}
@media (max-width: 880px) { .hero p.lead { margin-left: auto; margin-right: auto; } }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 880px) { .hero-cta { justify-content: center; } }

/* Profile card on the right */
.profile-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
  position: relative;
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--blue-200), var(--orange-100));
  border-radius: calc(var(--r-xl) + 8px);
  z-index: -1;
  opacity: 0.5;
}
.profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.avatar-wrap {
  position: relative;
  width: 96px; height: 96px;
  flex-shrink: 0;
}
.avatar-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-100), var(--orange-100));
  z-index: 0;
}
.avatar-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
  background: white;
}
.profile-name { font-weight: 700; font-size: 20px; color: var(--blue-900); margin: 0; }
.profile-role { font-size: 13px; color: var(--ink-500); margin: 4px 0 0; }
.profile-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.profile-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px;
  background: var(--blue-100); color: var(--blue-700);
  border-radius: var(--r-pill);
}
.profile-meta {
  border-top: 1px dashed var(--blue-200);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}
.profile-meta dl { display: grid; grid-template-columns: 88px 1fr; gap: 10px; margin: 0; font-size: 13px;}
.profile-meta dt { color: var(--ink-500); font-weight: 600; }
.profile-meta dd { margin: 0; color: var(--ink-700); line-height: 1.7;}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 6px 16px rgba(79, 168, 224, 0.35);
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(79, 168, 224, 0.45);
}
.btn-ghost {
  background: white;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
}
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-400); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-500);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.sec-head h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink-900);
  line-height: 1.4;
}
.sec-head p {
  color: var(--ink-500);
  margin: 0 auto;
  max-width: 600px;
  font-size: 15px;
}
.wave-divider {
  display: block;
  margin: 16px auto 0;
  color: var(--blue-300);
}

/* ============================================================
   PROFILE DETAIL
   ============================================================ */
.profile-section { background: var(--white); }
.profile-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .profile-detail { grid-template-columns: 1fr; } }

.info-card {
  background: var(--blue-50);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1.5px solid var(--blue-100);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.info-card .ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: white;
  display: grid; place-items: center;
  color: var(--blue-500);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
}
.info-card ul {
  margin: 0; padding: 0; list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.info-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.65;
}
.info-card li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-section {
  background: linear-gradient(180deg, var(--blue-50), var(--white));
  position: relative;
  overflow: hidden;
}
.pain-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pain-list { grid-template-columns: 1fr; } }

.pain-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  border: 2px solid var(--blue-100);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}
.pain-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--orange-500);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-num);
  box-shadow: 0 4px 10px rgba(255, 169, 77, 0.4);
}
.pain-card .ico {
  width: 64px; height: 64px;
  margin: 8px auto 16px;
  background: var(--blue-100);
  border-radius: 20px;
  display: grid; place-items: center;
  color: var(--blue-700);
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.pain-card p {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.7;
}
.pain-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
}
.pain-cta .arrow {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange-500);
  font-size: 24px;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: white; position: relative; overflow: hidden; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.svc-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.svc-banner {
  height: 14px;
  background: var(--blue-500);
}
.svc-card.online .svc-banner { background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); }
.svc-card.offline .svc-banner { background: linear-gradient(90deg, var(--orange-500), var(--orange-300)); }

.svc-mode {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: white;
  border-radius: var(--r-pill);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.svc-card.offline .svc-mode { color: var(--orange-500); }

.svc-cover {
  height: 160px;
  background: var(--blue-50);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.svc-card.offline .svc-cover { background: var(--orange-100); }
.svc-cover .pattern {
  position: absolute; inset: 0;
  opacity: 0.4;
}
.svc-cover .ico-big {
  position: relative;
  z-index: 1;
  width: 96px; height: 96px;
  background: white;
  border-radius: 28px;
  display: grid; place-items: center;
  color: var(--blue-500);
  box-shadow: var(--shadow-md);
}
.svc-card.offline .svc-cover .ico-big { color: var(--orange-500); }

.svc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.svc-tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 9px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--r-pill);
}
.svc-card.offline .svc-tag { background: var(--orange-100); color: #C97316; }
.svc-title {
  font-size: 18px; font-weight: 700;
  margin: 0;
  line-height: 1.45;
  color: var(--ink-900);
}
.svc-desc {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.7;
}

.svc-price-list {
  margin: 0;
  padding: 14px 0;
  display: grid;
  gap: 10px;
  border-top: 1px dashed var(--ink-100);
  border-bottom: 1px dashed var(--ink-100);
  list-style: none;
}
.svc-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
}
.svc-price-list .duration { color: var(--ink-700); font-weight: 600; white-space: nowrap; flex-shrink: 0;}
.svc-price-list .price {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--blue-900);
  font-size: 17px;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-price-list .price small { font-size: 11px; font-weight: 600; color: var(--ink-500); margin-left: 2px;}
.svc-card.offline .svc-price-list .price { color: #B45309; }

.svc-note {
  font-size: 11px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}
.svc-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  background: var(--blue-500);
  color: white;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s, transform 0.15s;
}
.svc-cta:hover { background: var(--blue-700); transform: translateY(-1px);}
.svc-card.offline .svc-cta { background: var(--orange-500); }
.svc-card.offline .svc-cta:hover { background: #E0863A; }

/* ============================================================
   FLOW (進め方)
   ============================================================ */
.flow-section {
  background: var(--blue-50);
  position: relative;
  overflow: hidden;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 880px) { .flow-list { grid-template-columns: 1fr; gap: 14px;} }

.flow-step {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  border: 1.5px solid var(--blue-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.flow-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md);}
.flow-step .step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue-500);
  margin-bottom: 6px;
}
.flow-step .step-num strong {
  font-family: var(--font-num);
  font-size: 28px;
  display: block;
  color: var(--blue-700);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
}
.flow-step h3 { font-size: 15px; font-weight: 700; margin: 14px 0 8px; color: var(--ink-900); }
.flow-step p { font-size: 12.5px; color: var(--ink-500); margin: 0; line-height: 1.7; }
.flow-step .ico {
  width: 52px; height: 52px;
  margin: 0 auto;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: grid; place-items: center;
}

/* arrow between steps on desktop */
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 14px; height: 14px;
  border-top: 2px solid var(--blue-300);
  border-right: 2px solid var(--blue-300);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
@media (max-width: 880px) {
  .flow-step:not(:last-child)::after {
    top: auto; right: 50%;
    bottom: -10px; transform: translateX(50%) rotate(135deg);
  }
}

/* ============================================================
   VOICES
   ============================================================ */
.voices-section { background: white; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .voices-grid { grid-template-columns: 1fr; } }
.voice-card {
  background: var(--blue-50);
  padding: 28px;
  border-radius: var(--r-lg);
  position: relative;
  border: 1.5px solid var(--blue-100);
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: -8px; left: 18px;
  font-size: 70px;
  color: var(--blue-300);
  font-family: serif;
  line-height: 1;
}
.voice-stars { color: var(--orange-500); margin-bottom: 8px; font-size: 14px; letter-spacing: 0.1em; }
.voice-text {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.85;
  margin: 0 0 16px;
  position: relative;
}
.voice-meta {
  display: flex; align-items: center; gap: 10px;
  border-top: 1px dashed var(--blue-200);
  padding-top: 14px;
}
.voice-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-300);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.voice-name { font-weight: 700; font-size: 13px; color: var(--ink-900); margin: 0;}
.voice-role { font-size: 11px; color: var(--ink-500); margin: 0;}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: linear-gradient(180deg, var(--white), var(--blue-50));
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: white;
  border-radius: var(--r-md);
  border: 1.5px solid var(--blue-100);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--blue-300); box-shadow: var(--shadow-sm);}
.faq-item summary {
  padding: 18px 24px 18px 60px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--blue-500);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-num);
  font-weight: 700;
}
.faq-item summary .toggle {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blue-500);
  transition: transform 0.25s;
}
.faq-item[open] summary .toggle { transform: rotate(180deg); }
.faq-body {
  padding: 0 24px 22px 60px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.85;
  position: relative;
}
.faq-body::before {
  content: "A";
  position: absolute;
  left: 18px; top: 0;
  width: 32px; height: 32px;
  background: var(--orange-100);
  color: var(--orange-500);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-num);
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background:
    radial-gradient(ellipse at top left, var(--blue-100), transparent 50%),
    radial-gradient(ellipse at bottom right, var(--orange-100), transparent 50%),
    var(--blue-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: var(--r-xl);
  padding: 48px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
  position: relative;
}
.contact-card h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 12px;
  color: var(--ink-900);
  line-height: 1.5;
}
.contact-card p {
  color: var(--ink-500);
  margin: 0 0 32px;
  font-size: 15px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  text-align: left;
  align-items: center;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
.qr-block {
  background: white;
  border-radius: var(--r-lg);
  padding: 12px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--blue-200);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.qr-block:hover {
  transform: translateY(-2px);
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}
.qr-block img { width: 100%; height: auto; border-radius: 8px; display: block; }
.qr-caption {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-700);
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.contact-links {
  display: grid;
  gap: 10px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--blue-200);
  border-radius: var(--r-md);
  background: white;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.contact-link:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateX(4px);
}
.contact-link .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-link .label { font-size: 12px; font-weight: 700; color: var(--ink-500); display: block; }
.contact-link .value { font-size: 14px; font-weight: 700; color: var(--ink-900); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 32px;
  text-align: center;
}
.site-footer .brand-name { color: white; }
.site-footer .copyright {
  font-size: 12px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .brand-mark {
  background: white;
  color: var(--blue-700);
}
.site-footer .brand {
  justify-content: center;
}

/* ============================================================
   SCROLL ANIMATIONS (CSS only)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 0.8s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.7s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
  .reveal-stagger > *:nth-child(2) { animation-delay: 0.08s; }
  .reveal-stagger > *:nth-child(3) { animation-delay: 0.16s; }
  .reveal-stagger > *:nth-child(4) { animation-delay: 0.24s; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none;}
}

/* Subtle floating animation for hero blob */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }
