/* =========================================================
   Growth innovation  Corporate Site
   ブランド: ブラック × グリーン × ホワイト
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --green: #34a63a;
  --green-2: #5ad35c;
  --green-dark: #268a2e;
  --green-light: #e8f6e8;
  --black: #0b0d0c;
  --black-2: #121917;
  --ink: #16302e;
  --text: #1a1d1c;
  --text-light: #5c6a67;
  --line: #e4eae8;
  --bg: #ffffff;
  --bg-soft: #f5f8f7;

  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Montserrat", var(--font);
  --max: 1140px;
  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(11, 13, 12, 0.12);
  --shadow-green: 0 14px 40px rgba(52, 166, 58, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* 英字見出し用ユーティリティ */
.en, .eyebrow, .section-title .en, .page-header .en, .card .icon, .btn-nav, .btn { font-family: var(--font-en); }
.gradient-text {
  background: linear-gradient(100deg, var(--green-2), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(11, 13, 12, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, height 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: rgba(11, 13, 12, 0.94); box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.logo:hover { text-decoration: none; }
.logo .logo-mark { width: 34px; height: 34px; transition: transform 0.5s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.06); }
.logo .logo-word { font-family: var(--font-en); font-size: 1.28rem; font-weight: 800; letter-spacing: 0.005em; }
.logo .logo-word .thin { font-weight: 500; }

.header-right { display: flex; align-items: center; gap: 30px; }
.global-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.global-nav a {
  color: rgba(255,255,255,0.82); font-weight: 500; font-size: 0.94rem; padding: 6px 0; position: relative;
}
.global-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-2), var(--green)); transition: width 0.28s;
}
.global-nav a:hover { color: #fff; text-decoration: none; }
.global-nav a:hover::after, .global-nav a.is-current::after { width: 100%; }
.global-nav a.is-current { color: #fff; }

.btn-nav {
  display: inline-block; background: var(--green); color: #fff;
  padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 0.88rem;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.btn-nav:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-green); }

.nav-toggle { display: none; }

/* ===== Buttons ===== */
.btn {
  position: relative; overflow: hidden; display: inline-block; padding: 16px 40px; border-radius: 999px;
  font-weight: 700; cursor: pointer; transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s;
}
.btn:hover::after { left: 140%; }
.btn-primary { background: linear-gradient(100deg, var(--green-2), var(--green)); color: #fff; box-shadow: var(--shadow-green); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn-ghost { background: #fff; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); box-shadow: var(--shadow); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: 150px 0 160px; background: var(--black);
}
.hero .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; pointer-events: none; }
.hero .blob-1 { width: 520px; height: 520px; background: var(--green); top: -160px; right: -120px; animation: float1 14s ease-in-out infinite; }
.hero .blob-2 { width: 420px; height: 420px; background: #1f7a3a; bottom: -180px; left: -120px; animation: float2 18s ease-in-out infinite; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 78%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 26px;
  padding: 7px 16px; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.hero .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 10px var(--green-2); }
.hero h1 { font-family: var(--font-en); font-weight: 900; font-size: 3.4rem; line-height: 1.28; letter-spacing: 0.01em; margin: 0 0 22px; }
.hero h1 .jp { font-family: var(--font); }
.hero p { font-size: 1.12rem; max-width: 640px; margin: 0 auto 40px; opacity: 0.82; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Marquee (キーワードの流れる帯) */
.marquee { background: var(--black-2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; padding: 18px 0; }
.marquee-track { display: inline-flex; gap: 48px; white-space: nowrap; animation: marquee 26s linear infinite; font-family: var(--font-en); font-weight: 800; font-size: 1.05rem; color: rgba(255,255,255,0.5); }
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::before { content: "✦"; color: var(--green); }

/* ===== Stats band ===== */
.stats { background: var(--black); color: #fff; padding: 64px 0; }
.stats .grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat .num { font-family: var(--font-en); font-weight: 900; font-size: 2.8rem; line-height: 1; }
.stat .num small { font-size: 1.2rem; }
.stat .label { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px; }

/* ===== Page header ===== */
.page-header {
  position: relative; overflow: hidden; text-align: center; color: #fff; padding: 108px 0 92px; background: var(--black);
}
.page-header .blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: var(--green); filter: blur(80px); opacity: 0.4; top: -180px; right: -80px; }
.page-header::after {
  content: attr(data-watermark); position: absolute; left: 50%; top: 54%; transform: translate(-50%,-50%);
  font-family: var(--font-en); font-weight: 900; font-size: 8rem; color: rgba(255,255,255,0.04); white-space: nowrap; pointer-events: none;
}
.page-header > .container { position: relative; z-index: 2; }
.page-header .en { color: var(--green-2); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; }
.page-header h1 { font-family: var(--font); margin: 12px 0 0; font-size: 2.2rem; font-weight: 900; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; }
.section.bg-soft { background: var(--bg-soft); }
.section.bg-dark { background: var(--black); color: #fff; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title .en { display: block; color: var(--green); font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 800; margin-bottom: 10px; }
.section-title h2 { font-size: 2rem; margin: 0; font-weight: 900; letter-spacing: 0.02em; }
.section.bg-dark .section-title h2 { color: #fff; }
.lead { text-align: center; max-width: 760px; margin: 0 auto 48px; color: var(--text-light); }
.section.bg-dark .lead { color: rgba(255,255,255,0.7); }

/* ===== Grid / Cards ===== */
.grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--green-2), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-light), #d6efd7); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin-bottom: 20px;
}
.card h3 { margin: 0 0 12px; font-size: 1.2rem; font-weight: 700; }
.card p { margin: 0; color: var(--text-light); font-size: 0.95rem; }
/* ダークカード（bg-dark セクション内） */
.section.bg-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section.bg-dark .card h3 { color: #fff; }
.section.bg-dark .card p { color: rgba(255,255,255,0.68); }
.section.bg-dark .card .icon { background: rgba(52,166,58,0.18); color: var(--green-2); }

/* ===== Info table ===== */
.info-table { width: 100%; border-collapse: collapse; max-width: 880px; margin: 0 auto; }
.info-table th, .info-table td { text-align: left; padding: 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 220px; font-weight: 700; white-space: nowrap; color: var(--ink); }
.info-table tr:first-child th, .info-table tr:first-child td { border-top: 1px solid var(--line); }
.todo { color: var(--green-dark); background: var(--green-light); font-size: 0.76rem; padding: 2px 8px; border-radius: 4px; margin-left: 8px; white-space: nowrap; }

/* ===== News ===== */
.news-list { list-style: none; margin: 0 auto; padding: 0; max-width: 780px; }
.news-list li { display: flex; gap: 24px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--line); transition: background 0.2s; border-radius: 8px; }
.news-list li:hover { background: var(--bg-soft); }
.news-list time { font-family: var(--font-en); color: var(--text-light); font-weight: 700; white-space: nowrap; }
.news-list .tag { background: var(--green-light); color: var(--green-dark); font-size: 0.74rem; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.news-list a { color: var(--text); }

/* ===== Service (詳細カード) ===== */
.service-card { padding: 44px 40px; }
.service-card .num { font-family: var(--font-en); font-weight: 900; font-size: 1.05rem; color: var(--green); letter-spacing: 0.1em; margin-bottom: 14px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.feature-list { list-style: none; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); }
.feature-list li { position: relative; padding: 8px 0 8px 30px; color: var(--text); font-size: 0.95rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 16px; height: 9px;
  border-left: 3px solid var(--green); border-bottom: 3px solid var(--green); transform: rotate(-45deg);
}
.section.bg-dark .feature-list { border-top-color: rgba(255,255,255,0.14); }
.section.bg-dark .feature-list li { color: rgba(255,255,255,0.82); }

/* ===== Price ===== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.price { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 24px 32px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price.featured { border: 2px solid var(--green); box-shadow: var(--shadow-green); }
.price .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(100deg, var(--green-2), var(--green)); color: #fff; font-family: var(--font-en); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.price-cap { font-weight: 700; color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.price-num { font-family: var(--font-en); font-weight: 900; font-size: 3rem; line-height: 1; color: var(--ink); }
.price-num small { font-size: 1.05rem; font-weight: 700; margin-left: 4px; }
.price-note { color: var(--text-light); font-size: 0.85rem; margin-top: 12px; }

/* ===== Compare table ===== */
.compare-wrap { max-width: 880px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--font-en); font-size: 0.95rem; background: var(--bg-soft); font-weight: 700; }
.compare-table thead th.col-us { background: linear-gradient(135deg, var(--green-2), var(--green)); color: #fff; border-radius: 12px 12px 0 0; font-family: var(--font); }
.compare-table td.col-us { background: rgba(52,166,58,0.08); font-weight: 700; color: var(--text); }
.compare-table th:first-child, .compare-table td:first-child { color: var(--text-light); font-weight: 700; white-space: nowrap; }
.compare-table .mark-o { color: var(--green-dark); font-weight: 800; }
.compare-table .mark-x { color: #c0392b; font-weight: 800; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:last-child td.col-us { border-radius: 0 0 12px 12px; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 56px 22px 24px; font-weight: 700; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; font-family: var(--font-en); color: var(--green); font-weight: 800; margin-right: 12px; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--green); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 24px 24px 52px; color: var(--text-light); position: relative; }
.faq-item .faq-a::before { content: "A"; font-family: var(--font-en); color: var(--text); font-weight: 800; position: absolute; left: 24px; top: 0; }

/* ===== MVV (Mission / Vision) ===== */
.mvv { max-width: 880px; margin: 0 auto; }
.mvv-block { text-align: center; }
.mvv-block + .mvv-block { margin-top: 48px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.14); }
.mvv-block .en { display: block; color: var(--green-2); font-family: var(--font-en); font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px; }
.mvv-block .statement { color: #fff; font-size: 2.1rem; font-weight: 900; line-height: 1.45; margin: 0 0 16px; }
.mvv-block p:not(.statement) { color: rgba(255,255,255,0.72); margin: 0; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Value cards */
.value-card .v-num { font-family: var(--font-en); font-weight: 900; font-size: 0.9rem; color: var(--green); letter-spacing: 0.1em; }
.value-card h3 { font-family: var(--font-en); margin: 8px 0 12px; font-size: 1.3rem; }

/* ===== Featured service ===== */
.featured-service { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 40px; align-items: center; padding: 44px; }
.featured-service .price { margin: 0; }
.featured-service .btn { margin-top: 26px; }
@media (max-width: 768px) { .featured-service { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; } }

/* Other business (概要のみ) */
.biz-card { text-align: left; }
.biz-card .tag-soon { display: inline-block; background: var(--bg-soft); color: var(--text-light); border: 1px solid var(--line); font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-top: 16px; }

/* ===== Steps ===== */
.steps .card .icon { background: linear-gradient(135deg, var(--green-2), var(--green)); color: #fff; }

/* ===== CTA ===== */
.cta {
  position: relative; overflow: hidden; text-align: center; color: #fff; padding: 92px 0; background: var(--black);
}
.cta .blob { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: var(--green); filter: blur(90px); opacity: 0.4; top: -180px; left: 10%; }
.cta > .container { position: relative; z-index: 2; }
.cta h2 { margin: 0 0 16px; font-size: 1.9rem; font-weight: 900; }
.cta p { margin: 0 0 34px; opacity: 0.82; }

/* ===== Contact form ===== */
.form { max-width: 720px; margin: 0 auto; }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 8px; }
.form-row .req { color: #fff; background: var(--green); font-size: 0.72rem; padding: 1px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; font-family: var(--font-en); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 15px 16px; font-family: inherit; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(52,166,58,0.15);
}
.form-row textarea { resize: vertical; min-height: 170px; }
.form-note { font-size: 0.85rem; color: var(--text-light); }
.form-submit { text-align: center; margin-top: 34px; }
.form-privacy { display: flex; align-items: flex-start; gap: 10px; justify-content: center; margin-bottom: 24px; font-size: 0.9rem; color: var(--text-light); }
.form-privacy input { width: auto; margin-top: 6px; }

/* ===== Contact info ===== */
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.contact-info .card { text-align: center; }
.contact-info .icon { margin: 0 auto 20px; }

/* ===== Footer ===== */
.site-footer { position: relative; overflow: hidden; background: var(--black); color: #b9c4c1; padding: 66px 0 28px; font-size: 0.92rem; }
.site-footer::after {
  content: "Growth innovation"; position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  font-family: var(--font-en); font-weight: 900; font-size: 8rem; color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none;
}
.footer-top { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin: 16px 0 0; color: #869390; max-width: 340px; font-size: 0.88rem; }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 13px; }
.footer-nav a { color: #b9c4c1; }
.footer-nav a:hover { color: #fff; }
.footer-nav .head { color: var(--green-2); font-family: var(--font-en); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; color: #6f7c79; font-size: 0.8rem; font-family: var(--font-en); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Keyframes ===== */
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hero .blob, .marquee-track { animation: none; }
  .reveal { transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid, .grid.cols-2, .contact-info { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  .header-right {
    position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,13,12,0.98); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 8px 24px 20px; display: none;
  }
  .header-right.is-open { display: flex; }
  .global-nav ul { flex-direction: column; gap: 0; }
  .global-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .global-nav a { display: block; padding: 15px 0; }
  .btn-nav { text-align: center; margin-top: 16px; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }
  .hero { padding: 96px 0 100px; }
  .hero h1 { font-size: 2.1rem; }
  .page-header::after { font-size: 4.5rem; }
  .section { padding: 68px 0; }
  .info-table th { width: 120px; padding: 14px; }
  .info-table td { padding: 14px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .site-footer::after { font-size: 4rem; }
}
