/* ===================================================
   NextWedge — style.css
   企業カラー: Primary Navy #1B2A48 / Soft Rose #C06A84
   =================================================== */

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

:root {
  --navy:         #1B2A48;
  --navy-dark:    #111D33;
  --navy-mid:     #243460;
  --rose:         #C06A84;
  --rose-dark:    #A05570;
  --rose-light:   #FAF0F4;   /* 白に近いソフトローズ */
  --rose-pale:    #FDF8FA;
  --rose-hero:    rgba(240,210,225,0.09); /* ヒーローN形状用 */
  --accent:       var(--rose);
  --accent-hover: var(--rose-dark);
  --accent-light: var(--rose-light);
  --white:        #FFFFFF;
  --bg-gray:      #F5F4F6;
  --bg-off:       #FAFAFA;
  --text:         #1B2A48;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --border:       #DDD8DC;
  --shadow-sm:    0 1px 8px rgba(27,42,72,0.07);
  --shadow:       0 4px 20px rgba(27,42,72,0.09);
  --shadow-md:    0 8px 36px rgba(27,42,72,0.13);
  --radius:       8px;
  --max-w:        1100px;
  --trans:        0.22s ease;
  --font:         'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'YuGothic', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.nowrap { white-space: nowrap; }

/* Honeypot: スパムボット対策（視覚的・スクリーンリーダー的に非表示） */
.hnypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav { padding: 0 40px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--text-mid);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: 8px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--navy);
  transition: background var(--trans), color var(--trans), border-color var(--trans) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #1B2A48 0%,
    #1B2A48 55%,
    #26183A 70%,
    #5E2A48 86%,
    #C06A84 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 40px 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 55%, rgba(255,255,255,0.03) 55%),
    linear-gradient(118deg, transparent 65%, rgba(255,255,255,0.015) 65%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 130px 420px;
  border-color: transparent transparent rgba(255,255,255,0.06) transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

/* PC専用改行 — スマホでは非表示 */
.br-pc { display: none; }
@media (min-width: 769px) { .br-pc { display: block; } }

.hero-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 2;
  margin-bottom: 22px;
  max-width: 580px;
}
.hero-tagline em {
  font-style: normal;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(40,99,175,0.6);
  padding-bottom: 1px;
}

.hero-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,0.72);
  line-height: 2.4;
  max-width: 560px;
  margin-bottom: 52px;
}
.hero-desc strong {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  text-align: center;
  line-height: 1;
}

.btn-hero {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  padding: 17px 44px;
  font-size: 15.5px;
}
.btn-hero:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,106,132,0.4);
}

.btn-contact {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-contact:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.15);
}

/* ===== Sections ===== */
.section { padding: 112px 0; }
.section-white   { background: var(--white); }
.section-gray    { background: var(--bg-gray); }
.section-navy    { background: var(--navy); }
.section-contact { background: var(--navy-dark); }

.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-label-inv { color: rgba(248,225,236,0.75); }

.section-heading {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.section-heading-inv { color: #fff; }

.section-lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ===== Prose (本文テキスト共通) ===== */
.prose {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prose p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
}
.prose-bordered p {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

/* ===== Checklist ===== */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
  max-width: 860px;
}
.checklist li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  padding-left: 30px;
  position: relative;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: var(--accent-light);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.checklist-close {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
}

/* ===== Stance (支援姿勢) ===== */
.stance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stance-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--trans), border-color var(--trans);
}
.stance-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.stance-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}

.stance-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.stance-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 2;
}

/* ===== Service ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.service-ai-note {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: center;
  opacity: 0.8;
}

/* ===== Service Accordion ===== */
.service-card.open {
  box-shadow: var(--shadow-md);
  transform: none;
}
.service-card.open:hover { transform: none; }
.service-card.open::before { opacity: 1; }

.service-detail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--text-mid);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.service-detail-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--rose-pale);
}
.service-detail-toggle .toggle-close { display: none; }
.service-card.open .service-detail-toggle .toggle-open { display: none; }
.service-card.open .service-detail-toggle .toggle-close { display: inline; }

.toggle-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.service-card.open .toggle-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}
.service-card.open .service-detail { max-height: 4000px; }

.detail-inner {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-section-hd {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.detail-en {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
}
.detail-sep { font-size: 11px; color: var(--border); }
.detail-ja {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
}

.detail-overview {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-list li {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.detail-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

/* Schedule Table */
.schedule-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(27,42,72,0.07);
  padding: 4px 12px 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.schedule-meta strong { font-weight: 700; }

.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  padding: 10px 14px;
  background: var(--bg-gray);
  border-radius: 6px;
  border-left: 3px solid var(--border);
  align-items: baseline;
}
.sch-phase {
  order: 1;
  color: #1FA6A0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.sch-dur {
  order: 2;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.sch-body {
  order: 3;
  color: var(--text-mid);
  font-size: 12.5px;
  line-height: 1.75;
  width: 100%;
  margin-top: 3px;
}

.schedule-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.65;
  opacity: 0.78;
}

/* ===== Process ===== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  align-self: stretch;
}

.step-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 44px;
  position: relative;
}
.process-arrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
}
.process-arrow::after {
  content: '';
  position: absolute;
  right: 7px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ===== Why NextWedge ===== */
.why-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  padding-top: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.55;
}

.why-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
}

/* ===== For Client ===== */
.client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 56px;
  max-width: 820px;
}
.client-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.client-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}

/* ===== Contact ===== */
.contact-body {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.contact-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
}

/* フォーム全体 */
.contact-form { max-width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

.required { color: var(--accent); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: #fff;
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(192,106,132,0.75);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(192,106,132,0.2);
}

.form-group input.error,
.form-group textarea.error { border-color: rgba(220,80,80,0.75); }

.error-msg {
  display: block;
  font-size: 12px;
  color: rgba(240,120,120,0.9);
  margin-top: 5px;
  min-height: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.form-submit:hover:not(:disabled) {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,106,132,0.4);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(192,106,132,0.15);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.8;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* Contact 2-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.contact-form-col .contact-body { max-width: none; }
.contact-form-col .contact-form { max-width: none; }

.consultation-examples {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  position: sticky;
  top: 80px;
}
.consultation-examples h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.consultation-examples ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultation-examples ul li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}
.consultation-examples ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding-top: 68px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr auto;
  gap: 48px 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  max-width: 220px;
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col-service ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col-service a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer-col-service a:hover { color: rgba(255,255,255,0.85); }

.footer-email {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
  display: block;
}
.footer-email:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 22px 40px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
}

/* ===== Responsive — 1024px ===== */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-arrow {
    height: 36px;
    padding-top: 0;
  }
  .process-arrow::before {
    width: 1px;
    height: 22px;
  }
  .process-arrow::after {
    right: auto;
    top: auto;
    bottom: 2px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid var(--accent);
    border-right: 1.5px solid var(--accent);
    transform: rotate(135deg);
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col-contact { grid-column: 1 / -1; }
}

/* ===== Responsive — 768px ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav        { padding: 0 20px; }
  .section    { padding: 72px 0; }
  .hero       { padding: 100px 20px 80px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 300;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 15px 24px;
    font-size: 14px;
  }
  .nav-cta {
    border-radius: 0;
    border: none;
    background: var(--bg-gray) !important;
    color: var(--navy) !important;
  }
  .nav-cta:hover {
    background: var(--border) !important;
  }

  .checklist    { grid-template-columns: 1fr; gap: 14px; }
  .stance-grid  { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .client-list  { grid-template-columns: 1fr; gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px; }
  .footer-col-contact { grid-column: auto; }
}

/* ===== Responsive — 480px ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .section-heading { font-size: 20px; margin-bottom: 32px; }
  .btn { padding: 12px 26px; font-size: 13.5px; }
  .service-card, .why-card, .stance-card { padding: 24px 18px; }
}
