:root {
      --primary: #0b1a30;
      --secondary: #123a66;
      --accent: #d4af37;
      --accent-red: #b21f2d;
      --bg: #f7f9fc;
      --bg-soft: #f4efe2;
      --text: #223;
      --muted: #5e6b7a;
      --white: #fff;
      --border: #d7deea;
      --success: #0d6b46;
      --shadow: 0 12px 28px rgba(11, 26, 48, 0.10);
      --shadow-soft: 0 8px 20px rgba(11, 26, 48, 0.08);
      --radius: 14px;
      --max: 1100px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      margin: 0;
      font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.8;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img, video { max-width: 100%; height: auto; display: block; }
    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }
    .section { padding: 72px 0; }
    .section-sm { padding: 44px 0; }
    .bg-light { background: var(--bg); }
    .bg-soft { background: linear-gradient(180deg, #fcfaf2 0%, #f7f3e8 100%); }
    .text-center { text-align: center; }
    .eyebrow {
      display: inline-block;
      padding: 6px 12px;
      background: rgba(212, 175, 55, 0.12);
      color: var(--primary);
      border: 1px solid rgba(212, 175, 55, 0.35);
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    h1, h2, h3, h4, p { margin: 0; }
    h2 {
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      line-height: 1.35;
      color: var(--primary);
      margin-top: 14px;
      margin-bottom: 18px;
      font-weight: 800;
    }
    .lead {
      color: var(--muted);
      font-size: 1.06rem;
      max-width: 820px;
      margin: 0 auto;
    }
    .section-head { margin-bottom: 34px; }
    .section-title-with-accent {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      max-width: 100%;
    }
    .section-title-accent {
      width: 21px;
      height: 21px;
      flex: 0 0 21px;
      display: block;
      object-fit: contain;
      border-radius: 0;
    }
    .section-title-text {
      display: inline-block;
    }
    .about-section-title {
      white-space: nowrap;
      letter-spacing: -0.01em;
    }
    .about-section-title-note {
      font-size: 0.82em;
      letter-spacing: -0.015em;
    }

    /* header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(11, 26, 48, 0.08);
      box-shadow: 0 4px 18px rgba(11, 26, 48, 0.05);
    }
    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .logo-wrap {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-image {
      display: block;
      height: 48px;
      width: auto;
      max-width: min(100%, 250px);
      object-fit: contain;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .header-nav a.nav-link {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.93rem;
    }

    /* buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
      box-shadow: var(--shadow-soft);
      text-align: center;
      white-space: normal;
      line-height: 1.45;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #f2d06e);
      color: var(--primary);
    }
    .btn-secondary {
      background: var(--primary);
      color: #fff;
    }
    .btn-block { width: 100%; }
    .cta-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    /* hero */
    .hero-wrap {
      padding: 36px 0 0;
      background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    }
    .hero {
      overflow: hidden;
      border-radius: 24px;
      background: #dce8f4;
      box-shadow: 0 22px 48px rgba(11, 26, 48, 0.18);
    }
    .hero-inner {
      position: relative;
      aspect-ratio: 1000 / 523;
      min-height: 320px;
      background-image: url('../img/hero/hero-main.png');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }
    .hero-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,26,48,0.02) 0%, rgba(11,26,48,0.02) 58%, rgba(11,26,48,0.16) 100%);
      pointer-events: none;
    }
        .hero-visual-link {
      position: absolute;
      inset: 0;
      display: block;
      z-index: 1;
    }
    .hero-cta-overlay {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 3;
      display: flex;
      justify-content: flex-end;
      pointer-events: none;
    }
    .hero-cta-overlay .btn {
      min-height: 58px;
      padding: 0 32px;
      font-size: 1rem;
      box-shadow: 0 18px 30px rgba(11, 26, 48, 0.28);
      pointer-events: auto;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* cards/common */
    .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    /* challenge */
    .challenge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .challenge-card {
      padding: 22px;
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid #e6ebf3;
      box-shadow: var(--shadow-soft);
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .challenge-icon {
      flex: 0 0 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(178, 31, 45, 0.08);
      color: var(--accent-red);
      font-weight: 800;
    }
    .challenge-card h3 {
      margin-bottom: 6px;
      font-size: 1.08rem;
      color: var(--primary);
    }
    .challenge-card p { color: var(--muted); font-size: 1rem; line-height: 1.72; }
    .bridge-box {
      margin-top: 28px;
      padding: 22px 24px;
      background: linear-gradient(135deg, #fdf7df, #fff);
      border: 1px solid rgba(212,175,55,0.45);
      border-radius: var(--radius);
      color: var(--primary);
      font-weight: 700;
      box-shadow: var(--shadow-soft);
    }

    /* media */
    .media-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      align-items: stretch;
    }
    .video-dummy {
      min-height: 360px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(150deg, rgba(11,26,48,.88), rgba(18,58,102,.74)),
        radial-gradient(circle at center, rgba(212,175,55,.28), transparent 40%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .video-dummy::before {
      content: "紹介動画（差し替え予定）";
      position: absolute;
      top: 18px;
      left: 18px;
      background: rgba(255,255,255,0.14);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 6px 12px;
      font-weight: 700;
      font-size: 0.84rem;
    }
    .play-button {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
    }
    .play-button span {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      border: 2px solid rgba(255,255,255,0.24);
      display: grid;
      place-items: center;
      backdrop-filter: blur(6px);
      position: relative;
    }
    .play-button span::before {
      content: "";
      margin-left: 6px;
      width: 0;
      height: 0;
      border-left: 24px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
    }
    .video-dummy.has-photo {
      background: linear-gradient(180deg, #eef2f7 0%, #dde5ee 100%);
      border: 1px solid rgba(17, 42, 74, 0.12);
    }
    .video-dummy.has-photo::before {
      content: none;
    }
    .video-dummy-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      background: linear-gradient(180deg, #eef2f7 0%, #dde5ee 100%);
    }
    .media-points {
      display: grid;
      gap: 14px;
    }
    .media-point {
      padding: 18px 20px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
    }
    .media-point h3 {
      font-size: 1.05rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .media-point p { color: var(--muted); font-size: 1rem; line-height: 1.72; }

    /* voice */
    .voice-card {
      padding: 22px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }
    .avatar-dummy {
      flex: 0 0 88px;
      height: 88px;
      border-radius: 50%;
      background: linear-gradient(135deg, #dbe4f0, #c2d1e2);
      border: 3px solid #fff;
      box-shadow: var(--shadow-soft);
      display: grid;
      place-items: center;
      color: var(--secondary);
      font-weight: 800;
    }
    .voice-meta {
      color: var(--muted);
      font-size: 0.88rem;
      margin-bottom: 8px;
    }
    .voice-card h3 {
      font-size: 1.08rem;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .voice-card p { color: var(--muted); font-size: 0.95rem; }

    /* features */
    .feature-list { display: grid; gap: 22px; }
    .feature-row {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: center;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }
    .feature-row:nth-child(even) { grid-template-columns: 1fr 320px; }
    .feature-row:nth-child(even) .feature-visual { order: 2; }
    .feature-visual {
      min-height: 220px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(11,26,48,.92), rgba(18,58,102,.8)),
        radial-gradient(circle at top right, rgba(212,175,55,.24), transparent 32%);
      position: relative;
      overflow: hidden;
      color: #fff;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
    .feature-visual.has-photo {
      display: block;
      padding: 0;
      background: #dbe4ee;
    }
    .feature-visual.has-photo::before {
      content: none;
    }
    .feature-visual.has-photo img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
      object-position: center;
    }
    .feature-visual::before {
      content: "参考画像（差し替え予定）";
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 6px 10px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
    }
    .feature-num {
      display: inline-flex;
      min-width: 78px;
      min-height: 34px;
      padding: 0 14px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 800;
      margin-bottom: 14px;
    }
    .feature-row:nth-child(even) .feature-num {
      background: var(--accent);
      color: var(--primary);
    }
    .feature-content h3 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .feature-content p {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 14px;
    }
    .feature-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .feature-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 10px;
      background: #edf3fb;
      color: var(--secondary);
      font-size: 0.9rem;
      font-weight: 700;
    }

    /* know */
    .know-wrap {
      background: #fff;
      border: 4px solid rgba(212,175,55,0.85);
      border-radius: 20px;
      padding: 50px 28px 28px;
      position: relative;
      box-shadow: var(--shadow);
    }
    .know-wrap::before {
      content: "今回限定の特別コンテンツ";
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent-red);
      color: #fff;
      font-size: 1rem;
      font-weight: 800;
      padding: 10px 22px;
      border-radius: 999px;
      white-space: nowrap;
      box-shadow: 0 10px 18px rgba(178,31,45,0.25);
    }
    .know-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .know-lead {
      color: var(--accent-red);
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      font-weight: 900;
      line-height: 1.45;
      letter-spacing: 0.01em;
      max-width: none;
      margin: 0 auto 10px;
    }
    .know-card {
      background: #fcfcfc;
      border: 1px solid #e9edf3;
      border-top: 6px solid var(--primary);
      border-radius: 14px;
      padding: 24px 22px 18px;
      box-shadow: var(--shadow-soft);
      min-height: auto;
    }
    .know-card::after {
      content: "";
      display: block;
      clear: both;
    }
    .know-card-visual {
      float: right;
      width: min(50%, 220px);
      margin: 4px 0 8px 18px;
      display: grid;
      gap: 10px;
    }
    .know-card-image {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 14px;
      background: linear-gradient(135deg, #d9e5f2, #bdcfdf);
      border: 1px solid #d6e0ec;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
      color: var(--secondary);
      font-size: 0.88rem;
      font-weight: 800;
      text-align: center;
      line-height: 1.5;
    }
    .know-card-image::before {
      content: "画像ダミー";
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.72rem;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.78);
      color: var(--secondary);
      font-weight: 700;
    }
    .know-card-image span {
      padding: 14px;
    }
    .know-card-image.has-photo {
      display: block;
      background: #eef3f8;
      color: inherit;
    }
    .know-card-image.has-photo::before {
      content: none;
    }
    .know-card-image.has-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .know-card-caption {
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 800;
      text-align: left;
      line-height: 1.6;
      letter-spacing: 0.01em;
    }
    .know-bottom-cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }
    .know-bottom-cta .btn {
      min-width: 280px;
    }
    .know-tag {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(11,26,48,0.08);
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .know-card h3 {
      font-size: 1.18rem;
      color: var(--primary);
      margin-bottom: 8px;
      line-height: 1.5;
    }
    .know-card p { color: var(--muted); font-size: 0.95rem; }
    .know-card-coming-soon {
      background: linear-gradient(135deg, #fbfcff, #f3f6fb);
    }
    .know-card-image-coming-soon {
      background: linear-gradient(135deg, #f4f7fb, #dde6f1);
      border-style: dashed;
      border-width: 1.5px;
      color: var(--secondary);
    }
    .know-card-image-coming-soon span {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      padding: 18px;
      font-size: 1rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .know-card-image-coming-soon::before {
      content: none;
    }
    .know-card-coming-soon .know-card-caption {
      text-align: center;
      color: var(--secondary);
    }
    .know-card-coming-soon-full {
      padding: 0;
      min-height: 100%;
      overflow: hidden;
    }
    .know-card-coming-soon-fill {
      display: grid;
      place-items: center;
      width: 100%;
      min-height: 100%;
      height: 100%;
      padding: 32px 24px;
      background: linear-gradient(135deg, #f4f7fb, #dde6f1);
      color: var(--secondary);
      border-radius: 12px;
      text-align: center;
      border: 1.5px dashed #b9c8da;
    }
    .know-card-coming-soon-fill span {
      font-size: clamp(1.15rem, 2vw, 1.6rem);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.4;
    }

    /* profile */
    .profile-card {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 28px;
      padding: 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
    }
    .profile-photo {
      min-height: 260px;
      border-radius: 18px;
      background: linear-gradient(135deg, #d9e5f2, #bdcfdf);
      position: relative;
      overflow: hidden;
      display: block;
    }
    .profile-photo.has-photo {
      background: #eef3f8;
    }
    .profile-photo.has-photo::before {
      content: none;
    }
    .profile-photo.has-photo img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      object-position: center top;
    }
    .profile-photo::before {
      content: "講師写真（差し替え予定）";
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 0.8rem;
      padding: 6px 10px;
      background: rgba(255,255,255,0.65);
      border-radius: 999px;
    }
    .profile-name {
      font-size: 1.55rem;
      color: var(--primary);
      font-weight: 900;
      margin-bottom: 8px;
    }
    .profile-role { color: var(--secondary); font-weight: 800; margin-bottom: 14px; }
    .profile-list {
      margin-top: 14px;
      display: grid;
      gap: 10px;
    }
    .profile-list li {
      color: var(--muted);
      margin-left: 1.2em;
    }

    /* overview/company */
    .table-wrap {
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      background: #fff;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.98rem;
    }
    th, td {
      padding: 18px 20px;
      border-bottom: 1px solid #eef2f7;
      vertical-align: top;
    }
    th {
      width: 220px;
      background: #f8fbff;
      color: var(--primary);
      text-align: left;
      font-weight: 800;
    }
    tr:last-child th, tr:last-child td { border-bottom: none; }
    td { color: var(--text); }

    .company-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      width: 100%;
    }
    .company-card {
      padding: 30px 32px;
      display: grid;
      gap: 14px;
    }
    .company-card h3 {
      font-size: 1.25rem;
      color: var(--primary);
      margin: 0;
    }
    .company-card p {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.9;
      margin: 0;
    }

    /* faq */
    .faq-list { display: grid; gap: 14px; }
    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .faq-q {
      padding: 18px 20px;
      background: #fbfcfe;
      color: var(--primary);
      font-weight: 800;
      border-bottom: 1px solid #eef2f7;
    }
    .faq-a {
      padding: 18px 20px;
      color: var(--muted);
      font-size: 0.97rem;
    }

    /* final cta */
    .final-cta {
      border-radius: 22px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      box-shadow: var(--shadow);
    }
    .final-cta-inner {
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 18px;
      padding: 28px 32px;
      align-items: center;
    }
    .final-cta h2 {
      color: #fff;
      margin-bottom: 10px;
      font-size: clamp(1.5rem, 2.4vw, 2rem);
    }
    .final-cta p {
      color: rgba(255,255,255,0.88);
      margin: 0;
    }
    .know-final-cta {
      margin-top: 28px;
    }
    .cta-panel {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      padding: 20px 22px;
    }

    /* form */
    .form-shell {
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }
    .form-body { padding: 0; }
    .zoho-form-embed {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }
    .zoho-form-embed iframe {
      display: block;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      border: none;
    }

    /* footer */
    .site-footer {
      margin-top: 80px;
      padding: 28px 0 40px;
      background: var(--primary);
      color: rgba(255,255,255,0.76);
      text-align: center;
      font-size: 0.92rem;
    }

    /* responsive */
    @media (max-width: 1024px) {
      .media-wrap,
      .final-cta-inner,
      .feature-row,
      .feature-row:nth-child(even),
      .company-grid,
      .profile-card {
        grid-template-columns: 1fr;
      }
      .feature-row:nth-child(even) .feature-visual { order: initial; }
      .grid-3 { grid-template-columns: 1fr 1fr; }
      .hero-cta-overlay {
        right: 22px;
        bottom: 22px;
      }
      .final-cta-inner { padding: 24px 26px; }
      .profile-photo { min-height: 220px; }
    }
    @media (max-width: 768px) {
      .about-section-title {
        white-space: normal;
      }
      .about-section-title-note {
        font-size: 0.86em;
      }
      .logo-image {
        height: 40px;
      }
      .section { padding: 56px 0; }
      .section-title-with-accent {
        gap: 10px;
      }
      .section-title-accent {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
      }
      .header-inner { padding: 12px 0; align-items: flex-start; }
      .header-nav { gap: 10px 14px; }
      .header-nav a.nav-link { display: none; }
      .grid-2, .grid-3, .challenge-grid, .target-grid, .know-grid, .form-grid, .check-grid {
        grid-template-columns: 1fr;
      }
      .hero-wrap { padding-top: 20px; }
      .hero-inner {
        aspect-ratio: auto;
        min-height: 240px;
        background-position: 56% center;
      }
      .know-card {
        min-height: auto;
      }
      .know-card-visual {
        float: none;
        width: 100%;
        max-width: none;
        margin: 16px 0 0;
      }
      .know-card-coming-soon-fill {
        min-height: 220px;
        padding: 28px 20px;
      }
      .know-bottom-cta .btn {
        width: 100%;
        min-width: 0;
      }
      .hero-cta-overlay {
        right: 14px;
        left: 14px;
        bottom: 14px;
        justify-content: stretch;
      }
      .hero-cta-overlay .btn {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
        font-size: 0.95rem;
      }
      .voice-card { flex-direction: column; }
      .cta-panel { padding: 18px; }
      .company-card { padding: 24px 20px; }
      .feature-row { padding: 22px; }
      th, td { display: block; width: 100%; }
      th { border-bottom: none; padding-bottom: 8px; }
      td { padding-top: 0; }
      .form-body { padding: 0; }
    }
