*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}
    :root {
      --primary: #2BADC8;
      --primary-light: #E6F6FB;
      --primary-dark: #1E8AA2;
      --secondary: #F5CC20;
      --cta: #E06060;
      --cta-hover: #C04040;
      --text: #333;
      --text-light: #666;
      --bg-light: #F0FAFD;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --radius: 12px;
    }

    h1 { font-size: clamp(24px, 4vw, 42px); font-weight: 900; line-height: 1.35; }
    h2 { font-size: clamp(20px, 3vw, 34px); font-weight: 800; line-height: 1.4; }
    h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; line-height: 1.5; }
    p { margin-bottom: 1rem; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-white { background: #fff; }
    .section-light { background: var(--bg-light); }

    /* ========== HEADER ========== */
    header { position: sticky; top: 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; padding: 12px 0; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-text { font-size: 22px; font-weight: 900; color: var(--primary); }
    .logo-sub { font-size: 11px; color: var(--text-light); margin-top: 2px; }
    nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    nav a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 600; transition: color 0.2s; }
    nav a:hover { color: var(--primary); }
    .btn-nav { background: var(--cta) !important; color: white !important; padding: 10px 18px; border-radius: 6px; font-size: 13px !important; }
    .btn-nav:hover { background: var(--cta-hover) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; border-radius: 6px; transition: background 0.2s; }
    .hamburger:hover { background: var(--primary-light); }
    .hamburger span { display: block; width: 24px; height: 2px; background: #444; border-radius: 2px; transition: all 0.3s ease; transform-origin: left center; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(2px, -1px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(2px, 1px); }

    /* ========== HERO ========== */
    .hero { background: linear-gradient(135deg, #D6F3FA 0%, #EAF8FD 50%, #FFFDE8 100%); padding: 80px 0 70px; }
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .hero-badge { display: inline-block; background: var(--secondary); color: #333; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 18px; }
    .hero-title { color: #1A2A3A; margin-bottom: 18px; }
    .hero-title em { color: var(--primary); font-style: normal; }
    .hero-sub { font-size: 17px; color: var(--text); margin-bottom: 28px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
    .btn-primary { background: var(--cta); color: white; padding: 16px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 16px; display: inline-block; transition: all 0.2s; }
    .btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); }
    .btn-secondary { background: white; color: var(--primary); border: 2px solid var(--primary); padding: 14px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 15px; display: inline-block; transition: all 0.2s; }
    .btn-secondary:hover { background: var(--primary); color: white; }
    .hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.hero-img-box {
  background: rgba(43,173,200,0.08);
  border: none;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 30px;
  text-align: center;
}

.hero-img-box p {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

    /* ========== SECTION HEADER ========== */
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-label { display: inline-block; background: var(--secondary); color: #333; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 10px; }
    .section-header h2 { color: #1A2A3A; }
    .section-header p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 14px auto 0; }
    .divider { width: 50px; height: 4px; background: var(--primary); border-radius: 2px; margin: 12px auto 0; }

    /* ========== PAIN POINTS ========== */
    .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pain-card { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid #E07070; text-align: center; }
    .pain-icon { font-size: 42px; margin-bottom: 12px; }
    .pain-card h3 { font-size: 17px; color: #C03030; margin-bottom: 10px; }
    .pain-card p { font-size: 14px; color: var(--text-light); margin: 0; }
    .pain-solution { text-align: center; margin-top: 36px; padding: 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
    .pain-solution p { margin: 0; font-size: 20px; font-weight: 800; color: #1A2A3A; }
    .pain-solution em { color: var(--primary); font-style: normal; font-size: 24px; }

    /* ========== FEATURES ========== */
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .feature-card { background: white; border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; transition: transform 0.2s; }
    .feature-card:hover { transform: translateY(-5px); }
    .feature-icon { font-size: 50px; margin-bottom: 16px; }
    .feature-card h3 { color: var(--primary-dark); margin-bottom: 12px; }
    .feature-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.8; }

    /* ========== TECHNOLOGY ========== */
    .tech-section { background: #0F2A3A; padding: 80px 0; }
    .tech-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .tech-label { display: inline-block; background: var(--secondary); color: #333; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
    .tech-inner h2 { color: white; margin-bottom: 20px; }
    .tech-inner p { color: rgba(255,255,255,0.82); }
    .tech-highlight { background: var(--secondary); color: #333; padding: 2px 8px; border-radius: 4px; font-weight: 700; }
    .tech-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
    .tech-stat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 18px 14px; text-align: center; }
    .tech-stat-num { font-size: 26px; font-weight: 900; color: var(--secondary); display: block; margin-bottom: 4px; }
    .tech-stat-label { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.5; }
    .tech-note { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 16px !important; }
    .tech-diagram-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 24px; }
    .tech-heads { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
    .tech-head-card { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 18px 14px; text-align: center; }
    .tech-head-icon { font-size: 30px; margin-bottom: 8px; }
    .tech-head-name { font-weight: 700; color: var(--secondary); font-size: 14px; margin-bottom: 8px; }
    .tech-head-desc { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ========== STEPS ========== */
    .steps-wrapper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .step-card { background: white; border-radius: var(--radius); padding: 24px 16px; box-shadow: var(--shadow); text-align: center; }
    .step-num { width: 56px; height: 56px; background: var(--primary); color: white; font-size: 22px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
    .step-title { font-size: 14px; font-weight: 700; color: #1A2A3A; margin-bottom: 8px; }
    .step-desc { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.7; }
    .step-point { background: var(--primary-light); border-left: 4px solid var(--primary); padding: 18px 22px; border-radius: 0 8px 8px 0; margin-top: 36px; }
    .step-point p { margin: 0; font-size: 14px; color: var(--primary-dark); font-weight: 600; }

    /* ========== COMPARISON ========== */
    .comp-table { width: 100%; border-collapse: separate; border-spacing: 0; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; font-size: 14px; }
    .comp-table th { padding: 16px 18px; text-align: center; font-weight: 700; font-size: 15px; }
    .comp-table th:first-child { background: #4A5568; color: white; text-align: left; }
    .comp-table th:nth-child(2) { background: #718096; color: white; }
    .comp-table th:nth-child(3) { background: var(--primary); color: white; }
    .comp-table td { padding: 14px 18px; border-bottom: 1px solid #EDF2F7; text-align: center; background: white; }
    .comp-table td:first-child { font-weight: 600; text-align: left; background: #F7FAFC; }
    .comp-table tr:last-child td { border-bottom: none; }
    .comp-table tr:nth-child(even) td { background: #F0FAFD; }
    .comp-table tr:nth-child(even) td:first-child { background: #E8F4F8; }
    .chk { color: #2E9B6E; font-size: 18px; font-weight: 900; }
    .bax { color: #C53030; font-size: 18px; }
    .tri { color: #D69E2E; font-size: 15px; font-weight: 700; }

    /* ========== EFFECTS ========== */
    .effects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .effect-card { background: white; border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; border-bottom: 4px solid var(--primary); }
    .effect-icon { font-size: 48px; margin-bottom: 12px; }
    .effect-label { font-size: 17px; font-weight: 700; color: #1A2A3A; margin-bottom: 10px; }
    .effect-desc { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.8; }

    /* ========== TARGETS ========== */
    .target-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
    .target-card { background: white; border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: var(--shadow); }
    .target-icon { font-size: 40px; margin-bottom: 10px; }
    .target-card h3 { font-size: 14px; color: var(--primary-dark); font-weight: 700; }

    /* ========== TESTIMONIALS ========== */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
    .testi-stars { color: #F6AD55; font-size: 20px; margin-bottom: 10px; }
    .testi-text { font-size: 14px; color: var(--text); line-height: 1.85; margin-bottom: 16px; font-style: italic; border-left: 3px solid var(--primary-light); padding-left: 12px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 40px; height: 40px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .testi-name { font-size: 13px; font-weight: 700; }
    .testi-salon { font-size: 12px; color: var(--text-light); }
    .testi-more { text-align: center; margin-top: 36px; }

    /* ========== SDGs ========== */
    .sdgs-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
    .sdgs-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 2px solid #48BB78; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 700; color: #276749; }

    /* ========== FAQ ========== */
    .faq-list { max-width: 820px; margin: 0 auto; }
    .faq-item { background: white; border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
    .faq-q { padding: 20px 24px; font-weight: 700; font-size: 16px; color: #1A2A3A; display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
    .faq-q-icon { background: var(--primary); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
    .faq-a { padding: 0 24px 20px 64px; font-size: 14px; color: var(--text-light); line-height: 1.9; border-top: 1px solid #EDF2F7; padding-top: 14px; }
    .faq-a-tag { color: #D69E2E; font-weight: 800; margin-right: 6px; }

    /* ========== SPECS ========== */
    .specs-table { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
    .specs-table td { padding: 15px 20px; border-bottom: 1px solid #EDF2F7; font-size: 14px; }
    .specs-table td:first-child { background: var(--primary-light); font-weight: 700; width: 40%; }
    .specs-table tr:last-child td { border-bottom: none; }

    /* ========== CTA ========== */
    .cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 0; text-align: center; }
    .cta-section h2 { color: white; margin-bottom: 14px; }
    .cta-section p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .btn-cta1 { background: var(--secondary); color: #333; padding: 18px 38px; border-radius: 8px; text-decoration: none; font-weight: 900; font-size: 18px; display: inline-block; transition: all 0.2s; }
    .btn-cta1:hover { background: white; transform: translateY(-2px); }
    .btn-cta2 { background: rgba(255,255,255,0.12); color: white; border: 2px solid rgba(255,255,255,0.5); padding: 16px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 16px; display: inline-block; transition: all 0.2s; }
    .btn-cta2:hover { background: rgba(255,255,255,0.22); }
    .cta-note { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 18px; }

    /* ========== NEWS ========== */
    .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
    .news-list { list-style: none; }
    .news-item { padding: 14px 0; border-bottom: 1px solid #EDF2F7; display: flex; gap: 14px; align-items: flex-start; }
    .news-date { font-size: 12px; color: var(--text-light); white-space: nowrap; margin-top: 2px; }
    .news-item a { color: var(--text); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .news-item a:hover { color: var(--primary); }
    .blog-list { display: flex; flex-direction: column; gap: 14px; }
    .blog-card { background: var(--bg-light); border-radius: 8px; padding: 16px; text-decoration: none; display: block; transition: transform 0.2s; }
    .blog-card:hover { transform: translateY(-2px); }
    .blog-date { font-size: 11px; color: var(--text-light); }
    .blog-title { color: var(--text); font-size: 14px; font-weight: 600; margin: 4px 0 0; }
    .blog-more { margin-top: 14px; }
    .blog-more a { color: var(--primary); font-size: 14px; font-weight: 600; text-decoration: none; }

    /* ========== FOOTER ========== */
    footer { background: #1A2A3A; color: rgba(255,255,255,0.8); padding: 56px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-logo { font-size: 20px; font-weight: 900; color: white; margin-bottom: 10px; }
    .footer-desc { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.65); }
    .footer-company { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 14px; line-height: 1.7; }
    .footer-nav h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
    .footer-nav ul { list-style: none; }
    .footer-nav li { margin-bottom: 8px; }
    .footer-nav a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer-nav a:hover { color: white; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .hero-inner, .tech-inner, .news-grid { grid-template-columns: 1fr; }
      .pain-grid, .features-grid, .effects-grid, .testi-grid { grid-template-columns: 1fr; }
      .steps-wrapper { grid-template-columns: 1fr 1fr; }
      .target-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hamburger { display: flex; }
      header nav,
      #global-nav { display: none; width: 100%; flex-direction: column; padding: 10px 0 16px; border-top: 1px solid #EDF2F7; margin-top: 10px; gap: 2px; }
      header nav.open,
      #global-nav.open { display: flex; }
      header nav a,
      #global-nav a { padding: 11px 8px; border-bottom: 1px solid #F3F3F3; font-size: 15px; }
      header nav a:last-child,
      #global-nav a:last-child { border-bottom: none; }
      .btn-nav { text-align: center !important; margin-top: 6px; padding: 13px 20px !important; border-radius: 8px !important; }
    }
    @media (max-width: 600px) {
      .steps-wrapper, .target-grid, .tech-stats, .tech-heads, .footer-grid { grid-template-columns: 1fr; }
      .hero-btns, .cta-btns { flex-direction: column; }
      .footer-bottom { flex-direction: column; }
    }

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer-company {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}
/* ========== CONTACT PAGE / MW WP FORM ========== */

.contact-intro {
  background: linear-gradient(135deg, #D6F3FA 0%, #FFFDE8 100%);
  padding: 56px 0 44px;
  text-align: center;
}

.contact-lead {
  font-size: 18px;
  font-weight: 700;
  color: #1A2A3A;
  line-height: 1.9;
  margin: 0;
}

.contact-section {
  background: var(--bg-light);
  padding: 70px 0;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 48px;
}

.contact-form-list {
  margin: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #EDF2F7;
}

.contact-form-row:first-child {
  padding-top: 0;
}

.contact-form-row dt {
  font-weight: 700;
  color: #1A2A3A;
  line-height: 1.6;
}

.contact-form-row dd {
  margin: 0;
}

.contact-form .required,
.contact-form .optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: middle;
}

.contact-form .required {
  background: var(--cta);
  color: #fff;
}

.contact-form .optional {
  background: #E2E8F0;
  color: var(--text-light);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea,
.contact-form .form-control {
  width: 100%;
  border: 1px solid #DDE7EC;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.7;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea,
.contact-form .textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43, 173, 200, 0.14);
}

.contact-form ::placeholder {
  color: #A0AEC0;
}

.privacy-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}

.privacy-notice {
  font-size: 13px;
  color: #1E5F74;
  line-height: 1.8;
  margin: 0 0 14px;
}

.privacy-notice a {
  color: var(--primary);
  font-weight: 700;
}

.privacy-check {
  font-size: 14px;
  font-weight: 700;
  color: #1A2A3A;
}

.privacy-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.contact-submit {
  text-align: center;
  margin-top: 28px;
}

.contact-submit-button,
.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  display: inline-block;
  min-width: 260px;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-submit-button:hover,
.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.mw_wp_form .error {
  display: block;
  color: #C53030;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.mw_wp_form_confirm .contact-form-row {
  grid-template-columns: 220px 1fr;
}

.mw_wp_form_confirm .contact-form input,
.mw_wp_form_confirm .contact-form textarea,
.mw_wp_form_confirm .contact-form select {
  background: #F7FAFC;
}

.mw_wp_form_confirm .contact-form-row dd {
  background: #F7FAFC;
  border-radius: 8px;
  padding: 13px 14px;
  min-height: 50px;
  color: var(--text);
}

@media (max-width: 700px) {
  .contact-intro {
    padding: 44px 0 36px;
  }

  .contact-lead {
    font-size: 16px;
    text-align: left;
  }

  .contact-section {
    padding: 48px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form-row,
  .mw_wp_form_confirm .contact-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .contact-form-row dt {
    font-size: 15px;
  }

  .contact-form .required,
  .contact-form .optional {
    margin-left: 4px;
  }

  .privacy-check label {
    align-items: flex-start;
  }

  .contact-submit-button,
  .contact-form input[type="submit"],
  .contact-form button[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}
/* Utility override: remove the old dashed hero image border if any stale inline/page CSS remains. */
.hero-img-box {
  border: none !important;
}
