/* 多言語スライド映像制作LP（/slide-video.html）専用スタイル
   2026-08-03 に slide-video.php の <style> から外出しした。
   このページは独自のデザインシステム（金 #f0bf4f ＋ 深緑 #0f6b55）を持っている。
   サイト共通のオレンジには揃えていない。配色の統一は
   ブルーへのリブランドの方向性が決まってから、この :root をまとめて直す。
   ※ 背景画像のパスは /assets/... の絶対パス。相対で書くと /css/ 基準になって404する。 */

:root {
    --ink: #16211d;
    --text: #34413c;
    --muted: #64716c;
    --green: #0f6b55;
    --green-deep: #0c3f36;
    --mint: #dff3ea;
    --lime: #eff7d8;
    --blue: #1f78b8;
    --amber: #f0bf4f;
    --coral: #d96f45;
    --paper: #fbfaf6;
    --cream: #f3efe4;
    --line: #ded9cd;
    --white: #fff;
    --shadow: 0 18px 48px rgba(24, 42, 35, 0.12);
    --radius: 8px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    color: var(--text);
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.85;
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; }
  .container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
  .header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 250, 246, 0.92);
    border-bottom: 1px solid rgba(222, 217, 205, 0.9);
    backdrop-filter: blur(14px);
  }
  .header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo img { width: 128px; }
  .lp-service-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink, #2b2b2b);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }
  .nav a { text-decoration: none; }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--green-deep);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-deep);
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18, 54, 44, 0.13); }
  .button.primary { background: var(--green); border-color: var(--green); color: var(--white); }
  .button.light { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.65); color: var(--white); }
  section { padding: 96px 0; }
  .section-soft { background: var(--white); }
  .section-mint { background: linear-gradient(180deg, #edf8f2 0%, #fbfaf6 100%); }
  .section-head {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 42px;
  }
  .eyebrow {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.45; }
  h1 { font-size: clamp(34px, 4.5vw, 56px); letter-spacing: -0.02em; }
  h2 { font-size: clamp(27px, 3vw, 40px); letter-spacing: -0.01em; }
  h3 { font-size: 20px; }
  p { margin: 0; }
  .lead {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
  }
  .hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
      radial-gradient(circle at 72% 18%, rgba(31,120,184,.35), transparent 34%),
      radial-gradient(circle at 18% 86%, rgba(240,191,79,.24), transparent 32%),
      linear-gradient(120deg, rgba(12,63,54,.95), rgba(15,107,85,.74)),
      url("/assets/slide-video-lp/hero.png") center / cover;
    color: var(--white);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(239, 247, 216, .32);
    filter: blur(4px);
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 54px;
    align-items: center;
  }
  .hero .eyebrow,
  .hero h1 { color: var(--white); }
  .hero .lead { color: rgba(255,255,255,.86); }
  .hero-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .hero-panel {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: heroFloat 7s ease-in-out infinite;
  }
  .hero-samples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .sample-tile {
    min-height: 158px;
    padding: 0;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 32px rgba(9, 28, 23, .18);
  }
  .sample-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 38%, rgba(12, 35, 30, .88) 100%);
  }
  .sample-tile strong,
  .sample-tile span {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 14px;
    display: block;
    color: var(--white);
  }
  .sample-tile strong { bottom: 38px; font-size: 15px; line-height: 1.35; }
  .sample-tile span { bottom: 16px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; }
  .sample-screen {
    position: absolute;
    inset: 0;
  }
  .sample-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
  }
  .sample-screen::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }
  .sample-screen::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: calc(50% - 4px);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid var(--green);
  }
  .sample-tile:nth-child(2) { transform: translateY(14px); }
  .sample-tile:nth-child(3) { transform: translateY(-8px); }
  .sample-tile:nth-child(4) { transform: translateY(8px); }
  .trust-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 42px;
  }
  .trust-item {
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.13);
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 700;
  }
  @keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .problem-grid,
  .benefit-grid,
  .video-grid,
  .plan-grid,
  .industry-grid,
  .faq-grid {
    display: grid;
    gap: 20px;
  }
  .problem-grid,
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(33, 45, 38, .06);
  }
  .benefits-section {
    background:
      linear-gradient(180deg, #f2faf5 0%, #ffffff 100%);
  }
  .benefit-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
    border-color: #cfe4d8;
  }
  .benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green), #d7e982);
  }
  .benefit-card h3 {
    color: var(--green-deep);
  }
  .benefit-card strong {
    color: var(--green);
    font-weight: 900;
  }
  .benefit-card .icon-mark {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(12,63,54,.18);
  }
  .text-card { padding: 28px; }
  .card p,
  .mini-text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
  }
  .icon-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: var(--mint);
    color: var(--green-deep);
    font-weight: 900;
  }
  .image-card {
    overflow: hidden;
  }
  .image-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
  }
  .image-card .text-card { padding-top: 22px; }
  .two-col {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
  }
  .visual-board {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .visual-board img {
    width: 100%;
    height: 440px;
    object-fit: cover;
  }
  .process-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .process-card span {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    color: var(--green-deep);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
  }
  .video-card {
    overflow: hidden;
    padding: 0;
  }
  .video-card.sample-card {
    cursor: pointer;
    text-align: left;
    border: 1px solid var(--line);
    font: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .video-card.sample-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(33, 45, 38, .12);
  }
  .video-card.sample-card:focus-visible {
    outline: 3px solid rgba(15,107,85,.35);
    outline-offset: 3px;
  }
  .video-thumb {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #143a34;
  }
  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }
  .video-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .96;
    background: var(--thumb-bg, linear-gradient(135deg, #123a34, #86c7a5));
  }
  .video-thumb::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
    z-index: 2;
  }
  .play {
    position: absolute;
    z-index: 3;
    left: calc(50% + 3px);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--green);
  }
  .slide-lines {
    position: absolute;
    z-index: 1;
    left: 22px;
    top: 22px;
    width: 48%;
  }
  .slide-lines span {
    display: block;
    height: 9px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
  }
  .slide-lines span:nth-child(2) { width: 74%; opacity: .72; }
  .slide-lines span:nth-child(3) { width: 48%; opacity: .52; }
  .video-card .text-card { padding: 22px; }
  .thumb-1 { --thumb-bg: linear-gradient(135deg, #0f6b55, #f0bf4f); }
  .thumb-2 { --thumb-bg: linear-gradient(135deg, #183d36, #7fc0a0); }
  .thumb-3 { --thumb-bg: linear-gradient(135deg, #1c5366, #c6dd8a); }
  .thumb-4 { --thumb-bg: linear-gradient(135deg, #263441, #8ec5c0); }
  .thumb-5 { --thumb-bg: linear-gradient(135deg, #34522f, #e8cf7d); }
  .thumb-6 { --thumb-bg: linear-gradient(135deg, #3f4c3c, #82bd9e); }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .tag {
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--mint);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
  }
  .language-groups { display: grid; gap: 18px; }
  .language-card { padding: 26px; }
  .language-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
  .language-list span {
    border: 1px solid #cbe5d9;
    border-radius: 999px;
    padding: 8px 13px;
    background: #f6fffb;
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 700;
  }
  .language-visual {
    min-height: 420px;
    padding: 32px;
    border-radius: 16px;
    background:
      linear-gradient(145deg, rgba(15,107,85,.88), rgba(12,63,54,.96)),
      url("/assets/slide-video-lp/languages.png") center / cover;
    color: var(--white);
    box-shadow: var(--shadow);
  }
  .language-visual h3 { color: var(--white); font-size: 26px; }
  .translation-stack {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }
  .translation-stack div {
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
    font-weight: 700;
  }
  .plan-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfff8 100%);
  }
  .plan-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: #d8eadf;
  }
  .plan-card:nth-child(1)::before { background: linear-gradient(90deg, #7fb99a, #d7e982); }
  .plan-card:nth-child(2)::before { background: linear-gradient(90deg, var(--green), #f0bf4f); }
  .plan-card:nth-child(3)::before { background: linear-gradient(90deg, #2d7d91, #88d2c4); }
  .plan-card.featured {
    border: 2px solid var(--green);
    box-shadow: 0 18px 42px rgba(15,107,85,.16);
  }
  .price-block {
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #eaf8ef 0%, #fffdf2 100%);
    border: 1px solid #cfe4d8;
  }
  .regular-price {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }
  .regular-price s {
    text-decoration-thickness: 2px;
    color: #7a6e62;
  }
  .limited-price {
    margin-top: 2px;
    color: #0b6f52;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.15;
  }
  .limited-price small {
    font-size: 14px;
    margin-left: 2px;
  }
  .price-note {
    margin-top: 6px;
    color: #a25d15;
    font-size: 12px;
    font-weight: 700;
  }
  .plan-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 900;
  }
  .plan-card ul {
    padding-left: 0;
    margin: 18px 0 0;
    list-style: none;
    color: var(--text);
    font-size: 14px;
  }
  .plan-card li {
    position: relative;
    padding-left: 20px;
    margin-top: 9px;
  }
  .plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
  }
  .plan-note-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--radius);
    background: #fffdf4;
    border: 1px solid #eadca9;
    color: var(--text);
    box-shadow: 0 12px 34px rgba(33, 45, 38, .06);
  }
  .plan-note-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7a4a0b;
  }
  .plan-note-box p {
    color: var(--muted);
    font-size: 14px;
  }
  .flow {
    counter-reset: flow;
    display: grid;
    gap: 14px;
  }
  .flow-item {
    counter-increment: flow;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
  }
  .flow-item::before {
    content: counter(flow, decimal-leading-zero);
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: var(--green-deep);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 900;
  }
  .industry-card {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--green-deep);
    border: 1px solid var(--line);
    color: var(--white);
    font-weight: 900;
  }
  .industry-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    opacity: .86;
    transition: transform .25s ease, opacity .25s ease;
  }
  .industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(12,63,54,.82) 100%);
  }
  .industry-card span {
    position: absolute;
    z-index: 1;
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
  .industry-card:hover img {
    transform: scale(1.04);
    opacity: 1;
  }
  .faq-card { padding: 26px; }
  .faq-card h3::before {
    content: "Q";
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green);
    font-size: 14px;
  }
  .cta-section {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(12,63,54,.94), rgba(15,107,85,.84)),
      url("/assets/slide-video-lp/hero.png") center / cover;
    color: var(--white);
    text-align: center;
  }
  .cta-section h2,
  .cta-section .eyebrow { color: var(--white); }
  .cta-section .lead {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,.86);
  }
  .cta-section .hero-actions { justify-content: center; }
  .contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 34px;
    align-items: start;
    margin-top: 40px;
    text-align: left;
  }
  .contact-summary {
    padding: 30px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.26);
    backdrop-filter: blur(12px);
  }
  .contact-summary h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 14px;
  }
  .contact-summary p {
    color: rgba(255,255,255,.82);
    font-size: 14px;
  }
  .contact-summary ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 700;
  }
  .contact-summary li {
    position: relative;
    padding-left: 22px;
  }
  .contact-summary li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
  }
  .contact-form {
    padding: 30px;
    border-radius: 14px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .form-field {
    display: grid;
    gap: 7px;
  }
  .form-field.full {
    grid-column: 1 / -1;
  }
  .form-field label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
  }
  .required {
    display: inline-flex;
    margin-left: 6px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: 10px;
    vertical-align: middle;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d8d2c5;
    border-radius: var(--radius);
    background: #fbfaf6;
    color: var(--ink);
    padding: 11px 13px;
    font: inherit;
    font-size: 14px;
  }
  .form-field textarea {
    min-height: 130px;
    resize: vertical;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: 2px solid rgba(15,107,85,.18);
    border-color: var(--green);
    background: var(--white);
  }
  .form-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
  }
  .form-submit {
    width: 100%;
    margin-top: 18px;
  }
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 24, 20, .78);
  }
  .video-modal.is-open {
    display: flex;
  }
  .video-modal-panel {
    width: min(960px, 100%);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
  }
  .video-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }
  .video-modal-title {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
  }
  .video-modal-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
  }
  .video-modal-frame {
    aspect-ratio: 16 / 9;
    background: #000;
  }
  .video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .footer {
    padding: 34px 0;
    background: var(--green-deep);
    color: rgba(255,255,255,.72);
    font-size: 13px;
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer img { width: 120px; filter: brightness(0) invert(1); opacity: .9; }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
  }
  .footer-links a {
    color: rgba(255,255,255,.78);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 980px) {
    .nav { display: none; }
    .hero-grid,
    .section-head,
    .two-col,
    .contact-grid,
    .problem-grid,
    .benefit-grid,
    .video-grid,
    .plan-grid,
    .industry-grid,
    .faq-grid,
    .trust-row {
      grid-template-columns: 1fr;
    }
    .hero { padding-top: 54px; }
    section { padding: 68px 0; }
    .visual-board img { height: 320px; }
  }
  @media (max-width: 640px) {
    .container { width: min(100% - 28px, 1120px); }
    .header-inner { min-height: 68px; }
    .logo img { width: 112px; }
    .header .button { display: none; }
    .hero-samples { grid-template-columns: 1fr; }
    .sample-tile:nth-child(n) { transform: none; }
    .trust-row { margin-top: 28px; }
    .process-card { position: static; grid-template-columns: 1fr; padding: 12px; }
    .visual-board img { height: 250px; }
    .language-visual { min-height: auto; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .footer-links { justify-content: flex-start; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-form,
    .contact-summary { padding: 22px; }
    .video-modal { padding: 14px; }
  }
