@import url("https://cdn.jsdelivr.net/npm/pretendard/dist/web/static/pretendard.css");

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: "Pretendard", sans-serif;
      background: #f6f7f9;
      color: #111;
    }
    a { text-decoration: none; color: inherit; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 7%;
      background: #0b0e14;
      backdrop-filter: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: #f5f7fb;
      transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, color 220ms ease;
    }
    .nav.is-scrolled {
      background: rgba(246,247,249,0.72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      color: #111;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.5px;
    }
    .logo-title {
      color: currentColor;
    }
    .logo-subtitle {
      margin-left: 6px;
      display: inline-flex;
      align-items: center;
      color: #565d6b;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: -0.1px;
      line-height: 1;
    }
    .mobile-only {
      display: none;
    }
    .phone-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #67e8f9 0%, #60a5fa 52%, #3b82f6 100%);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      line-height: 1;
    }
    .live-status {
      min-height: 32px;
      padding: 0 12px;
      border-radius: 10px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(0,0,0,0.14);
      color: #111;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .count-viewport {
      position: relative;
      width: 2ch;
      height: 1.15em;
      overflow: hidden;
      display: inline-block;
      vertical-align: middle;
      transform: translateY(0.5px);
      font-variant-numeric: tabular-nums;
    }
    .count-track {
      display: flex;
      flex-direction: column;
      transform: translateY(0);
    }
    .count-track.is-sliding {
      transition: transform 320ms ease;
      transform: translateY(-1.15em);
    }
    .count-value {
      height: 1.15em;
      line-height: 1.15em;
    }
    .live-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .count-unit {
      display: inline-flex;
      align-items: center;
      gap: 0;
    }
    .wave {
      display: inline-flex;
      align-items: flex-end;
      gap: 2px;
      height: 12px;
      transform: translateY(-2px);
    }
    .wave span {
      width: 2px;
      height: 4px;
      border-radius: 999px;
      background: #111;
      animation: wavePulse 1s ease-in-out infinite;
      transform-origin: center bottom;
    }
    .wave span:nth-child(2) { animation-delay: 0.1s; }
    .wave span:nth-child(3) { animation-delay: 0.2s; }
    .wave span:nth-child(4) { animation-delay: 0.3s; }
    .wave span:nth-child(5) { animation-delay: 0.4s; }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    @keyframes wavePulse {
      0%, 100% { transform: scaleY(0.6); }
      50% { transform: scaleY(1.6); }
    }

    .hero {
      position: relative;
      width: fit-content;
      max-width: calc(100% - 48px);
      height: min(72vh, 760px);
      margin: 20px auto 42px;
      border-radius: 42px;
      overflow: hidden;
      background: #0b0e14;
      color: #fff;
    }
    .hero-zone {
      background: #0b0e14;
      padding: 26px 0 30px;
      margin-bottom: 24px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0.02) 100%
      );
      z-index: 1;
      pointer-events: none;
    }
    .badge {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.32);
      color: #fff;
      font-size: 14px;
      margin-bottom: 22px;
    }
    h1 {
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.06;
      letter-spacing: -2px;
      margin: 0 0 14px;
    }
    .strike {
      text-decoration: line-through;
      text-decoration-thickness: 0.08em;
      text-decoration-color: rgba(255,255,255,0.95);
    }
    .hero p {
      font-size: 19px;
      line-height: 1.5;
      color: rgba(255,255,255,0.9);
      margin: 0 0 16px;
      max-width: 700px;
    }
    .hero-note {
      font-size: 14px;
      color: rgba(255,255,255,0.78);
      margin-top: -8px;
      margin-bottom: 14px;
      font-weight: 600;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px 6% 30px;
    }
    .hero-tagline {
      text-align: center;
      font-size: clamp(24px, 2.9vw, 42px);
      font-weight: 800;
      letter-spacing: -1px;
      margin: 0 7% 26px;
      color: #f5f7fb;
    }
    .cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .primary {
      padding: 16px 24px;
      border-radius: 16px;
      background: #111;
      color: #fff;
      font-weight: 800;
    }
    .secondary {
      padding: 16px 24px;
      border-radius: 16px;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.42);
      font-weight: 800;
      color: #fff;
    }

    .hero-bg {
      position: relative;
      z-index: 0;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #0b0e14;
    }
    .hero-image {
      display: block;
      height: 100%;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: center top;
    }

    .phone-card {
      background: #111;
      color: #fff;
      border-radius: 36px;
      padding: 36px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.22);
    }
    .phone-top {
      display: flex;
      justify-content: space-between;
      color: #aaa;
      font-size: 14px;
      margin-bottom: 46px;
    }
    .phone-number {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
    .status {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: #20c997;
      color: #031b12;
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 28px;
    }
    .transcript {
      background: rgba(255,255,255,0.08);
      border-radius: 22px;
      padding: 20px;
      line-height: 1.7;
      color: #e9e9e9;
      font-size: 15px;
    }

    section {
      padding: 70px 7%;
    }
    .section-band {
      background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
      border-top: 1px solid #e5eaf1;
      border-bottom: 1px solid #e5eaf1;
    }
    .section-band.alt {
      background: linear-gradient(180deg, #eef3fb 0%, #e7edf8 100%);
    }
    .section-title {
      font-size: clamp(24px, 2.9vw, 42px);
      font-weight: 800;
      letter-spacing: -1px;
      text-align: center;
      margin: 0 0 18px;
    }
    .section-desc {
      font-size: 19px;
      color: #555;
      line-height: 1.65;
      max-width: 760px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 34px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .card {
      background: #fff;
      border: 1px solid #e7e9ee;
      border-radius: 28px;
      padding: 28px;
      min-height: 210px;
    }
    .card h3 {
      font-size: 23px;
      margin: 0 0 12px;
      letter-spacing: -0.8px;
    }
    .card p {
      margin: 0;
      color: #555;
      line-height: 1.65;
      font-size: 16px;
    }

    .flow {
      background: #fff;
      border-radius: 36px;
      padding: 34px;
      border: 1px solid #e7e9ee;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .step {
      background: #f6f7f9;
      border-radius: 24px;
      padding: 24px;
    }
    .step strong {
      display: block;
      font-size: 15px;
      color: #777;
      margin-bottom: 10px;
    }
    .step b {
      font-size: 21px;
      letter-spacing: -0.7px;
    }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .price-card {
      background: #fff;
      border-radius: 30px;
      padding: 30px;
      border: 1px solid #e7e9ee;
    }
    .price-card.featured {
      background: #111;
      color: #fff;
      transform: translateY(-8px);
    }
    .price {
      font-size: 36px;
      font-weight: 900;
      margin: 18px 0;
    }
    .price small {
      font-size: 15px;
      color: #888;
      font-weight: 600;
    }
    .price-card.featured small { color: #aaa; }
    ul {
      padding-left: 18px;
      color: #555;
      line-height: 1.9;
    }
    .featured ul { color: #ddd; }

    .feature-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .process-track {
      position: relative;
      display: grid;
      gap: 16px;
      max-width: 820px;
      margin: 0 auto;
    }
    .process-track::before {
      content: "";
      position: absolute;
      top: 24px;
      bottom: 24px;
      left: 24px;
      width: 2px;
      background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 45%, #60a5fa 100%);
    }
    .process-step {
      position: relative;
      background: #fff;
      border: 1px solid #e7e9ee;
      border-radius: 24px;
      padding: 22px 22px 22px 82px;
    }
    .step-index {
      position: absolute;
      left: 2px;
      top: 18px;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
      border: 1px solid #93c5fd;
      color: #1d4ed8;
      font-weight: 800;
      font-size: 17px;
      z-index: 1;
    }
    .process-step strong {
      display: inline-block;
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 10px;
    }
    .sec-emph,
    .grad-cyan,
    .grad-emerald {
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .sec-emph {
      background-image: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #60a5fa 100%);
      text-shadow: 0 0 20px rgba(59,130,246,0.24);
    }
    .grad-cyan {
      background-image: linear-gradient(135deg, #0891b2 0%, #06b6d4 45%, #22d3ee 100%);
    }
    .grad-emerald {
      background-image: linear-gradient(135deg, #047857 0%, #10b981 45%, #34d399 100%);
    }
    .process-step h3 {
      margin: 0 0 10px;
      font-size: 22px;
      letter-spacing: -0.5px;
    }
    .process-step p {
      margin: 0;
      color: #4b5563;
      line-height: 1.6;
    }
    .review-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .review-stats {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: -10px 0 20px;
    }
    .review-stat {
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #fde68a;
      color: #92400e;
      font-size: 13px;
      font-weight: 700;
    }
    .review-card {
      background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
      border: 1px solid #fdedd4;
      border-radius: 20px;
      padding: 16px;
      min-height: 146px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 24px rgba(251, 146, 60, 0.12);
    }
    .review-card--pop {
      background: linear-gradient(140deg, #eff6ff 0%, #dbeafe 100%);
      border-color: #bfdbfe;
      box-shadow: 0 12px 28px rgba(59, 130, 246, 0.2);
    }
    .review-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }
    .review-avatar {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .review-stars {
      color: #f59e0b;
      letter-spacing: 1px;
      font-size: 13px;
      line-height: 1;
      font-weight: 800;
    }
    .review-card p {
      margin: 0;
      color: #1f2937;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 700;
    }
    .review-meta {
      margin-top: auto;
      text-align: right;
      font-size: 12px;
      color: #64748b;
      font-weight: 600;
      letter-spacing: -0.1px;
    }
    .scene-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .scene-card {
      background: #fff;
      border: 1px solid #e7e9ee;
      border-radius: 22px;
      overflow: hidden;
    }
    .scene-image {
      height: 170px;
      background: #dbe4f3;
    }
    .scene-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .scene-body {
      padding: 16px;
    }
    .scene-body h3 {
      margin: 0 0 8px;
      font-size: 21px;
      letter-spacing: -0.5px;
    }
    .scene-body p {
      margin: 0;
      color: #4b5563;
      line-height: 1.6;
      font-size: 15px;
    }
    .emoji-title {
      margin-left: 6px;
      font-size: 0.95em;
    }
    .offer {
      background: #0f172a;
      color: #f8fafc;
      border-radius: 30px;
      padding: 34px;
    }
    .offer h3 {
      margin: 0 0 12px;
      font-size: clamp(24px, 3vw, 38px);
      letter-spacing: -1px;
    }
    .offer p {
      margin: 0 0 18px;
      color: #cbd5e1;
      line-height: 1.65;
    }
    .compare {
      width: 100%;
      border-collapse: collapse;
      margin: 18px 0 22px;
      overflow: hidden;
      border-radius: 16px;
      background: rgba(255,255,255,0.04);
    }
    .compare th,
    .compare td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      text-align: left;
      font-size: 14px;
    }
    .compare th { color: #e2e8f0; }
    .compare td { color: #cbd5e1; }
    .compare tr:last-child td { border-bottom: none; }
    .offer-cta {
      border: none;
      border-radius: 14px;
      padding: 14px 18px;
      font-weight: 800;
      font-size: 15px;
      background: #22c55e;
      color: #052e16;
      cursor: pointer;
      width: 100%;
    }
    .site-footer {
      padding: 36px 7% 50px;
      color: #6b7280;
      font-size: 14px;
      text-align: center;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.62);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 40;
      padding: 16px;
    }
    .modal.is-open {
      display: flex;
    }
    .modal-panel {
      width: min(520px, 100%);
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      border-radius: 20px;
      padding: 24px;
      border: 1px solid #dbe2ea;
      box-shadow: 0 22px 70px rgba(2, 6, 23, 0.25);
    }
    .modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: #1e3a8a;
      background: #dbeafe;
      border: 1px solid #bfdbfe;
      margin-bottom: 10px;
    }
    .modal-panel h3 {
      margin: 0 0 10px;
      font-size: 24px;
      letter-spacing: -0.6px;
    }
    .modal-panel p {
      margin: 0 0 16px;
      color: #4b5563;
      line-height: 1.6;
    }
    .modal-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .modal-form input,
    .modal-form textarea {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 12px;
      padding: 10px 12px;
      font: inherit;
      background: #fff;
    }
    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 10px;
      grid-column: 1 / -1;
    }
    .btn-ghost,
    .btn-solid {
      border: none;
      border-radius: 10px;
      padding: 10px 14px;
      font-weight: 700;
      cursor: pointer;
    }
    .btn-ghost { background: #f3f4f6; color: #111827; }
    .btn-solid { background: #111827; color: #fff; }

    .final {
      text-align: center;
      background: #111;
      color: #fff;
      padding: 90px 7%;
    }
    .final h2 {
      font-size: clamp(34px, 5vw, 62px);
      letter-spacing: -3px;
      margin: 0 0 22px;
    }
    .final p {
      color: #ccc;
      font-size: 20px;
      line-height: 1.7;
      margin-bottom: 34px;
    }
    .final .primary {
      background: #fff;
      color: #111;
      display: inline-block;
    }

    @media (max-width: 900px) {
      .hero-zone {
        padding: 22px 0 22px;
        margin-bottom: 16px;
      }
      .section-band {
        border-top-width: 0;
        border-bottom-width: 0;
      }
      .hero-tagline {
        margin: 0 7% 22px;
      }
      .nav {
        padding: 14px 4%;
      }
      section {
        padding-left: 4%;
        padding-right: 4%;
      }
      .logo {
        font-size: 18px;
        gap: 5px;
      }
      .logo-subtitle {
        margin-left: 4px;
        font-size: 11px;
      }
      .desktop-only {
        display: none;
      }
      .mobile-only {
        display: inline;
      }
      .phone-icon {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        font-size: 12px;
      }
      .live-status {
        min-height: 28px;
        padding: 0 10px;
        border-radius: 9px;
        font-size: 12px;
      }
      .hero {
        width: calc(100% - 8%);
        height: auto;
        margin: 0 auto 28px;
        border-radius: 28px;
      }
      .hero-bg {
        height: auto;
        background: transparent;
      }
      .hero-image {
        width: 100%;
        height: auto;
        max-width: 100%;
      }
      .hero-content {
        padding: 28px 5% 24px;
      }
      .hero-tagline {
        font-size: clamp(24px, 6.2vw, 34px);
      }
      .grid, .steps, .pricing {
        grid-template-columns: 1fr;
      }
      .feature-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
      }
      .feature-row .card {
        padding: 14px;
        border-radius: 16px;
        min-height: 0;
      }
      .feature-row .card h3 {
        font-size: 15px;
        margin-bottom: 8px;
      }
      .feature-row .card p {
        font-size: 12px;
        line-height: 1.45;
      }
      .process-track {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .process-step {
        padding: 16px 14px 16px 62px;
        border-radius: 16px;
      }
      .step-index {
        width: 34px;
        height: 34px;
        font-size: 14px;
        left: 6px;
      }
      .process-track::before {
        left: 22px;
      }
      .process-step h3 {
        font-size: 18px;
      }
      .process-step p {
        font-size: 14px;
      }
      .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .review-stats {
        gap: 6px;
        margin-bottom: 14px;
      }
      .review-stat {
        font-size: 11px;
        padding: 6px 9px;
      }
      .review-card {
        padding: 12px;
        min-height: 126px;
      }
      .review-card p {
        font-size: 14px;
      }
      .review-meta {
        font-size: 11px;
      }
      .scene-grid {
        grid-template-columns: 1fr;
      }
      .scene-image {
        height: 140px;
      }
      .offer {
        padding: 24px;
      }
      .modal-form {
        grid-template-columns: 1fr;
      }
      .compare th,
      .compare td {
        font-size: 13px;
        padding: 10px;
      }
      h1 {
        letter-spacing: -1px;
      }
      .phone-card {
        padding: 28px;
      }
    }