:root {
  --navy:#0f243f;
  --primary:#185fa5;
  --teal:#0f766e;
  --text:#172b42;
  --muted:#4f6174;
  --soft:#f3f6f8;
  --border:#d7e0e8;
  --mint:#94e5d6;
  --width:1160px;
  font-family:"Apple SD Gothic Neo","Noto Sans KR",system-ui,sans-serif;
  color:var(--text);
  font-size:18px;
  line-height:1.7;
  font-synthesis:none;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:104px;
}
body {
  margin:0;
  background:#fff;
  word-break:keep-all;
  overflow-wrap:break-word;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
button {
  font:inherit;
  cursor:pointer;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
figure,p,h1,h2,h3 {
  margin:0;
}
a,button {
  -webkit-tap-highlight-color:transparent;
}
button:disabled {
  cursor:wait;
  opacity:.7;
}
[hidden] {
  display:none!important;
}
:focus-visible {
  outline:3px solid var(--primary);
  outline-offset:5px;
}
section:focus,main:focus {
  outline:none;
}
.hero :focus-visible,.company-section :focus-visible {
  outline-color:var(--mint);
}
.container {
  width:min(var(--width),calc(100% - 80px));
  margin-inline:auto;
}
.skip-link {
  position:fixed;
  top:12px;
  left:20px;
  padding:12px 20px;
  background:white;
  color:var(--navy);
  z-index:20;
  transform:translateY(-160%);
}
.skip-link:focus {
  transform:none;
}
.site-header {
  position:sticky;
  top:0;
  z-index:10;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header-inner {
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:48px;
  text-decoration:none;
  font-size:30px;
  font-weight:800;
  letter-spacing:-2px;
}
.brand-mark {
  width:26px;
  height:27px;
  border-left:6px solid var(--navy);
  border-right:6px solid var(--navy);
  position:relative;
}
.brand-mark:before {
  content:"";
  height:6px;
  background:var(--navy);
  position:absolute;
  left:0;
  right:0;
  top:10px;
}
.brand-mark:after {
  content:"";
  width:8px;
  height:8px;
  position:absolute;
  right:-9px;
  top:-4px;
  border-top:3px solid var(--teal);
  border-right:3px solid var(--teal);
}
nav {
  display:flex;
  align-items:center;
  gap:30px;
}
nav a {
  display:inline-flex;
  align-items:center;
  min-height:48px;
  text-decoration:none;
  font-size:17px;
  font-weight:600;
}
nav a:hover {
  color:var(--teal);
}
nav .nav-contact {
  background:var(--navy);
  color:#fff;
  padding:10px 22px;
  gap:20px;
  border-radius:8px;
}
nav .nav-contact:hover {
  background:var(--teal);
  color:white;
}
.menu-toggle {
  border:1px solid #71839a;
  background:white;
  border-radius:8px;
  min-height:44px;
  padding:5px 13px;
}
.hero {
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero-grid {
  padding-top:76px;
  padding-bottom:68px;
  display:grid;
  grid-template-columns:1.06fr 1fr;
  gap:56px;
  align-items:center;
}
.eyebrow {
  font-size:15px;
  letter-spacing:.03em;
  font-weight:650;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:10px;
}
.small-line {
  width:22px;
  height:2px;
  background:var(--mint);
  flex-shrink:0;
}
.hero .eyebrow {
  color:#d2e5ec;
}
.teal {
  color:var(--teal);
}
h1 {
  font-size:clamp(40px,4.05vw,56px);
  line-height:1.28;
  letter-spacing:-2.5px;
  font-weight:700;
}
h1 span {
  color:var(--mint);
}
.hero-description {
  font-size:18px;
  line-height:1.8;
  color:#d3deeb;
  margin-top:28px;
  max-width:510px;
}
.actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.button {
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  border-radius:8px;
  border:1px solid transparent;
  padding:12px 20px;
  font-size:17px;
  font-weight:650;
  text-decoration:none;
  line-height:1.5;
  transition:background .15s ease;
}
.button.primary {
  background:var(--teal);
  color:white;
}
.button.primary:hover {
  background:#095f59;
}
.hero .primary {
  background:var(--mint);
  color:var(--navy);
}
.hero .primary:hover {
  background:#b4f2e7;
}
.button.ghost {
  border-color:#71839a;
  color:#fff;
}
.button.ghost:hover {
  background:#233c59;
}
.button.secondary {
  background:#fff;
  border-color:#71839a;
  color:var(--text);
}
.button.secondary:hover {
  background:var(--soft);
}
.hero-file-note {
  font-size:15px;
  color:#b6c6d8;
  margin-top:14px;
}
.hero-visual {
  min-width:0;
}
.product-heading {
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:24px;
}
.product-heading strong {
  font-size:25px;
  line-height:1.3;
  letter-spacing:-.8px;
}
.product-heading div>span {
  display:block;
  font-size:14px;
  color:#c6d5e3;
  margin-top:3px;
}
.beta {
  font-size:13px;
  border:1px solid #7b91a6;
  border-radius:30px;
  padding:4px 10px;
  white-space:nowrap;
  margin-left:auto;
  color:#e0ebeF;
}
.product-preview {
  background:#fff;
  border:1px solid #c2d1dd;
  border-radius:13px;
  overflow:hidden;
  box-shadow:0 24px 60px #0003;
  color:var(--text);
}
.preview-top {
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#edf3f5;
  font-size:15px;
  font-weight:600;
  border-bottom:1px solid var(--border);
  gap:10px;
}
.preview-tag {
  font-size:12px;
  color:var(--muted);
  font-weight:400;
}
.screen-window {
  aspect-ratio:1.22;
  overflow:hidden;
  background:#fbf7ff;
}
.screen-window img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
}
.product-preview figcaption {
  font-size:13px;
  padding:10px 20px;
  color:var(--muted);
  border-top:1px solid var(--border);
}
.visual-caption {
  display:flex;
  gap:15px;
  align-items:center;
  padding:22px 0 0;
}
.check-circle {
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid #738b9f;
  border-radius:50%;
  color:var(--mint);
  flex-shrink:0;
}
.visual-caption p {
  font-size:16px;
  color:#c6d5e3;
  line-height:1.65;
}
.visual-caption strong {
  font-weight:600;
  color:#fff;
}
.diagram-arrow {
  font-size:32px;
  color:var(--mint);
  margin-left:auto;
}
.hero-bottom {
  border-top:1px solid #40526a;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:20px;
  padding-bottom:20px;
  color:#c6d5e3;
  font-size:15px;
}
.hero-bottom a {
  min-height:44px;
  display:inline-flex;
  gap:28px;
  align-items:center;
  text-decoration:none;
  color:white;
}
.section {
  padding-block:100px;
}
h2 {
  font-size:40px;
  line-height:1.35;
  letter-spacing:-1.5px;
  font-weight:700;
}
h3 {
  font-size:24px;
  line-height:1.45;
  letter-spacing:-.7px;
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:48px;
}
.section-lead {
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.inline-status {
  font-size:15px;
  color:var(--teal);
  display:inline-block;
  margin-top:10px;
}
.value-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-card {
  padding:32px 28px;
  border:1px solid var(--border);
  border-radius:16px;
  position:relative;
}
.card-number {
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
  color:var(--muted);
}
.value-card svg {
  display:block;
  width:44px;
  height:44px;
  fill:none;
  stroke:var(--teal);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-block:28px 24px;
}
.value-card p {
  color:var(--muted);
  margin-top:18px;
  font-size:17px;
}
.workflow-section {
  background:var(--soft);
}
.workflow-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}
.workflow-copy>.section-lead {
  margin-top:26px;
}
.steps {
  list-style:none;
  padding:0;
  margin:36px 0 0;
}
.steps li {
  display:flex;
  gap:22px;
  padding-block:21px;
  border-top:1px solid var(--border);
}
.steps li>span {
  font-size:16px;
  font-weight:650;
  color:var(--teal);
  padding-top:5px;
}
.steps h3 {
  font-size:21px;
}
.steps p {
  color:var(--muted);
  font-size:17px;
  margin-top:7px;
}
.report-stage {
  background:#e2e9ed;
  border-radius:16px;
  padding:24px 48px 34px;
  border:1px solid #d3dde3;
}
.report-label {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#304957;
  justify-content:center;
  margin-bottom:22px;
}
.teal-dot {
  width:7px;
  height:7px;
  background:var(--teal);
  border-radius:50%;
  flex-shrink:0;
}
.report-stage img {
  width:100%;
  box-shadow:0 12px 22px #20364a1a;
}
.report-figure figcaption {
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  margin-top:18px;
}
.materials-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.download-card {
  padding:40px;
  background:var(--navy);
  border-radius:16px;
  color:white;
  position:relative;
  overflow:hidden;
}
.download-card .eyebrow {
  color:#c6d5e3;
  margin-top:46px;
  margin-bottom:12px;
}
.download-card h3 {
  font-size:36px;
  letter-spacing:-1px;
  line-height:1.3;
}
.download-card>p:not(.eyebrow) {
  color:#c6d5e3;
  margin-top:14px;
}
.pdf-symbol {
  position:absolute;
  right:32px;
  top:32px;
  border:1px solid #627a94;
  border-radius:5px;
  width:62px;
  height:77px;
  padding:5px 11px;
  font-size:15px;
  display:flex;
  flex-direction:column;
  color:var(--mint);
}
.pdf-symbol span {
  font-size:27px;
  margin-left:auto;
  line-height:1.3;
}
.file-meta {
  font-size:15px;
}
.download-actions {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
  margin-top:32px;
}
.download-card .primary {
  background:white;
  color:var(--navy);
}
.download-card .primary:hover {
  background:#dcebe9;
}
.download-card :focus-visible {
  outline-color:var(--mint);
}
.text-link {
  display:inline-flex;
  align-items:center;
  min-height:48px;
  font-size:16px;
  gap:5px;
}
.new-tab {
  font-size:14px;
}
.comparison-card {
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px;
}
.comparison-card .eyebrow {
  margin-bottom:18px;
}
.comparison-card h3 {
  font-size:26px;
}
.time-comparison {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-block:24px;
  gap:14px;
}
.time-comparison>div>strong {
  display:block;
  font-size:60px;
  letter-spacing:-3px;
  line-height:1.3;
  font-weight:650;
}
.time-comparison strong>span {
  font-size:26px;
  margin-left:5px;
}
.time-comparison>div>span {
  font-size:16px;
  color:var(--muted);
}
.time-arrow {
  font-size:32px;
  color:#657c8b;
}
.assumption {
  font-size:17px;
  line-height:1.75;
  color:var(--muted);
  padding-top:24px;
  border-top:1px solid var(--border);
}
.assumption strong {
  color:var(--text);
  font-weight:550;
}
.company-section {
  background:var(--navy);
  padding-block:88px;
  color:#fff;
}
.company-grid {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:90px;
}
.company-section .eyebrow {
  color:var(--mint);
}
.company-copy p {
  color:#d3deeb;
  margin-top:20px;
  font-size:18px;
}
.company-wordmark {
  font-size:48px;
  letter-spacing:-3px;
  font-weight:750;
  line-height:1;
}
.company-wordmark span {
  color:var(--mint);
  margin-left:4px;
}
.contact-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
}
.contact-section .section-lead {
  margin-top:22px;
}
.contact-panel {
  padding-top:5px;
}
.contact-label {
  font-size:15px;
  color:var(--muted);
}
.email-address {
  display:block;
  width:fit-content;
  max-width:100%;
  font-size:clamp(25px,2.7vw,36px);
  line-height:1.4;
  color:var(--teal);
  letter-spacing:-1px;
  margin:8px 0 24px;
  font-weight:650;
  text-decoration-thickness:1px;
  overflow-wrap:anywhere;
  user-select:text;
}
.contact-panel>p:not(.contact-label) {
  color:var(--muted);
  font-size:17px;
}
.contact-panel .copy-status {
  min-height:29px;
  margin-top:14px;
  color:var(--teal)!important;
  font-size:16px!important;
}
.contact-panel .mail-help {
  font-size:15px!important;
  margin-top:10px;
}
.site-footer {
  border-top:1px solid var(--border);
  padding:32px 0;
  background:var(--soft);
}
.footer-inner {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.footer-brand {
  font-size:24px;
  font-weight:750;
  letter-spacing:-1px;
  margin-right:auto;
}
.footer-brand span {
  display:block;
  font-size:14px;
  letter-spacing:0;
  font-weight:400;
  color:var(--muted);
  margin-top:3px;
}
.site-footer a {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  font-size:15px;
}
.site-footer p {
  font-size:13px;
  color:var(--muted);
}
.back-top {
  text-decoration:none;
}
.error-page {
  max-width:760px;
  margin:15vh auto;
  padding:30px;
}
.error-page h1 {
  font-size:40px;
}
.error-page p {
  margin-bottom:24px;
}
.error-page .button {
  margin-top:26px;
}
@media(min-width:1440px) {
  .hero-grid {
    padding-block:88px;
  }
  .hero-visual {
    padding-left:8px;
  }
}
@media(max-width:1100px) {
  .hero-grid {
    gap:32px;
  }
  .hero .actions {
    gap:10px;
  }
  .hero .button {
    padding-inline:14px;
    gap:12px;
    font-size:16px;
  }
  .product-heading {
    flex-wrap:wrap;
  }
  .beta {
    margin-left:0;
  }
  .workflow-grid {
    gap:48px;
  }
  .company-grid {
    gap:48px;
  }
  .contact-grid {
    gap:40px;
  }
  .download-card,.comparison-card {
    padding:32px;
  }
  .value-card {
    padding:28px 22px;
  }
  .value-card h3 {
    font-size:22px;
  }
}
@media(max-width:959px) {
  .hero-grid {
    grid-template-columns:1fr;
    gap:44px;
    padding-top:56px;
  }
  .hero-copy {
    max-width:650px;
  }
  h1 {
    font-size:52px;
  }
  .hero-description {
    max-width:650px;
  }
  .hero-visual {
    max-width:620px;
    width:100%;
    margin-inline:auto;
  }
  .product-heading .beta {
    margin-left:auto;
  }
  .screen-window {
    aspect-ratio:1.6;
  }
  .hero-grid .hero-visual {
    margin-top:0;
  }
  .section {
    padding-block:76px;
  }
  .section-heading {
    align-items:flex-start;
    flex-direction:column;
    gap:24px;
  }
  h2 {
    font-size:36px;
  }
  .value-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .value-card:last-child {
    grid-column:1/-1;
  }
  .value-card h3 br {
    display:none;
  }
  .workflow-grid {
    gap:36px;
  }
  .report-stage {
    padding:24px;
  }
  .report-label {
    font-size:12px;
  }
  .materials-grid {
    grid-template-columns:1fr;
  }
  .download-card .eyebrow {
    margin-top:12px;
    padding-right:90px;
  }
  .company-grid,.contact-grid {
    grid-template-columns:1fr;
    gap:40px;
  }
  .company-copy {
    max-width:660px;
  }
  .contact-panel {
    max-width:660px;
  }
  .email-address {
    font-size:36px;
  }
  .footer-inner {
    gap:15px 28px;
  }
}
@media(max-width:719px) {
  .container {
    width:calc(100% - 40px);
  }
  .header-inner {
    min-height:76px;
    flex-wrap:wrap;
    gap:0;
    padding-block:12px;
  }
  .brand {
    font-size:27px;
  }
  .brand-mark {
    transform:scale(.9);
  }
  nav {
    width:100%;
    flex-direction:column;
    gap:0;
    align-items:stretch;
    padding-top:12px;
  }
  nav a {
    min-height:48px;
    padding:10px 12px;
  }
  nav .nav-contact {
    justify-content:space-between;
    margin-top:8px;
  }
  .hero-grid {
    padding-top:44px;
    padding-bottom:40px;
    gap:40px;
  }
  h1 {
    font-size:40px;
    letter-spacing:-1.8px;
  }
  .hero .eyebrow {
    font-size:14px;
    letter-spacing:0;
  }
  .hero-description {
    font-size:17px;
    margin-top:24px;
  }
  .hero .actions {
    align-items:stretch;
  }
  .hero .button {
    flex:1;
    font-size:16px;
    gap:10px;
    padding:12px 10px;
    white-space:nowrap;
  }
  .hero-file-note {
    font-size:14px;
  }
  .hero-bottom {
    font-size:13px;
    gap:18px;
    align-items:center;
  }
  .hero-bottom>span {
    max-width:165px;
  }
  .hero-bottom a {
    gap:12px;
    white-space:nowrap;
  }
  .product-heading {
    gap:10px;
  }
  .product-heading img {
    width:40px;
    height:40px;
  }
  .product-heading strong {
    font-size:22px;
  }
  .product-heading div>span {
    font-size:12px;
  }
  .beta {
    font-size:12px;
    padding:3px 8px;
  }
  .product-heading .beta {
    margin-left:0;
  }
  .preview-top {
    padding:12px 14px;
    font-size:14px;
  }
  .preview-tag {
    font-size:11px;
  }
  .product-preview figcaption {
    padding:9px 14px;
    font-size:12px;
  }
  .visual-caption {
    padding-top:18px;
  }
  .visual-caption p {
    font-size:15px;
  }
  .section {
    padding-block:64px;
  }
  .eyebrow {
    margin-bottom:16px;
  }
  h2 {
    font-size:31px;
    letter-spacing:-1.2px;
  }
  .section-lead {
    font-size:17px;
  }
  .section-heading {
    margin-bottom:32px;
  }
  .value-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .value-card:last-child {
    grid-column:auto;
  }
  .value-card {
    padding:28px;
  }
  .value-card svg {
    margin-block:20px;
  }
  .value-card p {
    margin-top:14px;
  }
  .workflow-grid {
    grid-template-columns:1fr;
    gap:36px;
  }
  .workflow-copy h2 br:nth-child(2) {
    display:none;
  }
  .workflow-copy>.section-lead {
    margin-top:20px;
  }
  .steps {
    margin-top:28px;
  }
  .report-stage {
    padding:24px 36px;
  }
  .report-label {
    font-size:13px;
  }
  .report-figure {
    max-width:480px;
    width:100%;
    margin:auto;
  }
  .report-figure figcaption {
    font-size:14px;
  }
  .download-card,.comparison-card {
    padding:28px;
  }
  .download-card .eyebrow {
    font-size:14px;
    margin-top:65px;
    padding-right:0;
  }
  .download-card h3 {
    font-size:32px;
  }
  .download-actions {
    gap:12px;
    flex-direction:column;
    align-items:stretch;
  }
  .download-actions .text-link {
    justify-content:center;
  }
  .comparison-card h3 {
    font-size:25px;
  }
  .time-comparison>div>strong {
    font-size:54px;
  }
  .assumption {
    font-size:17px;
  }
  .company-section {
    padding-block:60px;
  }
  .company-copy p {
    font-size:17px;
  }
  .company-wordmark {
    font-size:40px;
  }
  .contact-grid {
    gap:32px;
  }
  .email-address {
    font-size:29px;
    letter-spacing:-.9px;
  }
  .contact-panel .actions {
    align-items:stretch;
    flex-direction:column;
    gap:12px;
  }
  .footer-inner {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .footer-brand {
    margin-bottom:10px;
  }
  .site-footer p {
    order:4;
    margin-top:12px;
  }
  .site-footer {
    padding-block:28px;
  }
  .error-page {
    margin-top:10vh;
  }
  .error-page h1 {
    font-size:32px;
  }
}
@media(max-width:359px) {
  h1 {
    font-size:34px;
  }
  .hero .actions {
    flex-direction:column;
  }
  .product-heading .beta {
    margin-left:50px;
  }
  .product-heading {
    row-gap:10px;
  }
  .hero .eyebrow {
    font-size:12px;
  }
  .email-address {
    font-size:26px;
  }
  .time-comparison>div>strong {
    font-size:44px;
  }
  .time-comparison strong>span {
    font-size:23px;
  }
  .comparison-card,.download-card {
    padding:24px;
  }
  .report-stage {
    padding:20px;
  }
  .preview-tag {
    display:none;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}
@media print {
  .site-header,.actions,.hero-bottom,.download-actions,.site-footer,.menu-toggle {
    display:none!important;
  }
  body {
    font-size:12pt;
  }
  .hero,.company-section,.download-card {
    background:white;
    color:var(--text);
  }
  .hero p,.hero h1 span,.company-copy p {
    color:var(--text);
  }
  .hero-grid,.section,.company-section {
    padding-block:20px;
  }
  .container {
    width:100%;
  }
  .hero-grid {
    grid-template-columns:1fr;
  }
  .hero-visual {
    display:none;
  }
  .value-card,.report-figure,.comparison-card {
    break-inside:avoid;
  }
  a[href^="mailto"] {
    color:var(--text);
  }
}
/* Without scripting the expanded navigation stays in normal document flow. */
@media(max-width:719px) {
  .site-header:has(.menu-toggle[hidden]) {
    position:static;
  }
}

/* Contact form: main path, with an independent mail-app alternative. */
.contact-grid { grid-template-columns: .8fr 1.2fr; align-items: start; gap: 64px; }
.contact-intro .section-lead { max-width: 390px; }
.contact-guide { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); max-width: 350px; }
.guide-mark { color: var(--teal); font-size: 32px; }
.contact-guide h3 { font-size: 23px; margin: 12px 0; }
.contact-guide p { color: var(--muted); font-size: 17px; }
#contact-form { border: 1px solid var(--border); border-radius: 16px; padding: 32px; background: #fff; }
.form-heading { margin-bottom: 24px; }
.form-heading h3 { font-size: 25px; }
.form-heading > span { display: block; color: var(--muted); font-size: 15px; margin-top: 6px; }
.inquiry-types { border: 0; margin: 0 0 24px; padding: 0; display: flex; gap: 12px; }
.inquiry-types legend { padding: 0; margin-bottom: 10px; font-weight: 600; font-size: 17px; }
.radio-option { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; border: 1px solid #71839a; border-radius: 8px; flex: 1; padding: 10px; cursor: pointer; font-size: 17px; }
.radio-option:has(input:checked) { border-color: var(--teal); background: #edf8f5; color: #095f59; box-shadow: inset 0 0 0 1px var(--teal); }
.radio-option input { width: 18px; height: 18px; margin: 0; accent-color: var(--teal); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.form-field { min-width: 0; }
.form-field.full-width { grid-column: 1 / -1; }
.form-field label { display: block; font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.required-tag, .optional-tag { font-size: 13px; margin-left: 6px; font-weight: 500; }
.required-tag { color: var(--teal); }
.optional-tag { color: var(--muted); }
.form-field input, .form-field select, .form-field textarea { display: block; font: inherit; font-size: 16px; line-height: 1.6; width: 100%; min-height: 50px; padding: 12px; color: var(--text); background: #fff; border: 1px solid #71839a; border-radius: 7px; }
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #5e7080; opacity: 1; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 3px solid #185fa5; outline-offset: 2px; }
.form-field [aria-invalid="true"] { border-color: #a42f30; }
.form-field small, .field-help { display: block; color: var(--muted); font-size: 14px; line-height: 1.65; margin-top: 7px; }
.field-help { margin: 0 0 10px; font-size: 15px; }
.message-count { text-align: right; }
.form-data-note { color: var(--muted); font-size: 14px; margin: 22px 0; }
.submit-contact { width: 100%; min-height: 56px; }
.contact-status { font-size: 16px; color: var(--muted); margin-top: 14px; }
.contact-status:empty { display: none; }
.contact-status[data-state="error"] { padding: 14px; color: #8f2526; background: #fff3f1; border-radius: 8px; }
.contact-status[data-state="success"] { padding: 14px; color: #095f59; background: #edf8f5; border-radius: 8px; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.contact-alternative { margin-top: 28px; padding: 24px 0 0; border-top: 1px solid var(--border); }
.alternative-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.mail-app-link { color: var(--teal); font-weight: 650; font-size: 17px; }
.copy-link { border: 0; background: transparent; padding: 8px 0; min-height: 44px; font-size: 15px; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.contact-alternative .email-address { font-size: 20px; letter-spacing: 0; margin: 8px 0 0; }
.contact-alternative .copy-status:empty { display: none; }
.contact-alternative .mail-help { color: var(--muted); font-size: 14px; margin-top: 10px; }
@media(max-width:959px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } .contact-guide { display: none; } .contact-intro .section-lead { max-width: none; } .contact-panel { max-width: none; } }
@media(max-width:719px) { #contact-form { padding: 24px 20px; } .form-fields { grid-template-columns: 1fr; gap: 20px; } .inquiry-types { gap: 8px; } .radio-option { padding: 10px 6px; font-size: 16px; } .form-heading h3 { font-size: 23px; } }
@media(max-width:359px) { #contact-form { padding: 20px 14px; } .radio-option { font-size: 15px; gap: 5px; } }
