/* ============================================
   株式会社Show Must Go On - LP Style
   ============================================ */

   :root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #ffffff;
    --bg-alt: #f1f5f9;
    --accent: #b8860b;
    --accent-soft: rgba(184, 134, 11, 0.12);
    --accent-border: rgba(184, 134, 11, 0.5);
    --accent-muted: #c9a227;
    --urgency: #ff4444;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-subtle: #64748b;
    --border-subtle: rgba(148, 163, 184, 0.4);
    --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.08);
    --font-body: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
    --container: min(96vw, 1120px);
    --section-pad: clamp(4rem, 8vw, 6rem);
    --header-h: 100px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button,
  input,
  textarea {
    font: inherit;
    color: inherit;
  }
  
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .pc-only {
    display: inline;
  }
  
  .sp-only {
    display: none;
  }
  
  /* ----- Header ----- */
  .header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    padding: 12px 0 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(12px);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .logo-img {
    height: 42px;
    width: auto;
    display: block;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  
  .logo-main {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  
  .logo-sub {
    font-size: 0.7rem;
    color: var(--text-subtle);
    white-space: nowrap;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }
  
  .nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.2s, opacity 0.2s;
  }
  
  .nav a:hover {
    color: var(--text-main);
  }
  
  .nav-cta {
    padding: 0.55rem 1.1rem;
    font-size: 0.86rem;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid var(--accent-border);
    color: var(--accent-muted);
    background: transparent;
  }
  
  .header-urgency {
    font-size: 0.68rem;
    padding: 0.28rem 0.55rem;
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
  }
  
  .nav-cta:hover {
    background: var(--accent-soft);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 99px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  /* ----- Hero ----- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(201, 162, 39, 0.06), transparent 55%),
      radial-gradient(circle at bottom, rgba(248, 250, 252, 0.9), transparent 65%);
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0h1v80h-1zM0 10h80v1H0z' fill='%2364748b' fill-opacity='0.25'/%3E%3C/svg%3E");
  }
  
  .hero-inner {
    position: relative;
    max-width: 760px;
    text-align: left;
    padding-bottom: 7rem;
  }
  
  .hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(248, 250, 252, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  
  .hero-tagline::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
  }
  
  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  
  .hero-title .accent {
    color: var(--accent-muted);
  }
  
  .hero-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
  }
  
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .hero-remaining {
    display: inline-block;
    width: auto;
    padding: 0.3rem 0.85rem;
    background: var(--urgency);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.35);
    animation: pulseStrong 1.5s ease-in-out infinite;
    will-change: transform, opacity;
    position: static;
    margin-bottom: 0;
  }
  
  @keyframes pulseStrong {
    0% {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5);
    }
    50% {
      opacity: 1;
      transform: scale(1.08);
      box-shadow: 0 0 20px 4px rgba(255, 68, 68, 0.4);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5);
    }
  }
  
  @keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  .hero-badges span {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(248, 250, 252, 0.9);
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
  }
  
  .hero-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-subtle);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  
  .btn-primary {
    background: linear-gradient(to right, #b8860b, #996f09);
    border-color: rgba(184, 134, 11, 0.6);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.85);
  }
  
  .btn-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.6);
    color: var(--text-main);
  }
  
  .btn-outline:hover {
    background: var(--accent-soft);
    border-color: var(--accent-border);
  }
  
  .btn-full {
    width: 100%;
  }
  
  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-subtle);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  
  .scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--accent-muted), rgba(184, 134, 11, 0.3));
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
  }
  
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
  }
  
  /* ----- Sections ----- */
  .section {
    padding: var(--section-pad) 0;
  }
  
  .section-heading {
    max-width: 700px;
  }
  
  .section-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 0.4rem;
  }
  
  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.7;
    margin-bottom: 1.1rem;
  }
  
  .section-lead {
    font-size: 0.94rem;
    color: var(--text-muted);
  }
  
  .section-lead .highlight {
    color: var(--accent-muted);
    font-weight: 600;
  }
  
  /* ----- Problems ----- */
  .problems {
    background: var(--bg-soft);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }
  
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.3rem;
  }
  
  .problem-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.6rem 1.6rem 1.35rem;
  }
  
  .problem-card h3 {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }
  
  .problem-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  .problems-footer {
    margin-top: 2.1rem;
    padding-top: 1.7rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.4);
  }
  
  .problems-footer p {
    font-size: 0.92rem;
    color: var(--text-muted);
  }
  
  .problems-footer span {
    color: var(--accent-muted);
  }
  
  /* ----- Results ----- */
  .results {
    background: var(--bg-alt);
  }
  
  .results-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.3rem;
    margin-bottom: 2.4rem;
  }
  
  .result-highlight-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.6rem 1.5rem;
  }
  
  .result-label {
    font-size: 0.8rem;
    color: var(--text-subtle);
  }
  
  .result-number {
    display: inline-block;
    margin-top: 0.25rem;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    letter-spacing: 0.02em;
    color: var(--accent-muted);
  }
  
  .result-unit {
    margin-left: 0.1rem;
    font-size: 0.95rem;
    color: var(--accent-muted);
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  
  .results-list {
    list-style: none;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.5rem 1.6rem;
  }
  
  .results-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
  }
  
  .results-list li:last-child {
    border-bottom: none;
  }
  
  .results-list span {
    color: var(--accent-muted);
    font-weight: 600;
  }
  
  .results-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .results-note span {
    color: var(--accent-muted);
  }
  
  .results-regional {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  
  /* ----- Services ----- */
  .services {
    background: var(--bg);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.2rem;
  }
  
  .service-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.8rem 1.7rem 1.6rem;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0.9rem;
    height: 100%;
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    min-height: 2.8rem;
  }
  
  .service-platform-inline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-subtle);
    letter-spacing: 0;
  }
  
  .service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
  }
  
  .service-outcome {
    margin: 0;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.45);
    font-size: 0.85rem;
    line-height: 1.7;
    min-height: calc(1.7em * 3);
    color: var(--text-subtle);
  }
  
  .service-outcome span {
    font-weight: 600;
    color: var(--accent-muted);
  }
  
  .services-banner {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    background: var(--accent-soft);
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 14px;
    text-align: center;
  }
  
  .services-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
  }
  
  /* ----- Why us ----- */
  .why-us {
    background: var(--bg-alt);
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.2rem;
  }
  
  .why-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.7rem 1.6rem 1.6rem;
  }
  
  .why-card h3 {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
  }
  
  .why-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  /* ----- Founder ----- */
  .founder {
    background: var(--bg-soft);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
  }
  
  .founder-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    align-items: flex-start;
  }
  
  .founder-photo-card {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: var(--shadow-soft);
    max-width: 320px;
  }
  
  .founder-photo-inner {
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
  }
  
  .founder-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .founder-meta {
    margin-top: 0.9rem;
  }
  
  .founder-name {
    font-size: 1rem;
    margin-bottom: 0.15rem;
  }
  
  .founder-title {
    font-size: 0.82rem;
    color: var(--text-subtle);
  }
  
  .founder-story p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
  }
  
  .founder-message {
    margin-top: 1.5rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.06) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-muted);
  }
  
  .founder-message-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
  }
  
  .founder-note {
    margin-top: 1.5rem;
    padding: 1rem 1.4rem;
    background: var(--bg-soft);
    border-radius: 10px;
    border-left: 3px solid var(--accent-muted);
  }
  
  .founder-note-label {
    font-size: 0.78rem;
    color: var(--text-subtle);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  
  .founder-note-link {
    font-size: 0.9rem;
    color: var(--accent-muted);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
  }
  
  .founder-note-link:hover {
    opacity: 0.75;
  }
  
  /* ----- Local vision ----- */
  .local-vision {
    background: var(--bg-alt);
  }
  
  .local-vision-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 2.6rem;
    align-items: stretch;
  }
  
  .local-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
  }
  
  .local-panel {
    display: flex;
    align-items: center;
  }
  
  .local-panel-inner {
    width: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.06) 0%, #ffffff 100%);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.9rem 1.9rem 1.7rem;
    box-shadow: var(--shadow-soft);
  }
  
  .local-panel-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  
  .local-panel-text {
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* ----- CTA ----- */
  .cta {
    background: var(--bg-soft);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
  }
  
  .cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 2.4rem;
    align-items: center;
  }
  
  .cta-text .section-title {
    margin-bottom: 0.8rem;
  }
  
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  
  .cta-note {
    font-size: 0.8rem;
    color: var(--text-subtle);
  }
  
  /* ----- Contact ----- */
  .contact {
    background: var(--bg-alt);
  }
  
  .contact-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 2.4rem;
    align-items: stretch;
  }
  
  .contact-form {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.9rem 1.8rem 1.7rem;
    box-shadow: var(--shadow-soft);
  }
  
  .contact-form .form-row {
    margin-bottom: 1.25rem;
  }
  
  .contact-form label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
  }
  
  .required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #ffffff;
    background: #b8860b;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #ffffff;
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: var(--text-subtle);
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-muted);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
    background: var(--bg-card);
  }
  
  .form-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-subtle);
  }
  
  .contact-info {
    padding-top: 0.4rem;
    align-self: end;
  }
  
  .contact-company {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .contact-detail {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }
  
  .contact-email {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--accent-muted);
  }
  
  /* ----- Footer ----- */
  .footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: var(--bg-alt);
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .footer-logo {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
  }
  
  .footer-area {
    font-size: 0.78rem;
    color: var(--text-subtle);
    line-height: 1.7;
  }
  
  .footer-copy {
    font-size: 0.75rem;
    color: var(--text-subtle);
    text-align: right;
    line-height: 1.6;
  }
  
  .footer-links {
    width: 100%;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-subtle);
  }
  
  .footer-links a {
    color: var(--text-subtle);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  /* ----- Scroll fade-in ----- */
  .js-fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  .js-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ----- Mobile ----- */
  @media (max-width: 960px) {
    .pc-only {
      display: none;
    }
  
    .sp-only {
      display: inline;
    }
  
    .nav {
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      flex-direction: column;
      padding: 1.6rem 1.6rem 2rem;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid rgba(148, 163, 184, 0.4);
      gap: 1.3rem;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.26s ease-out, opacity 0.26s ease-out, visibility 0.26s;
    }
  
    .nav.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .nav-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  
    .nav-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  
    .hero-inner {
      text-align: left;
    }
  
    .hero-actions {
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
    }
  
    .problems-grid,
    .results-highlight,
    .results-grid,
    .services-grid,
    .why-grid,
    .founder-inner,
    .local-vision-inner,
    .cta-inner,
    .contact-wrap {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .contact-wrap {
      align-items: flex-start;
    }
  
    .contact-info {
      align-self: stretch;
      text-align: center;
    }
  
    .founder-photo-card {
      margin: 0 auto;
    }
  
    .founder-inner {
      text-align: center;
    }
  
    .founder-story {
      text-align: left;
    }
  }
  
  @media (max-width: 640px) {
    :root {
      --header-h: 88px;
    }
  
    html {
      overflow-x: hidden;
    }
  
    body {
      overflow-x: hidden;
    }
  
    .container {
      padding: 0 1.1rem;
    }
  
    .logo-img {
      height: 36px;
    }
  
    .logo-text {
      display: none;
    }
  
    .hero {
      padding-top: calc(var(--header-h) + 1.5rem);
    }
  
    .hero-title {
      font-size: 1.75rem;
    }
  
    .hero-tagline {
      margin-bottom: 1rem;
      font-size: 0.72rem;
    }
  
    .hero-badges {
      width: 100%;
      flex-direction: column;
    }
  
    .hero-badges span {
      width: 100%;
      text-align: center;
      display: block;
    }
  
    .hero-remaining {
      font-size: 0.78rem;
      padding: 0.28rem 0.75rem;
    }
  
    .hero-cta-block {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  
    .hero-actions {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
  
    .hero-inner {
      padding-bottom: 4rem;
    }
  
    .hero-scroll {
      bottom: 0.8rem;
    }
  
    .section {
      padding: 3rem 0;
    }
  
    .section-title {
      font-size: 1.55rem;
      line-height: 1.6;
      word-break: keep-all;
    }
  
    .result-number {
      font-size: 2.2rem;
    }
  
    .contact-form {
      padding: 1.5rem 1.2rem 1.4rem;
    }
  
    .founder-photo-card {
      max-width: 100%;
    }
  
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.8rem;
    }
  
    .footer-copy {
      text-align: left;
    }
  
    .footer-links {
      margin-top: 0.2rem;
    }
  }
  