:root {
  --navy:      #1B2168;
  --navy-dark: #12163F;
  --sky:       #29A9D6;
  --sky-soft:  #EAF4FA;
  --paper:     #FCFBF8;
  --cream:     #F3EFE7;
  --ink:       #23252E;
  --muted:     #6E6A62;
  --line:      #E7E1D5;
  --line-cool: #E4E7F0;
  --serif: 'Noto Serif JP', serif;
  --sans:  'Noto Sans JP', sans-serif;
  --display: 'Cormorant Garamond', serif;
  --label: 'Jost', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 780px; }

.text-center { text-align: center; }

/* Shared type accents */
.eyebrow {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
  margin: 0 0 18px;
}
.display-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(23px, 3.2vw, 33px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0;
}
.lead-text {
  color: var(--muted);
  font-size: 15.5px;
  margin: 28px 0 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,251,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(18,22,63,0.05);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { width: 46px; height: 46px; }
.brand-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.site-nav ul { display: flex; gap: 30px; }
.site-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.04em;
  transition: color .2s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--sky);
  transition: width .28s ease;
}
.site-nav a:hover { color: var(--sky); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--sky); }
.site-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  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: var(--navy); transition: .3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 24s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  4%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1); }
  29%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,22,63,0.45) 0%, rgba(18,22,63,0.65) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #9fe2fb;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-head { margin-bottom: 48px; }

.page-header {
  background: var(--navy-dark);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.page-header .eyebrow { color: var(--sky); margin-bottom: 12px; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Scroll Fade Animation */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Fixed CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy-dark);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 60px; }
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.mobile-cta-bar a.cta-tel { background: var(--navy); border-right: 1px solid rgba(255,255,255,0.15); }
.mobile-cta-bar a.cta-web { background: var(--sky); }
.mobile-cta-bar svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Reasons / Strengths */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .reason-grid { grid-template-columns: 1fr; } }
.reason-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(18,22,63,0.03);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(18,22,63,0.08);
  border-color: var(--sky);
}
.reason-num {
  font-family: var(--label);
  font-weight: 700;
  font-size: 38px;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.reason-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.5;
}
.reason-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

/* Works / Case Studies */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .works-grid { grid-template-columns: 1fr; } }
.works-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(18,22,63,0.03);
  transition: transform .3s ease, box-shadow .3s ease;
}
.works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(18,22,63,0.1);
}
.works-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.works-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.works-card:hover .works-img { transform: scale(1.06); }
.works-body { padding: 24px; }
.works-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sky);
  background: var(--sky-soft);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.works-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.5;
}
.works-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* News List */
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .2s ease;
}
.news-list li:hover { border-color: var(--sky); }
.news-list a {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 20px;
  font-size: 14.5px;
}
.news-date {
  font-family: var(--label);
  font-size: 13px;
  color: var(--muted);
}
.news-cat {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 2px;
}
.news-title { font-weight: 500; color: var(--ink); }

/* FAQ Accordion */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.active { border-color: var(--sky); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-question-text { display: flex; align-items: center; gap: 14px; }
.faq-q-badge { font-family: var(--label); font-size: 18px; font-weight: 700; color: var(--sky); flex-shrink: 0; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--paper);
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px 28px 24px;
  border-top: 1px solid var(--line-cool);
}
.faq-answer-inner { display: flex; gap: 14px; font-size: 14.5px; line-height: 1.85; color: var(--ink); }
.faq-a-badge { font-family: var(--label); font-size: 18px; font-weight: 700; color: var(--navy); flex-shrink: 0; }

/* Group & Home Links Grid */
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .group-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .group-grid { grid-template-columns: 1fr; } }
.group-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.group-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(18,22,63,0.06);
}
.group-card-label {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--sky);
}
.group-card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

/* Business list (rich cards) */
.biz-list {
  max-width: 980px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.biz-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.biz-item::before {
  content: attr(data-num);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 600;
  font-size: 130px;
  line-height: 1;
  color: var(--sky);
  opacity: 0.07;
  pointer-events: none;
}
.biz-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(18,22,63,0.12);
  border-color: transparent;
}
.biz-item-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease;
}
.biz-item:hover .biz-item-icon {
  background: var(--navy);
  color: #fff;
}
.biz-item-icon svg { width: 33px; height: 33px; }
.biz-item-main { position: relative; z-index: 1; }
.biz-item-num {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--sky);
}
.biz-item-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 7px 0 11px;
}
.biz-item-desc {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}
@media (max-width: 720px) {
  .biz-item { grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 22px; }
  .biz-item-icon { width: 56px; height: 56px; }
  .biz-item-icon svg { width: 26px; height: 26px; }
  .biz-item::before { font-size: 90px; right: 8px; }
  .biz-item-title { font-size: 18px; }
}

/* Contact Form - Clean & Robust Styling */
.contact-form-container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(18,22,63,0.04);
}
@media (max-width: 600px) {
  .contact-form-container { padding: 28px 20px; }
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}
.form-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-label .required {
  font-size: 11px;
  background: #e74c3c;
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 8px;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
.form-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  margin: 32px 0 24px;
}
.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form-submit-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.form-submit-btn:hover {
  background: var(--sky);
  box-shadow: 0 8px 24px rgba(41,169,214,0.3);
  transform: translateY(-2px);
}
.form-success-message {
  display: none; /* hidden by default */
  background: #eef9f2;
  border: 1px solid #a3e0b7;
  color: #1e6235;
  padding: 32px 24px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 24px;
}
.form-success-message h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.form-success-message p {
  margin: 0;
  font-size: 15px;
}

/* Info Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.info-table th, .info-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  text-align: left;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
  width: 180px;
  background: var(--cream);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.info-table td { color: var(--ink); }

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 10px; bottom: 10px; left: 120px;
  width: 2px;
  background: var(--line);
}
.timeline li {
  position: relative;
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline-year {
  flex-basis: 100px;
  font-family: var(--label);
  font-size: 22px;
  font-weight: 700;
  color: var(--sky);
  text-align: right;
  flex-shrink: 0;
}
.timeline-body {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  padding-top: 2px;
}
@media (max-width: 640px) {
  .timeline::before { left: 10px; }
  .timeline li { flex-direction: column; gap: 8px; padding-left: 30px; }
  .timeline-year { text-align: left; flex-basis: auto; font-size: 18px; }
}

/* Access Routes Guide */
.access-routes {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .access-routes { grid-template-columns: 1fr; } }
.route-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 4px;
}
.route-line {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 6px;
  display: block;
}
.route-station {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.route-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.access-body {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 860px) { .access-body { grid-template-columns: 1fr; gap: 28px; } }
.access-text { align-self: center; }
.access-text p { margin: 0 0 22px; font-size: 15px; }
.access-text strong {
  display: inline-block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 6px;
}
.access-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(18,22,63,0.08);
}
.access-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.partner-card:hover {
  border-color: var(--sky);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(18,22,63,0.06);
}

/* Section CTA Banner */
.section-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 16px;
}
.cta-desc { font-size: 15px; color: #c8cce0; margin: 0 0 32px; line-height: 1.8; }
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.btn-primary:hover {
  background: #1f94bd;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,169,214,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  transition: background .25s ease, transform .2s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #c8cce0;
  padding: 72px 24px 36px;
}
.footer-inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.footer-logo {
  width: 74px; height: 74px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-links a { font-size: 13px; color: #c8cce0; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: #7a7fa0;
  margin: 0;
}

/* Responsive Navigation for Mobile */
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  .brand-text { font-size: 16px; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(18,22,63,0.08);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 12px 24px 24px; gap: 2px; }
  .site-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-cool); }
  .site-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 75vh; padding: 80px 20px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* Mobile Fixed CTA Bar & Strict SVG Icon Sizing */
.mobile-cta-bar, .mobile-cta-bar * {
  display: none !important; /* Completely hide on PC / Widescreen */
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #12163F !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25) !important;
    height: 60px !important;
  }
  body {
    padding-bottom: 60px !important;
  }
  .mobile-cta-bar a {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center !important;
  }
  .mobile-cta-bar a.cta-tel {
    background: #1B2168 !important;
    border-right: 1px solid rgba(255,255,255,0.15) !important;
  }
  .mobile-cta-bar a.cta-web {
    background: #29A9D6 !important;
  }
  .mobile-cta-bar svg {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex-shrink: 0 !important;
  }
}


/* Partners Grid & Cards - Centered & Optimized Layout */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 960px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(18,22,63,0.03);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.partner-card .ib {
  display: inline-block;
  white-space: nowrap;
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  color: var(--sky);
  box-shadow: 0 12px 28px rgba(41,169,214,0.12);
}

/* Contact Form Beautiful & Centered Styling */
.contact-form-container {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 48px 44px;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(18, 22, 63, 0.06);
}
@media (max-width: 640px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}
.form-group {
  margin-bottom: 28px;
  text-align: left;
}
.form-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-label .required {
  font-size: 11px;
  background: #e74c3c;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(41, 169, 214, 0.18);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.form-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  margin: 36px 0 28px;
}
.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form-submit-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px 24px;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.form-submit-btn:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 169, 214, 0.35);
}
.form-success-message {
  display: none;
  background: #eef9f2;
  border: 1px solid #a3e0b7;
  color: #1e6235;
  padding: 36px 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 28px;
}
.form-success-message h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.form-success-message p {
  margin: 0;
  font-size: 15px;
}




