:root {
  --ink: #132433;
  --ink-soft: #526472;
  --paper: #f7f9f8;
  --white: #ffffff;
  --line: #dbe5e5;
  --teal: #20b7c9;
  --teal-dark: #087e91;
  --yellow: #f4cf3c;
  --orange: #f36a4f;
  --violet: #6157df;
  --navy: #102735;
  --shadow: 0 22px 60px rgba(19, 36, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 12px 12px 12px 3px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 4px;
  opacity: 0.65;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 38px);
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.global-nav a,
.header-link,
.back-top {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.global-nav a:hover,
.header-link:hover,
.back-top:hover {
  color: var(--yellow);
}

.header-link {
  padding: 8px 0 8px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 88, 103, 0.9), rgba(17, 39, 53, 0.2));
  content: "";
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 7%;
  bottom: -22%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  left: -110px;
  width: 260px;
  height: 260px;
  background: rgba(32, 183, 201, 0.18);
}

.hero-glow-two {
  top: -120px;
  right: 20%;
  width: 310px;
  height: 310px;
  background: rgba(244, 207, 60, 0.11);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 50px;
  padding-top: 100px;
  padding-bottom: 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index,
.product-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

h1 span,
h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lock {
  color: var(--white);
  white-space: nowrap;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffe36a;
}

.button-quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-quiet:hover {
  border-color: var(--white);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.hero-tags span {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  min-height: 515px;
}

.hero-card {
  position: absolute;
  z-index: 2;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(241, 247, 247, 0.9);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  top: 36px;
  right: 8%;
  width: min(380px, 68%);
  transform: rotate(3deg);
}

.hero-card-float {
  bottom: 22px;
  left: 0;
  width: min(300px, 58%);
  transform: rotate(-5deg);
}

.card-topline,
.hero-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-topline {
  padding: 4px 2px 10px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.status-dot::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #33ad74;
  content: "";
}

.mini-arrow {
  color: var(--violet);
  font-size: 15px;
}

.hero-card img {
  width: 100%;
  border-radius: 6px;
}

.hero-card-main img {
  aspect-ratio: 764 / 750;
  object-fit: cover;
}

.hero-card-float img {
  aspect-ratio: 2550 / 1594;
  object-fit: cover;
  object-position: left top;
}

.hero-card-caption {
  padding: 11px 2px 2px;
}

.hero-card-caption strong {
  font-size: 12px;
}

.hero-card-caption span {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 0;
  right: 0;
  width: 440px;
  height: 440px;
}

.hero-orbit-two {
  right: 19%;
  bottom: 3%;
  width: 220px;
  height: 220px;
  border-color: rgba(244, 207, 60, 0.3);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--yellow);
}

.section {
  padding: 124px 0;
}

.intro {
  background: var(--white);
}

.intro-grid,
.company-grid {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  gap: 52px;
}

.section-index {
  color: var(--teal-dark);
}

.section-index span {
  margin: 0 4px;
  color: var(--line);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

h2 em {
  color: var(--teal-dark);
  font-style: normal;
}

.heading-plus {
  color: var(--orange);
}

.section-lead,
.section-heading > p:last-child {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.intro-points div {
  display: grid;
  gap: 8px;
}

.intro-points b {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.intro-points span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.section-tint {
  background: #eff6f5;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  gap: 52px;
  margin-bottom: 54px;
}

.section-heading h2,
.section-heading > p:last-child {
  grid-column: 2;
}

.section-heading .section-index {
  grid-row: 1 / span 3;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.platform-card {
  position: relative;
  min-height: 290px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(19, 36, 51, 0.05);
}

.platform-card::after {
  position: absolute;
  right: -24px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
  content: "";
}

.platform-number {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.platform-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin: 32px 0 16px;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.platform-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.platform-card p {
  min-height: 70px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.platform-link {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.platform-mac { color: #5060d0; }
.platform-mac .platform-icon { background: #e6e7ff; }
.platform-windows { color: #078ca3; }
.platform-windows .platform-icon { background: #dcf7f7; }
.platform-ios { color: #eb6b4e; }
.platform-ios .platform-icon { background: #fff0e8; }
.platform-web { color: #b48b0c; }
.platform-web .platform-icon { background: #fff6cd; }

.products {
  background: var(--white);
}

.products-heading {
  margin-bottom: 64px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.product-card-weather {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
}

.product-visual {
  position: relative;
  min-height: 300px;
  padding: 25px;
  overflow: hidden;
}

.product-visual-monitor {
  background: #d9e9e8;
}

.product-visual-narration {
  background: #e7edf4;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--white);
  background: rgba(16, 39, 53, 0.8);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-visual-monitor img {
  width: 75%;
  margin: 54px auto 0;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(19, 36, 51, 0.18);
  transform: rotate(2deg);
}

.product-visual-narration img {
  width: 94%;
  margin: 58px auto 0;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(19, 36, 51, 0.15);
}

.product-body {
  padding: 28px 30px 32px;
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 10px;
}

.product-body h3 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.product-body > p:not(.product-kicker) {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-meta li {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  font-size: 10px;
}

.weather-visual {
  min-height: 370px;
  background: linear-gradient(135deg, #eef2ff, #e5f7f8);
}

.weather-screens {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  height: 100%;
  padding-top: 40px;
}

.weather-screens img {
  width: 28%;
  min-width: 120px;
  border: 7px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 22px 36px rgba(19, 36, 51, 0.18);
}

.weather-screens img:first-child {
  transform: rotate(-5deg) translateY(9px);
}

.weather-screens img:last-child {
  transform: rotate(5deg);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-heading-light .section-index,
.section-heading-light h2 em {
  color: var(--yellow);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article {
  min-height: 235px;
  padding: 26px 22px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article:not(:first-child) {
  padding-left: 22px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-grid h3 {
  margin: 28px 0 10px;
  font-size: 17px;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.8;
}

.process-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.process-footnote i {
  width: 34px;
  height: 1px;
  background: var(--teal);
}

.company {
  background: var(--white);
}

.company-info {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-info div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-info dt {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.company-info dd {
  margin: 0;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  color: var(--orange);
  font-size: 16px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}

.contact::after {
  position: absolute;
  top: -240px;
  right: -80px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding-top: 115px;
  padding-bottom: 115px;
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact h2 {
  max-width: 740px;
  margin: 24px 0 18px;
  font-size: clamp(34px, 4.6vw, 64px);
}

.contact h2 span {
  color: var(--yellow);
}

.contact p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--yellow);
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 105px;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--yellow);
}

.footer-inner p,
.back-top {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.back-top {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 430px;
    max-width: 640px;
    margin: -20px auto 0;
    width: 100%;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 560px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy small,
  .global-nav {
    display: none;
  }

  .header-link {
    margin-left: auto;
    padding-left: 16px;
  }

  .hero {
    min-height: 930px;
  }

  .hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
  }

  .hero-grid {
    gap: 15px;
    padding-top: 125px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-lead {
    font-size: 14px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 8px;
  }

  .hero-card-main {
    right: 0;
    width: 74%;
  }

  .hero-card-float {
    bottom: 0;
    width: 64%;
  }

  .hero-orbit-one {
    top: 50px;
    right: -100px;
    width: 340px;
    height: 340px;
  }

  .section {
    padding: 82px 0;
  }

  .intro-grid,
  .company-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading .section-index {
    grid-row: auto;
  }

  h2 {
    font-size: 36px;
  }

  .intro-points {
    gap: 8px;
  }

  .intro-points span {
    font-size: 11px;
  }

  .platform-grid,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 230px;
  }

  .platform-icon {
    margin-top: 22px;
  }

  .product-card-weather {
    grid-column: auto;
  }

  .product-visual {
    min-height: 270px;
  }

  .product-body {
    padding: 24px 22px 27px;
  }

  .product-body > p:not(.product-kicker) {
    min-height: 0;
  }

  .weather-visual {
    min-height: 340px;
  }

  .weather-screens {
    gap: 12px;
  }

  .weather-screens img {
    width: 34%;
    min-width: 0;
    border-width: 5px;
    border-radius: 13px;
  }

  .process-grid {
    border-bottom: 0;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: 0;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-grid h3 {
    margin-top: 12px;
  }

  .company-info div {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  .contact-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0;
  }
}

/* お問い合わせフォーム */
.contact-page {
  background: var(--paper);
}

.contact-page .site-header {
  position: fixed;
  color: var(--ink);
  background: rgba(247, 249, 248, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 22px rgba(19, 36, 51, 0.05);
  backdrop-filter: blur(14px);
}

.contact-page .header-link {
  border-left-color: var(--line);
}

.contact-page .global-nav a:hover,
.contact-page .header-link:hover {
  color: var(--teal-dark);
}

.contact-page-main {
  padding-top: 90px;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.contact-page-hero::after {
  position: absolute;
  right: 4%;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 105px;
  padding-bottom: 108px;
}

.contact-page-hero .eyebrow {
  color: var(--yellow);
}

.contact-page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 5.5vw, 72px);
}

.contact-page-hero h1 span {
  color: var(--yellow);
}

.contact-page-hero p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.contact-form-section {
  padding: 105px 0 125px;
  background: var(--white);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 80px;
  align-items: start;
}

.contact-aside h2 {
  margin: 22px 0 20px;
  font-size: clamp(32px, 4vw, 50px);
}

.contact-aside > p:not(.section-index) {
  max-width: 390px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-aside-note {
  display: grid;
  gap: 6px;
  margin-top: 42px;
  padding: 20px 22px;
  border-left: 3px solid var(--yellow);
  background: #fff9dc;
}

.contact-aside-note span {
  color: #a37b09;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-aside-note strong {
  font-size: 13px;
  line-height: 1.7;
}

.contact-form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-required-note {
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.form-required-note span,
.form-field label span {
  color: var(--orange);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid-half {
  grid-template-columns: repeat(2, 1fr);
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd9da;
  border-radius: 2px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(32, 183, 201, 0.14);
}

.form-error {
  display: block;
  margin-top: 6px;
  color: #c84d39;
  font-size: 11px;
}

.form-note {
  margin: 3px 0 23px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.button-submit {
  width: 100%;
  color: var(--ink);
  background: var(--yellow);
  cursor: pointer;
}

.button-submit:hover {
  background: #ffe36a;
}

.form-alert {
  padding: 18px 20px;
  margin-bottom: 22px;
  border-left: 3px solid;
  font-size: 13px;
}

.form-alert p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-alert-error {
  border-color: var(--orange);
  background: #fff0eb;
  color: #a74432;
}

.form-alert-success {
  min-height: 250px;
  border-color: var(--teal);
  background: #eafafa;
}

.form-alert-success strong {
  font-size: 20px;
}

.form-alert-success .text-link {
  margin-top: 30px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .contact-form-layout {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .contact-page-main {
    padding-top: 74px;
  }

  .contact-page-hero-inner {
    padding-top: 80px;
    padding-bottom: 78px;
  }

  .contact-page-hero h1 {
    font-size: 42px;
  }

  .contact-form-section {
    padding: 74px 0 85px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 23px 18px;
  }

  .form-grid-half {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
