:root {
  --navy-950: #071c32;
  --navy-900: #0b2f55;
  --navy-800: #123f6e;
  --blue-600: #2367a8;
  --blue-100: #eaf3fb;
  --red-600: #d83b45;
  --red-500: #e64b55;
  --red-100: #fff0f1;
  --ink: #152238;
  --muted: #5e6d7f;
  --line: #dce4eb;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --success: #167856;
  --shadow-sm: 0 12px 32px rgba(7, 28, 50, 0.08);
  --shadow-md: 0 24px 65px rgba(7, 28, 50, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  color: #fff;
  background: var(--navy-950);
}

.section-dark h2,
.section-dark p {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  color: #fff;
  background: var(--red-600);
  border: 1px solid var(--red-600);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(216, 59, 69, 0.2);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: #bf2f38;
  box-shadow: 0 12px 28px rgba(216, 59, 69, 0.28);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.language-toggle:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(35, 103, 168, 0.32);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button-outline:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: none;
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: var(--navy-950);
  background: #eaf3fb;
  border-color: #eaf3fb;
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 780;
  text-decoration: none;
}

.text-link span:last-child {
  transition: transform 160ms ease;
}

.text-link:hover span:last-child {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 235, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: #32435a;
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 0.73rem;
  font-weight: 750;
  cursor: pointer;
}

.toggle-track {
  position: relative;
  width: 35px;
  height: 20px;
  background: var(--blue-100);
  border: 1px solid #c9dced;
  border-radius: 999px;
}

.toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--blue-600);
  border-radius: 50%;
  transition: transform 180ms ease;
}

html[lang="ja"] .toggle-dot {
  transform: translateX(15px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 10% 16%, rgba(35, 103, 168, 0.08), transparent 33%),
    radial-gradient(circle at 95% 10%, rgba(216, 59, 69, 0.08), transparent 27%),
    #fff;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  background: linear-gradient(145deg, rgba(234, 243, 251, 0.8), rgba(255, 240, 241, 0.45));
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 78px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: #46586d;
  font-size: 0.93rem;
  font-weight: 650;
}

.hero-points li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 120, 86, 0.12);
  content: "";
}

.hero-panel {
  position: relative;
  min-height: 560px;
  padding: 54px 0 38px;
}

.panel-decoration {
  position: absolute;
  border-radius: 50%;
}

.panel-decoration-one {
  top: 0;
  right: 24px;
  width: 94px;
  height: 94px;
  background: var(--red-100);
}

.panel-decoration-two {
  bottom: 6px;
  left: 2px;
  width: 122px;
  height: 122px;
  background: var(--blue-100);
}

.join-card {
  position: relative;
  z-index: 1;
  padding: 38px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dfe7ee;
  border-radius: var(--radius-lg);
  box-shadow: 18px 18px 0 var(--navy-900), var(--shadow-md);
}

.join-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #2ca56f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 165, 111, 0.13);
}

.join-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.join-card > p {
  margin-bottom: 26px;
}

.meeting-form label,
.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 760;
}

.meeting-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd7e1;
  border-radius: 12px;
  transition: border 150ms ease, box-shadow 150ms ease;
}

input,
select {
  min-height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(35, 103, 168, 0.1);
  outline: 0;
}

.form-message {
  min-height: 24px;
  margin: 7px 0 0;
  color: var(--red-600);
  font-size: 0.85rem;
}

.lesson-preview {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  margin-top: 26px;
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid #e2e9ef;
  border-radius: 16px;
}

.preview-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 14px;
  font-weight: 800;
}

.lesson-preview strong,
.lesson-preview span {
  display: block;
}

.lesson-preview strong {
  color: var(--navy-950);
  font-size: 0.86rem;
}

.lesson-preview div span {
  color: var(--muted);
  font-size: 0.75rem;
}

.preview-time {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 760;
}

.feature-strip {
  padding: 24px 0;
  color: #fff;
  background: var(--navy-900);
}

.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.feature-strip-inner::-webkit-scrollbar {
  display: none;
}

.feature-strip span {
  position: relative;
  flex: 0 0 auto;
  padding-left: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.feature-strip span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ff9ca2;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.left-aligned {
  margin: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lesson-card {
  position: relative;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lesson-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.featured-card {
  border-color: #e4a2a7;
}

.card-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 10px;
  color: #a7252d;
  background: var(--red-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  place-items: center;
  background: var(--blue-100);
  border-radius: 16px;
  font-size: 1.45rem;
}

.lesson-card:nth-child(2) .card-icon {
  background: var(--red-100);
}

.lesson-card p {
  margin-bottom: 22px;
}

.lesson-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lesson-card li {
  position: relative;
  padding-left: 24px;
  color: #47586b;
  font-size: 0.92rem;
}

.lesson-card li::before {
  position: absolute;
  top: 0.43em;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  content: "";
}

.process-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.process-copy {
  position: sticky;
  top: 126px;
}

.process-copy p:not(.eyebrow) {
  margin-bottom: 26px;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.process-list h3 {
  margin-bottom: 7px;
}

.process-list p {
  margin: 0;
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red-600);
  background: var(--red-100);
  border-radius: 16px;
  font-weight: 850;
}

.confidence-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
}

.confidence-visual {
  position: relative;
  min-height: 420px;
  background: linear-gradient(145deg, var(--navy-900), #174f83);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.confidence-visual::before,
.confidence-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.confidence-visual::before {
  top: -70px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
}

.confidence-visual::after {
  bottom: -105px;
  left: -55px;
  width: 260px;
  height: 260px;
  background: rgba(230, 75, 85, 0.23);
}

.speech-card {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.speech-card span,
.speech-card small {
  display: block;
}

.speech-card span {
  margin-bottom: 7px;
  color: var(--navy-950);
  font-size: 1.2rem;
  font-weight: 800;
}

.speech-card small {
  color: var(--muted);
  line-height: 1.45;
}

.speech-card-one {
  top: 74px;
  left: 48px;
}

.speech-card-two {
  right: 38px;
  bottom: 70px;
}

.speech-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.confidence-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check-grid span {
  position: relative;
  padding: 13px 15px 13px 42px;
  color: #35485d;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-grid span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--success);
  content: "✓";
  font-weight: 900;
  transform: translateY(-50%);
}

.join-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.join-banner > div {
  max-width: 750px;
}

.join-banner .eyebrow {
  color: #ff9ca2;
}

.join-banner h2 {
  margin-bottom: 14px;
}

.join-banner p:last-child {
  margin-bottom: 0;
  color: #c2cede;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 85px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 46px 23px 0;
  color: var(--navy-950);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--red-600);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 44px 22px 0;
  margin: 0;
}

.section-contact {
  background:
    linear-gradient(135deg, rgba(234, 243, 251, 0.76), rgba(255, 240, 241, 0.6)),
    #fff;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.contact-copy {
  padding-top: 24px;
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--navy-950);
}

.contact-note a {
  color: var(--blue-600);
  font-weight: 720;
}

.contact-form {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 20px;
}

.form-hint {
  margin: 12px 0 0;
  font-size: 0.8rem;
  text-align: center;
}

.site-footer {
  padding: 62px 0 34px;
  color: #aebdcb;
  background: var(--navy-950);
}

.site-footer img {
  width: 220px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 60px;
}

.site-footer p {
  max-width: 430px;
  color: #aebdcb;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #d5e0e9;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    gap: 48px;
  }

  .process-grid,
  .confidence-grid,
  .contact-grid {
    gap: 58px;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    top: 79px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #edf1f5;
  }

  .header-actions {
    margin-left: 0;
  }

  .hero-grid,
  .process-grid,
  .confidence-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: min(100%, 610px);
    min-height: auto;
    margin: 0 auto;
  }

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

  .lesson-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
  }

  .lesson-card .card-icon {
    grid-row: 1 / 4;
  }

  .lesson-card p,
  .lesson-card ul,
  .lesson-card h3 {
    grid-column: 2;
  }

  .process-copy {
    position: static;
  }

  .confidence-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .faq-grid {
    gap: 36px;
  }

  .join-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 176px;
  }

  .site-nav {
    top: 71px;
  }

  .language-toggle {
    gap: 4px;
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 60px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-points {
    display: grid;
  }

  .hero-panel {
    padding-top: 35px;
  }

  .join-card {
    padding: 27px 21px;
  }

  .join-card {
    box-shadow: 10px 12px 0 var(--navy-900), var(--shadow-md);
  }

  .meeting-control {
    grid-template-columns: 1fr;
  }

  .lesson-preview {
    grid-template-columns: auto 1fr;
  }

  .preview-time {
    display: none;
  }

  .lesson-card {
    display: block;
    padding: 28px 23px;
  }

  .lesson-card .card-icon {
    margin-bottom: 20px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }

  .confidence-visual {
    min-height: 390px;
  }

  .speech-card {
    max-width: 235px;
    padding: 18px;
  }

  .speech-card-one {
    top: 52px;
    left: 22px;
  }

  .speech-card-two {
    right: 18px;
    bottom: 48px;
  }

  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
