
  /* ===========================
  NAVIGATION
  =========================== */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }
  #navbar.transparent { background: transparent; }
  #navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--g200);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    transition: color 0.3s;
  }
  .logo-accent { color: #FBBF24; }
  .logo-kr {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-top: 1px;
    transition: color 0.3s;
  }
  #navbar.scrolled .logo-text { color: var(--g900); }
  #navbar.scrolled .logo-kr   { color: var(--g500); }
  #navbar.scrolled .logo-accent { color: var(--pro); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    border-radius: var(--radius-s);
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  #navbar.scrolled .nav-links a { color: var(--g600); }
  #navbar.scrolled .nav-links a:hover { color: var(--g900); background: var(--g100); }

  .nav-cta {
    background: linear-gradient(135deg, var(--pro), #8B5CF6) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-s) !important;
  }
  .nav-cta:hover { opacity: 0.9; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }
  #navbar.scrolled .hamburger span { background: var(--g700); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: var(--white);
      box-shadow: var(--shadow-l);
      padding: 16px 24px 24px;
      gap: 4px;
    }
    .nav-links.open a { color: var(--g700) !important; }
    .nav-links.open .nav-cta {
      background: linear-gradient(135deg, var(--pro), #8B5CF6) !important;
      color: var(--white) !important;
      text-align: center;
      margin-top: 8px;
    }
  }

  /* ===========================
  HERO
  =========================== */
  #hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1040 50%, #0F1F1A 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
  }
  .hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
  }
  .hero-shape.s1 { width: 520px; height: 520px; background: #5B52F0; top: -100px; right: -60px; }
  .hero-shape.s2 { width: 360px; height: 360px; background: #059669; bottom: -80px; left: -80px; }
  .hero-shape.s3 { width: 280px; height: 280px; background: #D97706; top: 40%; right: 30%; }

  .hero-grid {
    display:flex;
    justify-content: space-between;
    align-items: start;
    gap: 100px;
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
  }
  .hero-badge i { color: #FBBF24; }
  .hero-title {
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -3px;
    margin-bottom: 28px;
    word-break: keep-all;
  }
  .hero-title .accent {
    background: linear-gradient(90deg, #818CF8, #A78BFA, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 22px;
    color: rgba(255,255,255,0.70);
    line-height: 1.9;
    margin-bottom: 44px;
    word-break: keep-all;
  }
  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hero-tag {
    display: inline-flex;
    flex:1;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-s);
  }
  .hero-tag i { font-size: 13px; color: #818CF8; }
  .hero-tag .hl { color: #34D399; font-weight: 800; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pro), #8B5CF6);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-m);
    box-shadow: 0 8px 24px rgba(91,82,240,0.4);
    transition: all 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,82,240,0.5); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: var(--radius-m);
    transition: all 0.2s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.14); }

  /* 히어로 우측 */
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex:0.6;
  }
  .hero-device-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-d300 {
    width: 380px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 80px rgba(0,0,0,0.65));
    animation: floatHero 4s ease-in-out infinite;
  }
  @keyframes floatHero {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-16px) rotate(1deg); }
  }
  .hero-glow {
    position: absolute;
    bottom: -20px;
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(91,82,240,0.5), transparent 70%);
    filter: blur(12px);
  }
  .hero-stock-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hsc-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-s);
    padding: 14px 18px;
  }
  .hsc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .hsc-icon.pro-ic    { background: rgba(91,82,240,0.2); color: #A5B4FC; }
  .hsc-icon.home-ic   { background: rgba(5,150,105,0.2); color: #6EE7B7; }
  .hsc-icon.pocket-ic { background: rgba(217,119,6,0.2); color: #FCD34D; }
  .hsc-info { flex: 1; }
  .hsc-name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.2px;
  }
  .hsc-bar-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
  }
  .hsc-bar {
    flex: 1;
    height: 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
  }
  .hsc-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease;
  }
  .hsc-fill.pro-fill    { background: #818CF8; }
  .hsc-fill.home-fill   { background: #34D399; }
  .hsc-fill.pocket-fill { background: #FCD34D; }
  .hsc-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
  }
  .hero-notice {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
  }
  .hero-notice strong { color: #FBBF24; }

  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; padding: 100px 0 60px; }
    .hero-badge, .hero-btns { justify-content: center; }
    .hero-right { 
      width:100%;
      flex:0.7;
    }
    .hsc-name{
      text-align:left;
    }
  }
  @media (max-width: 768px) {
    .hero-grid { 
      padding: 80px 0 40px; 
      gap: 60px;
      flex-direction: column;
    }
    .hero-title { letter-spacing: -1.5008px; }
    .hero-sub { font-size: 16px; }
    .btn-primary, .btn-ghost { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; }
    .hero-d300 { width: 260px; }
  }

  /* ===========================
  WHY 섹션
  =========================== */
  #why { background: var(--g50); }
  .why-vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 60px;
  }
  .why-col {
    background: var(--white);
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-m);
  }
  .why-col-head {
    padding: 22px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .why-col-head.bad  { background: #FEF2F2; }
  .why-col-head.good { background: var(--pro-l); }
  .why-col-head i { font-size: 22px; }
  .why-col-head.bad i  { color: #EF4444; }
  .why-col-head.good i { color: var(--pro); }
  .why-col-head h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--g800);
    word-break: keep-all;
  }
  .why-col-body { padding: 6px 28px 24px; }
  .why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--g100);
    font-size: 17px;
    color: var(--g700);
    line-height: 1.8;
    word-break: keep-all;
  }
  .why-list li:last-child { border-bottom: none; }
  .why-list li i.fa-circle-xmark { color: #EF4444; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
  .why-list li i.fa-circle-check { color: var(--pro); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
  .why-vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; 
    height: 80px;
    background: linear-gradient(135deg, var(--pro), #8B5CF6);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    align-self: center;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .why-vs-grid { grid-template-columns: 1fr; }
    .why-vs-badge { justify-self: center; }
  }

  /* ===========================
  제품 섹션
  =========================== */
  #products { background: var(--white); }
  .prod-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--g100);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .prod-tabs::-webkit-scrollbar { display: none; }
  .prod-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--g500);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .prod-tab-btn i { font-size: 16px; }
  .prod-tab-btn.active { color: var(--pro); border-bottom-color: var(--pro); }
  .prod-tab-btn.active.home-tab  { color: var(--home); border-bottom-color: var(--home); }
  .prod-tab-btn.active.pocket-tab{ color: var(--pocket); border-bottom-color: var(--pocket); }

  .prod-panel { display: none; }
  .prod-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .prod-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prod-icon {
    width: 340px !important;
    height: 340px !important;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0,0,0,0.15));
  }

  .prod-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .pro-label    { color: var(--pro);    background: var(--pro-l); }
  .home-label   { color: var(--home);   background: var(--home-l); }
  .pocket-label { color: var(--pocket); background: var(--pocket-l); }

  .prod-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--g900);
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .prod-desc {
    font-size: 18px;
    color: var(--g600);
    line-height: 1.9;
    margin-bottom: 36px;
    word-break: keep-all;
  }
  .prod-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }
  .pf-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .pf-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .pf-text strong { 
    display: flex; 
    gap:10px; 
    align-items: center;
    font-size: 14px; 
    font-weight: 700; 
    color: var(--g800); 
  }
  .pf-text strong .pf-icon.pro-ic    { background: var(--pro-l);    color: var(--pro); }
  .pf-text strong .pf-icon.home-ic   { background: var(--home-l);   color: var(--home); }
  .pf-text strong .pf-icon.pocket-ic { background: var(--pocket-l); color: var(--pocket); }
  .pf-text strong span.pf-title{
    font-size: 16px;
    color: var(--g700);
  }
  .pf-text span   { 
    font-size: 14px; 
    color: var(--g500); 
    word-break: keep-all; 
  }
  .pf-text span.description {
    padding-left: 52px;
  }

  .prod-stock-info {
    background: var(--g50);
    border-radius: var(--radius-m);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  .psi-label { font-size: 13px; color: var(--g600); font-weight: 600; }
  .psi-count {
    font-size: 22px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5008px;
  }
  .pro-av    { color: var(--pro); }
  .home-av   { color: var(--home); }
  .pocket-av { color: var(--pocket); }
  .psi-fill-wrap {
    flex: 1;
    height: 16px;
    background: var(--g200);
    border-radius: 999px;
    overflow: hidden;
  }
  .psi-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease;
  }
  .psi-fill.pro-fill    { background: var(--pro); }
  .psi-fill.home-fill   { background: var(--home); }
  .psi-fill.pocket-fill { background: var(--pocket); }

  @media (max-width: 1024px) {
    .prod-panel.active { grid-template-columns: 1fr; gap: 48px; }
    .prod-img-wrap { order: -1; }
  }
  @media (max-width: 768px) {
    .prod-icon { width: 220px !important; height: 220px !important; }
  }

  /* ===========================
  D300 단말기
  =========================== */
  #device { background: linear-gradient(135deg, #0F0F1A 0%, #1A1040 100%); }
  .device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .device-img-wrap {
    display: flex;
    justify-content: center;
  }
  .device-d300 {
    width: 340px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 80px rgba(91,82,240,0.4));
    animation: floatHero 4s ease-in-out infinite;
  }
  .device-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A5B4FC;
    background: rgba(91,82,240,0.15);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    display: inline-block;
  }
  .device-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .device-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 36px;
    word-break: keep-all;
  }
  .device-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .ds-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-m);
    padding: 18px 20px;
  }
  .ds-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    letter-spacing: .5008px;
    margin-bottom: 6px;
  }
  .ds-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
  }
  .ds-value .hl { color: #818CF8; }
  @media (max-width: 1024px) {
    .device-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .device-img-wrap { justify-content: center; order: -1; }
  }
  @media (max-width: 768px) {
    .device-d300 { width: 240px; }
    .device-specs { grid-template-columns: 1fr 1fr; }
  }

  /* ===========================
  비교 섹션
  =========================== */
  #compare { background: var(--g50); }
  .compare-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .cmp-col {
    background: var(--white);
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-m);
  }
  .cmp-head {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .cmp-head.bad  { background: #FEF2F2; }
  .cmp-head.good { background: var(--pro-l); }
  .cmp-head i { font-size: 20px; }
  .cmp-head.bad i  { color: #EF4444; }
  .cmp-head.good i { color: var(--pro); }
  .cmp-head h3 { 
    font-size: 20px;
    font-weight: 800;
    color: var(--g800);
    word-break: keep-all;
  }
  .cmp-head small {
    font-size: 12px;
    font-weight: 600;
    color: var(--g500);
    margin-left: auto;
  }
  .cmp-body { padding: 24px 28px; }
  .cmp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--g100);
    font-size: 17px;
    color: var(--g700);
    line-height: 1.8;
    word-break: keep-all;
  }
  .cmp-list li:last-child { border-bottom: none; }
  .cmp-list li i.fa-circle-xmark { color: #EF4444; font-size: 15px; flex-shrink: 0; }
  .cmp-list li i.fa-circle-check { color: var(--pro); font-size: 15px; flex-shrink: 0; }
  .cmp-list li b { font-weight: 700; }
  .cmp-source {
    font-size: 12px;
    color: var(--g500);
    margin-top: 12px;
    text-align: right;
  }

  .compare-table-wrap { overflow-x: auto; }
  .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-m);
  }
  .compare-table th, .compare-table td {
    padding: 20px 28px;
    text-align: center;
    font-size: 17px;
    border-bottom: 1px solid var(--g100);
  }
  .compare-table th {
    font-weight: 800;
    background: var(--g50);
    font-size: 14px;
  }
  .compare-table th:first-child { text-align: left; }
  .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--g700); }
  .compare-table tr:last-child td { border-bottom: none; }
  .th-pro    { color: var(--pro); }
  .th-home   { color: var(--home); }
  .th-pocket { color: var(--pocket); }
  .c-green  { color: var(--home); font-weight: 700; }
  .c-gray   { color: var(--g400); }

  @media (max-width: 768px) {
    .compare-intro { grid-template-columns: 1fr; }
  }

  /* ===========================
  리뷰
  =========================== */
  #reviews { background: var(--white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card {
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: var(--radius-l);
    padding: 28px;
  }
  .review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
  }
  .av-pro    { background: var(--pro); }
  .av-home   { background: var(--home); }
  .av-pocket { background: var(--pocket); }
  .review-meta strong { display: block; font-size: 15px; font-weight: 700; }
  .review-meta span   { font-size: 13px; color: var(--g500); }
  .stars { 
    display:flex;
    gap:4px;
    justify-content: center;
    font-size: 14px; 
    color: #FBBF24; 
    margin-bottom: 20px; 
  }
  .review-body {
    font-size: 17px;
    color: var(--g600);
    line-height: 1.9;
    margin-bottom: 16px;
    word-break: keep-all;
  }
  .review-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
  }
  .rt-pro    { background: var(--pro-l);    color: var(--pro); }
  .rt-home   { background: var(--home-l);   color: var(--home); }
  .rt-pocket { background: var(--pocket-l); color: var(--pocket); }

  @media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 768px)  { .reviews-grid { grid-template-columns: 1fr; } }

  /* ===========================
  신청 방법
  =========================== */
  #how { background: var(--g50); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step-card {
    background: var(--white);
    border-radius: var(--radius-l);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-s);
  }
  .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--pro), #8B5CF6);
    color: var(--white);
    margin: 0 auto 18px;
  }
  .step-card h3 { font-size: 16px; font-weight: 800; color: var(--g900); margin-bottom: 10px; word-break: keep-all; }
  .step-card p  { font-size: 14px; color: var(--g500); line-height: 1.7; word-break: keep-all; }
  @media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

  /* ===========================
  FAQ
  =========================== */
  #faq { background: var(--white); }
  .faq-list {
    margin: 0 auto;
  }
  .faq-item { border-bottom: 1px solid var(--g200); }
  .faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--g800);
    gap: 16px;
    line-height: 1.7;
    word-break: keep-all;
  }
  .faq-q i { font-size: 14px; color: var(--g400); transition: transform 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-q i { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a p {
    padding: 0 0 26px;
    font-size: 17px;
    color: var(--g600);
    line-height: 1.9;
    word-break: keep-all;
  }

  /* ===========================
  신청 폼
  =========================== */
  #apply { background: var(--g50); }
  .apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .apply-left .sec-title { margin-bottom: 14px; }
  .apply-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .ab-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .ab-text strong { 
    display: flex;
    gap:8px; 
    align-items: center;
    font-size: 18px; 
    font-weight: 700; 
    color: var(--g800); 
    margin-bottom: 3px; 
  }

  .ab-text strong .ab-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--pro-l);
    color: var(--pro);
  }
  
  .ab-text strong .ab-title{
    font-size:16px;
    color:var(--g700);
  }

  .ab-text span { 
    font-size: 14px; 
    color: var(--g500); 
    word-break: keep-all; 
  }

  .ab-text span.description{
    padding-left:52px;
  }

  .apply-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-l);
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--g700);
    margin-bottom: 8px;
  }
  .form-group label .req { color: var(--pro); margin-left: 2px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5008px solid var(--g200);
    border-radius: var(--radius-s);
    font-size: 15px;
    font-family: inherit;
    color: var(--g800);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--pro);
    box-shadow: 0 0 0 3px rgba(91,82,240,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }

  .prod-select-group {
    display: flex;
    gap: 8px;
  }
  .psg-btn {
    flex: 1;
    padding: 40px 12px;
    text-align: center;
    border: 2px solid var(--g200);
    border-radius: var(--radius-s);
    font-size: 13px;
    font-weight: 700;
    color: var(--g500);
    transition: all 0.2s;
  }
  .psg-btn i { display: block; font-size: 18px; margin-bottom: 5px; }
  .psg-btn.sel-pro    { border-color: var(--pro);    color: var(--pro);    background: var(--pro-l); }
  .psg-btn.sel-home   { border-color: var(--home);   color: var(--home);   background: var(--home-l); }
  .psg-btn.sel-pocket { border-color: var(--pocket); color: var(--pocket); background: var(--pocket-l); }

  /* 주소 검색 */
  .address-search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
  }
  .address-search-row input {
    flex: 1;
    background: var(--g50);
    cursor: pointer;
  }
  .btn-addr-search {
    padding: 14px 18px;
    background: var(--pro);
    color: var(--white);
    border-radius: var(--radius-s);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-addr-search:hover { background: var(--pro-d); }

  .privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }
  .privacy-check input { margin-top: 3px; flex-shrink: 0; }
  .privacy-check .privacy-description { 
    display:flex; 
    flex-direction:column;
    gap:2px;
    font-size: 13px; 
    color: var(--g600); 
    line-height: 1.6; 
    word-break: keep-all; 
  }
  .privacy-check span b { color: var(--g800); }

  .btn-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--pro), #8B5CF6);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-m);
    box-shadow: 0 8px 24px rgba(91,82,240,0.35);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,82,240,0.45); }

  @media (max-width: 768px) {
    .apply-grid { grid-template-columns: 1fr; gap: 40px; }
    .apply-form-wrap { padding: 28px 24px; }
  }

  /* ===========================
  FOOTER
  =========================== */
  footer {
    background: var(--g900);
    color: rgba(255,255,255,0.5);
    padding: 48px 0 32px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    /*margin-bottom: 32px;*/
    padding-bottom: 32px;
    /*border-bottom: 1px solid rgba(255,255,255,0.08);*/
  }
  .footer-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .footer-logo-text span { color: #FBBF24; }
  .footer-logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
  }
  .footer-corp {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
  }
  .footer-biz-info {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.9;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
  }
  .footer-biz-info p { margin: 0; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
  }
  .footer-policies { display: flex; gap: 20px; }
  .footer-policies a { color: rgba(255,255,255,0.45); }
  .footer-policies a:hover { color: var(--white); }
  .footer-notice {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ===========================
  챗봇 플로팅 버튼
  =========================== */
  .chatbot-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
  }
  .chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pro), #8B5CF6);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(91,82,240,0.45);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
  }
  .chatbot-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(91,82,240,0.55);
  }
  .chatbot-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--g900);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-s);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .chatbot-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--g900);
  }
  .chatbot-float:hover .chatbot-tooltip { opacity: 1; }
