/* ============================================================
   Lino Design — Complete LP stylesheet  v4
   ============================================================ */

:root {
  --blue:         #6BB8C4;
  --blue-light:   #EBF6F8;
  --blue-mid:     #9ED0D9;
  --blue-dim:     rgba(107, 184, 196, 0.55);
  --coral:        #E8927A;
  --grey:         #8C8C8C;
  --grey-light:   #F4F4F3;
  --ink:          #1E1E1E;
  --ink-sub:      #4A4A4A;
  --white:        #FFFFFF;
  --white-80:     rgba(255,255,255,0.88);
  --white-50:     rgba(255,255,255,0.55);
  --line-green:   #06C755;

  --font-num:     'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-en:      'Cormorant Garamond', Georgia, serif;
  --font-ja:      'Noto Sans JP', 'Yu Gothic', sans-serif;
  --font-serif-ja:'Noto Serif JP', 'Yu Mincho', serif;

  --max-width:    1100px;
  --space-xl:     7rem;
  --sp-bar-h:     64px;   /* スマホ固定バーの高さ */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
em { font-style: italic; color: var(--blue); }
strong { font-weight: 500; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(107,184,196,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.35s;
}
.site-header--scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-logo {
  display: block;
  position: relative;
  height: 38px;
  width: 160px;
}
.logo-img {
  display: block;
  height: 38px;
  width: auto;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.35s;
}
.logo-img--white { opacity: 0; }
.logo-img--color { opacity: 1; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  font-family: var(--font-ja);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink-sub);
  transition: color 0.22s;
}
.site-nav a:hover { color: var(--blue); }
.site-nav .nav-cta {
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 0.42rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: background 0.22s, color 0.22s;
}
.site-nav .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   1. FIRST VIEW
   ============================================================ */
.fv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
}
.fv-video-wrap { position: absolute; inset: 0; z-index: 0; }
.fv-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.65) brightness(0.82);
}
.fv-overlay {
  position: absolute; inset: 0;
  background: rgba(6,14,20,0.30);
  z-index: 1;
}
.fv-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, rgba(4,10,16,0.45));
  z-index: 2;
}
.fv-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1.5rem;
  animation: fv-appear 1.6s var(--ease-out) 0.1s both;
}
@keyframes fv-appear {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fv-logo { margin-bottom: 2rem; animation: fv-appear 1.4s var(--ease-out) 0.15s both; }
.fv-logo-img { height: 52px; width: auto; }
.fv-rule {
  width: 36px; height: 1px;
  background: rgba(107,184,196,0.7);
  margin-bottom: 2rem;
  animation: fv-appear 1.4s var(--ease-out) 0.3s both;
}
.fv-en {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fv-appear 1.6s var(--ease-out) 0.4s both;
}
.fv-en em { font-style: italic; font-weight: 300; color: var(--white); }
.fv-ja-copy {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.18em;
  color: var(--white-80);
  margin-bottom: 2rem;
  animation: fv-appear 1.6s var(--ease-out) 0.55s both;
}
.fv-body {
  font-family: var(--font-ja);
  font-weight: 300;
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: var(--white-80);
  margin-bottom: 3rem;
  animation: fv-appear 1.6s var(--ease-out) 0.7s both;
}
.fv-body .em-quote { font-style: normal; color: var(--blue); }
.br-sp { display: none; }

.fv-cta {
  display: flex; gap: 1.2rem;
  flex-wrap: wrap; justify-content: center;
  animation: fv-appear 1.6s var(--ease-out) 0.9s both;
}
.fv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ja);
  font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.18em;
  padding: 0.95rem 2.6rem;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  white-space: nowrap; cursor: pointer;
}
.fv-btn--primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.fv-btn--primary:hover { background: rgba(255,255,255,0.28); border-color: var(--white); }
.fv-btn--ghost {
  background: transparent;
  border: 1px solid rgba(107,184,196,0.7);
  color: var(--white-80);
}
.fv-btn--ghost:hover { border-color: var(--blue); color: var(--white); }

.fv-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.55rem;
  animation: fv-appear 2s var(--ease-out) 1.3s both;
}
.fv-scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(107,184,196,0.7), transparent);
  animation: scroll-line 2.4s ease-in-out 1.5s infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  70%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}
.fv-scroll-label {
  font-family: var(--font-num);
  font-weight: 400; font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--white-50);
  text-transform: uppercase;
}

/* ============================================================
   SECTION 共通
   ============================================================ */
.section { padding: var(--space-xl) 0; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.bg-light { background: var(--grey-light); }

.section-label { display: flex; flex-direction: column; margin-bottom: 2.8rem; }
.label-en {
  font-family: var(--font-num);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--blue); text-transform: uppercase;
}
.label-ja {
  font-family: var(--font-ja);
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--grey);
  margin-top: 0.35rem;
}
.section-heading {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400; line-height: 1.75;
  color: var(--ink); margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.section-heading.center { text-align: center; }

.btn-primary {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white); background: var(--blue);
  padding: 1.05rem 3rem;
  border: 1px solid var(--blue);
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--blue); }

/* ============================================================
   2. PHILOSOPHY
   ============================================================ */
.philosophy-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.philosophy-text {
  display: flex; flex-direction: column; gap: 1.5rem;
  font-size: 0.92rem; line-height: 2; color: var(--ink-sub);
}

/* ============================================================
   3. ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-main { display: flex; flex-direction: column; gap: 1.5rem; }
.about-main p { font-size: 0.92rem; color: var(--ink-sub); line-height: 2; }

.message-card {
  background: var(--blue-light);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.message-en {
  font-family: var(--font-num);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; color: var(--blue); text-transform: uppercase;
}
.message-name {
  font-family: var(--font-num);
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.12em;
}
.message-divider { width: 30px; height: 1px; background: var(--blue); margin: 0.3rem 0; }
.message-card p { font-size: 0.85rem; color: var(--ink-sub); line-height: 2; }

/* ---- 事務所概要 ---- */
.office-info-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(107,184,196,0.25);
}
.office-info-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}
.office-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.office-table th,
.office-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(107,184,196,0.2);
  line-height: 1.75;
  vertical-align: top;
  text-align: left;
}
.office-table th {
  width: 30%;
  max-width: 160px;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  white-space: nowrap;
}
.office-table td {
  color: var(--ink-sub);
  font-weight: 300;
}
.office-table a {
  color: var(--blue);
  transition: opacity 0.2s;
}
.office-table a:hover { opacity: 0.7; }
.office-table tr:first-child th,
.office-table tr:first-child td {
  border-top: 1px solid rgba(107,184,196,0.2);
}

/* ---- Lino Times バナー ---- */
.lino-times-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(107,184,196,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.lino-times-text {}
.lino-times-label {
  font-family: var(--font-num);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.lino-times-desc {
  font-family: var(--font-serif-ja);
  font-size: 1rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.04em;
}
.lino-times-banner {
  display: block;
  position: relative;
  border: 1px solid rgba(107,184,196,0.3);
  overflow: hidden;
  max-width: 600px;
  transition: opacity 0.25s;
}
.lino-times-banner:hover { opacity: 0.88; }
.lino-times-img {
  display: block;
  width: 100%; height: auto;
  min-height: 120px;
  background: var(--blue-light);
  object-fit: cover;
}
.lino-times-btn {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--blue);
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border-top: 1px solid rgba(107,184,196,0.25);
}

/* ============================================================
   4. INDUSTRIES
   ============================================================ */
.industry-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(107,184,196,0.3);
}
.industry-item {
  padding: 1.8rem 1rem;
  border-bottom: 1px solid rgba(107,184,196,0.3);
  border-right: 1px solid rgba(107,184,196,0.3);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.industry-item:nth-child(4n) { border-right: none; }
.industry-no {
  font-family: var(--font-num);
  font-size: 0.7rem; font-weight: 500;
  color: var(--blue); letter-spacing: 0.12em;
}
.industry-name {
  font-family: var(--font-ja);
  font-size: 1rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.04em;
}

/* ============================================================
   5. SERVICES
   ============================================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-top: 2px solid var(--blue);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.service-en {
  font-family: var(--font-num);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; color: var(--blue); text-transform: uppercase;
}
.service-ja {
  font-family: var(--font-ja);
  font-size: 1.02rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.02em;
}
.service-desc { font-size: 0.84rem; color: var(--ink-sub); line-height: 1.9; margin-top: 0.4rem; }

/* ============================================================
   6. REASONS
   ============================================================ */
.reason-list { margin-top: 3rem; }
.reason-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid rgba(107,184,196,0.3);
  align-items: start;
}
.reason-item:first-child { border-top: 1px solid rgba(107,184,196,0.3); }
.reason-no {
  font-family: var(--font-num);
  font-size: 2rem; font-weight: 300;
  color: rgba(107,184,196,0.4);
  line-height: 1; padding-top: 0.2rem; letter-spacing: 0.02em;
}
.reason-body h3 {
  font-family: var(--font-ja);
  font-size: 1.02rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.75rem; letter-spacing: 0.03em;
}
.reason-body p { font-size: 0.88rem; color: var(--ink-sub); line-height: 2; }

/* ============================================================
   7. PLAN
   ============================================================ */
.plan-lead {
  text-align: center;
  font-size: 0.9rem; color: var(--ink-sub);
  line-height: 2; margin-bottom: 3rem;
}
.plan-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  padding: 3.5rem 3rem;
  border-top: 3px solid var(--blue);
  box-shadow: 0 4px 40px rgba(107,184,196,0.13);
}

/* ---- バッジ（大きく・目立つ） ---- */
.plan-badge-wrap {
  text-align: center;
  margin-bottom: 1.8rem;
}
.plan-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 1rem;           /* ← 大きく */
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 0.55rem 2rem;     /* ← 余白も広く */
  border-radius: 2px;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107,184,196,0.25);
}
.plan-name {
  font-family: var(--font-num);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; color: var(--blue);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.plan-price {
  font-family: var(--font-num);
  font-size: 2.8rem; font-weight: 300;
  color: var(--ink); line-height: 1; letter-spacing: 0.01em;
}
.plan-price span {
  font-family: var(--font-ja);
  font-size: 1rem; font-weight: 300; color: var(--grey);
}

/* ---- 選べる旨の説明 ---- */
.plan-select-note {
  background: var(--blue-light);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
  border-left: 3px solid var(--blue);
}
.plan-select-title {
  font-family: var(--font-ja);
  font-size: 1rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.plan-select-title strong { color: var(--blue); font-size: 1.2em; }
.plan-select-sub {
  font-size: 0.82rem; color: var(--ink-sub); line-height: 1.8;
}

/* ---- メニューリスト ---- */
.plan-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 2rem;
}
.plan-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-sub); line-height: 1.75;
}
.plan-check {
  color: var(--blue); font-size: 0.68rem;
  padding-top: 0.28rem; flex-shrink: 0;
}

/* ---- 特徴グリッド ---- */
.plan-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(107,184,196,0.2);
}
.plan-feature {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1rem;
  background: var(--grey-light);
}
.plan-feature-icon {
  font-family: var(--font-num);
  font-size: 1.4rem; font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}
.plan-feature-title {
  font-family: var(--font-ja);
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
.plan-feature-desc {
  font-size: 0.76rem; color: var(--ink-sub); line-height: 1.7;
}

/* ---- 補足テキスト ---- */
.plan-footer-note {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(107,184,196,0.2);
  text-align: center;
}
.plan-footer-note p {
  font-size: 0.82rem; color: var(--grey);
  letter-spacing: 0.04em; line-height: 1.8;
}

/* ============================================================
   8. CTA
   ============================================================ */
.cta { background: var(--blue-light); text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-en {
  font-family: var(--font-num);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.38em; color: var(--blue);
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.cta-heading {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 400; color: var(--ink);
  line-height: 1.78; margin-bottom: 1.5rem;
}
.cta-desc { font-size: 0.9rem; color: var(--ink-sub); line-height: 2; margin-bottom: 2.5rem; }
.cta-sub { font-size: 0.74rem; color: var(--grey); margin-top: 1.2rem; letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grey-light);
  border-top: 1px solid rgba(107,184,196,0.25);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo-img { height: 36px; width: auto; }
.footer-copy {
  font-family: var(--font-num);
  font-size: 0.62rem; font-weight: 400;
  color: var(--grey); letter-spacing: 0.1em;
}

/* ============================================================
   スマホ固定フッターバー（SP only）
   ============================================================ */
.sp-fixed-bar {
  display: none; /* PC では非表示 */
}
.sp-fixed-spacer {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    height: var(--sp-bar-h);
    background: var(--white);
    border-top: 1px solid rgba(107,184,196,0.3);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  }
  .sp-fixed-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-family: var(--font-ja);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: opacity 0.2s;
    cursor: pointer;
  }
  .sp-fixed-btn:active { opacity: 0.8; }

  /* LINE ボタン */
  .sp-fixed-btn--line {
    background: var(--line-green);
    border-right: 1px solid rgba(255,255,255,0.3);
  }
  /* 電話ボタン */
  .sp-fixed-btn--tel {
    background: var(--blue);
  }

  .sp-fixed-icon {
    width: 26px; height: 26px;
    object-fit: contain;
    /* アイコン画像が未設定の場合の fallback 表示 */
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
  }

  /* フッターバーで隠れないよう余白確保 */
  .sp-fixed-spacer {
    display: block;
    height: var(--sp-bar-h);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --space-xl: 5rem; }

  .site-nav a:not(.nav-cta) { display: none; }

  .philosophy-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .industry-list { grid-template-columns: repeat(2, 1fr); }
  .industry-item:nth-child(2n) { border-right: none; }
  .industry-item:nth-child(4n) { border-right: 1px solid rgba(107,184,196,0.3); }
  .industry-item:nth-child(odd):last-child { border-right: none; }

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

  .plan-features { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --space-xl: 4rem; }

  .header-inner { padding: 0 1.25rem; }

  .fv-logo-img { height: 38px; }
  .fv-en { font-size: clamp(2.1rem, 10vw, 3rem); }
  .br-sp { display: inline; }
  .fv-cta { flex-direction: column; align-items: center; gap: 0.85rem; }
  .fv-btn { width: 80vw; max-width: 280px; }

  .section-inner { padding: 0 1.25rem; }

  .lino-times-banner { max-width: 100%; }

  .office-table th { width: auto; max-width: none; white-space: normal; }
  .office-table th,
  .office-table td { display: block; padding: 0.4rem 0; }
  .office-table th { font-size: 0.72rem; padding-top: 1rem; border-bottom: none; }
  .office-table tr:first-child th { border-top: none; padding-top: 0; }
  .office-table td { padding-bottom: 0.8rem; border-bottom: 1px solid rgba(107,184,196,0.2); }

  .industry-list { grid-template-columns: 1fr 1fr; }

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

  .reason-item { grid-template-columns: 50px 1fr; gap: 1rem; }

  .plan-card { padding: 2.5rem 1.25rem; }
  .plan-features { grid-template-columns: 1fr; }

  .cta-desc br { display: none; }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}
