:root {
      --ink: #101828;
      --muted: #667085;
      --line: #dfe5ec;
      --paper: #ffffff;
      --soft: #f4f7fa;
      --navy: #0b1f33;
      --navy-2: #123b5a;
      --blue: #087ea4;
      --blue-dark: #05617f;
      --mint: #0f9f7f;
      --green-soft: #eaf8f3;
      --red: #dc3545;
      --amber: #d78100;
      --radius: 8px;
      --shadow: 0 18px 48px rgba(11, 31, 51, .12);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Noto Sans KR", sans-serif;
      line-height: 1.7;
      word-break: keep-all;
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    img { display: block; width: 100%; }
    .container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 104px 0; }
    .section-soft { background: var(--soft); }
    .section-dark { color: #fff; background: var(--navy); }
    .eyebrow {
      margin: 0 0 14px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .section-title {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.25;
      font-weight: 900;
    }
    .section-lead { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
    .section-heading { max-width: 720px; margin-bottom: 48px; }
    .accent { color: var(--blue); }
    .green { color: var(--mint); }
    .amber { color: var(--amber); }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      height: 72px;
      color: #fff;
      background: rgba(7, 24, 40, .88);
      border-bottom: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(14px);
    }
    .header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 900; }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      color: #07263a;
      background: #64d8c0;
      border-radius: 7px;
      font-size: 18px;
      font-weight: 900;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
    .nav-links > a:not(.button):hover { color: #71ddc7; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      color: #fff;
      background: var(--blue);
      border: 1px solid var(--blue);
      border-radius: 6px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 12px 28px rgba(8, 126, 164, .3); }
    .button-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.58); }
    .button-outline:hover { background: rgba(255,255,255,.1); }
    .button-small { min-height: 40px; padding: 0 17px; font-size: 13px; }

    .hero {
      position: relative;
      min-height: 760px;
      display: flex;
      align-items: center;
      color: #fff;
      overflow: hidden;
      background: #0b1f33;
    }
    .hero-media, .hero-shade { position: absolute; inset: 0; }
    .hero-media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-shade { background: linear-gradient(90deg, rgba(5,20,34,.97) 0%, rgba(5,20,34,.88) 43%, rgba(5,20,34,.36) 74%, rgba(5,20,34,.24) 100%); }
    .hero-content { position: relative; z-index: 2; max-width: 820px; padding: 148px 0 86px; }
    .hero-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; color: #72e1ca; font-size: 26px; line-height: 1.35; font-weight: 900; }
    .hero-kicker::before { content: ""; width: 34px; height: 3px; background: #72e1ca; }
    .hero h1 {
      margin: 0;
      max-width: 850px;
      font-size: clamp(46px, 6.4vw, 82px);
      line-height: 1.12;
      font-weight: 900;
      text-shadow: 0 3px 20px rgba(0,0,0,.34);
    }
    .hero h1 .loss { color: #ff7b84; }
    .hero h1 .care { color: #77e4cd; }
    .hero-copy { margin: 30px 0 0; max-width: 690px; color: #d8e2eb; font-size: clamp(18px, 2vw, 22px); }
    .hero-copy strong { color: #fff; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 42px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); color: #cfdae3; font-size: 14px; font-weight: 700; }
    .hero-trust span::before { content: "✓"; margin-right: 8px; color: #77e4cd; }

    .comparison { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .compare-panel { padding: 34px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); }
    .compare-panel.good { border-top-color: var(--mint); box-shadow: var(--shadow); }
    .panel-title { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; font-size: 19px; font-weight: 900; }
    .status-icon { display: grid; place-items: center; width: 29px; height: 29px; color: #fff; background: var(--red); border-radius: 50%; font-size: 14px; }
    .good .status-icon { background: var(--mint); }
    .check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; color: var(--muted); }
    .check-list li { position: relative; padding-left: 22px; }
    .check-list li::before { content: "•"; position: absolute; left: 2px; color: var(--red); font-weight: 900; }
    .good .check-list li::before { content: "✓"; color: var(--mint); }
    .good .check-list { color: var(--ink); }

    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .feature-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
    .icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 23px; color: var(--mint); background: var(--green-soft); border-radius: 6px; font-size: 22px; font-weight: 900; }
    .feature-card h3 { margin: 0 0 10px; font-size: 20px; }
    .feature-card p { margin: 0; color: var(--muted); font-size: 15px; }

    .solution-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
    .solution-photo { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
    .solution-photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
    .solution-badge { position: absolute; right: 18px; bottom: 18px; max-width: 245px; padding: 18px; color: #fff; background: rgba(7,32,49,.92); border-radius: 6px; font-size: 14px; font-weight: 700; }
    .solution-list { display: grid; gap: 18px; margin-top: 36px; }
    .solution-item { padding: 26px 0; border-top: 1px solid var(--line); }
    .solution-item h3 { margin: 0 0 8px; font-size: 20px; }
    .solution-item p { margin: 0 0 13px; font-weight: 700; }
    .solution-item ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }

    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
    .price-card { position: relative; display: flex; flex-direction: column; padding: 32px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
    .price-card.recommended { border: 2px solid var(--blue); box-shadow: var(--shadow); }
    .recommend-label { position: absolute; top: 0; right: 24px; padding: 7px 13px; color: #fff; background: var(--blue); border-radius: 0 0 5px 5px; font-size: 12px; font-weight: 800; }
    .price-card h3 { margin: 0 0 3px; font-size: 22px; }
    .price-sub { min-height: 48px; margin: 0; color: var(--muted); font-size: 14px; }
    .price { margin-top: 24px; font-size: 31px; font-weight: 900; }
    .setup { margin-bottom: 26px; color: var(--muted); font-size: 12px; }
    .price-card .check-list { flex: 1; margin-bottom: 28px; font-size: 14px; }
    .price-card .check-list li::before { content: "✓"; color: var(--mint); }
    .price-card .check-list .disabled { opacity: .4; }
    .price-card .check-list .disabled::before { content: "×"; color: var(--red); }
    .price-card .button { width: 100%; }

    .contact-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 52px; align-items: start; }
    .contact-copy { padding-top: 18px; }
    .contact-copy .section-lead { color: #c3cfda; }
    .benefit-list { list-style: none; display: grid; gap: 13px; margin: 34px 0 0; padding: 0; color: #d8e2eb; }
    .benefit-list li::before { content: "✓"; margin-right: 10px; color: #72e1ca; font-weight: 900; }
    .contact-note { margin-top: 28px; color: #91a5b7; font-size: 13px; }
    .contact-form { padding: 34px; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,0,.22); }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    label { font-size: 14px; font-weight: 800; }
    .required { color: var(--red); }
    input, textarea {
      width: 100%;
      padding: 13px 14px;
      color: var(--ink);
      background: #fff;
      border: 1px solid #cdd5df;
      border-radius: 5px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    input { min-height: 49px; }
    textarea { min-height: 132px; resize: vertical; }
    input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,126,164,.13); }
    input::placeholder, textarea::placeholder { color: #98a2b3; }
    .privacy { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: #475467; font-size: 13px; }
    .privacy input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
    .contact-form .button { width: 100%; min-height: 56px; border: 0; font-size: 17px; }
    .form-status { min-height: 24px; margin: 12px 0 0; text-align: center; color: var(--blue-dark); font-size: 13px; font-weight: 700; }

    footer { padding: 34px 0; color: #73869a; background: #071828; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }
    .footer-inner { display: flex; justify-content: space-between; gap: 24px; }
    .footer-inner p { margin: 0; }

    @media (max-width: 980px) {
      .nav-links > a.company-shop-link { display: block; white-space: nowrap; }
      .nav-links { gap: 12px; }
      .nav-links > a:not(.button):not(.company-shop-link) { display: none; }
      .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
      .comparison, .solution-layout, .contact-wrap { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: repeat(3, 1fr); }
      .price-card { padding: 30px; }
      .solution-photo { min-height: 430px; }
      .contact-copy { padding-top: 0; }
    }

    @media (max-width: 720px) {
      .nav-links > a.button { display: none; }
      .container { width: min(100% - 28px, 1160px); }
      .section { padding: 76px 0; }
      .site-header { height: 64px; }
      .brand { font-size: 18px; }
      .brand-mark { width: 30px; height: 30px; }
      .header-inner .button { min-height: 38px; padding: 0 13px; font-size: 12px; }
      .hero { min-height: 720px; align-items: flex-end; }
      .hero-media { object-position: 60% center; }
      .hero-shade { background: linear-gradient(180deg, rgba(5,20,34,.28) 0%, rgba(5,20,34,.82) 43%, rgba(5,20,34,.98) 100%); }
      .hero-content { padding: 130px 0 54px; }
      .hero h1 { font-size: clamp(42px, 13vw, 62px); }
      .hero-copy br { display: none; }
      .hero-actions { display: grid; }
      .hero-actions .button { width: 100%; }
      .hero-trust { gap: 8px 18px; margin-top: 30px; padding-top: 20px; font-size: 12px; }
      .section-heading { margin-bottom: 34px; }
      .section-title { font-size: 31px; }
      .section-lead { font-size: 16px; }
      .comparison, .feature-grid, .form-grid { grid-template-columns: 1fr; }
      .compare-panel, .feature-card, .contact-form { padding: 24px; }
      .solution-layout { gap: 36px; }
      .solution-photo { min-height: 360px; }
      .field.full { grid-column: auto; }
      .footer-inner { display: grid; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; }
    }
.company-inline-1 { color:#72e1ca }
.company-inline-2 { color:#fff }
