:root {
    --primary: #0052CC;
    --primary-dark: #003A99;
    --primary-light: #1A6DE8;
    --accent: #FFB800;
    --white: #ffffff;
    --gray-50: #F8FAFC;
    --gray-100: #EEF2F7;
    --gray-200: #DDE3EE;
    --gray-500: #6B7A99;
    --gray-700: #2D3A52;
    --gray-900: #0D1526;
    --text: #1A2540;
    --shadow-sm: 0 2px 8px rgba(0,82,204,0.08);
    --shadow-md: 0 8px 32px rgba(0,82,204,0.12);
    --shadow-lg: 0 20px 60px rgba(0,82,204,0.16);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Noto Sans KR', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 40px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-sm);
  }
  .nav-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-mark {
    width: 36px; height: 36px; border-radius: 9px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: white; font-weight: 900; letter-spacing: -1px;
    font-family: 'Bebas Neue', sans-serif;
  }
  .nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
  .nav-logo-main { font-size: 18px; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -0.5px; }
  .nav-logo-main span { color: var(--accent); }
  .nav-logo-sub { font-size: 10px; color: var(--gray-500); font-weight: 500; letter-spacing: 0.5px; }
  .nav-partner {
    display: flex; align-items: center; gap: 6px;
    background: var(--gray-100); border-radius: 20px;
    padding: 5px 14px; font-size: 12px; color: var(--gray-700); font-weight: 600;
  }
  .nav-partner::before { content: '🤝'; font-size: 13px; }
  .nav-cta {
    background: var(--primary); color: white;
    padding: 9px 22px; border-radius: 6px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

  /* HERO */
  .hero {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0A2150 40%, var(--primary-dark) 100%);
    padding: 100px 40px 80px; position: relative; overflow: hidden;
    min-height: 580px; display: flex; align-items: center;
  }
  .hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,82,204,0.35) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,184,0,0.08) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  /* 브랜드 워터마크 */
  .hero-watermark {
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif; font-size: 220px; color: rgba(255,255,255,0.03);
    line-height: 1; pointer-events: none; letter-spacing: -4px;
    white-space: nowrap;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-brand-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85); padding: 6px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 600; margin-bottom: 20px;
    animation: fadeUp 0.6s ease both; letter-spacing: 0.5px;
  }
  .hero-brand-chip .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
  .hero h1 {
    font-size: clamp(30px, 3.8vw, 52px); font-weight: 900; color: white;
    line-height: 1.18; margin-bottom: 22px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 .brand { color: var(--accent); }
  .hero h1 .light { font-weight: 300; color: rgba(255,255,255,0.8); }
  .hero-desc {
    color: rgba(255,255,255,0.68); font-size: 15.5px; line-height: 1.9;
    margin-bottom: 36px; animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
  .btn-primary {
    background: var(--accent); color: var(--gray-900);
    padding: 14px 30px; border-radius: 8px; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,184,0,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,184,0,0.5); }
  .btn-secondary {
    background: rgba(255,255,255,0.09); color: white;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 26px; border-radius: 8px; font-size: 15px; font-weight: 500;
    text-decoration: none; transition: background 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.16); }

  /* Hero Stats */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; animation: fadeUp 0.6s 0.4s ease both; }
  .stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
    border-radius: 14px; padding: 22px 20px; backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
  }
  .stat-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--accent); line-height: 1; margin-bottom: 6px; letter-spacing: 1px; }
  .stat-label { font-size: 12.5px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.55; }

  /* PARTNER BAR */
  .partner-bar {
    background: var(--primary); padding: 13px 40px;
    display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  }
  .partner-bar-label { color: rgba(255,255,255,0.6); font-size: 12px; }
  .partner-tag {
    background: rgba(255,255,255,0.14); border-radius: 4px;
    padding: 3px 11px; color: white; font-size: 12px; font-weight: 600;
  }
  .partner-bar-em { color: white; font-size: 12.5px; font-weight: 700; }

  /* SECTION COMMON */
  section { padding: 80px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label { display: inline-block; color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; line-height: 1.3; }
  .section-desc { font-size: 15.5px; color: var(--gray-500); line-height: 1.85; }
  .section-head { margin-bottom: 52px; }

  /* PRODUCTS */
  .products { background: var(--gray-50); }
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .product-card {
    background: white; border-radius: 16px; border: 1px solid var(--gray-200);
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
  .product-img {
    height: 230px; display: flex; align-items: center; justify-content: center;
    background: #F0F4FA; position: relative; overflow: hidden;
  }
  .product-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform 0.3s ease; }
  .product-card:hover .product-img img { transform: scale(1.06); }
  .product-img-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: white;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 4px 10px; border-radius: 4px;
  }
  .product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .product-category { font-size: 10.5px; font-weight: 700; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
  .product-name { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
  .product-sub { font-size: 12px; color: var(--gray-500); margin-bottom: 11px; }
  .product-desc { font-size: 13px; color: var(--gray-500); line-height: 1.75; flex: 1; }
  .product-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
  .tag { background: var(--gray-100); color: var(--gray-700); padding: 4px 11px; border-radius: 20px; font-size: 11px; font-weight: 500; }
  .product-link {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 16px; color: var(--primary); font-size: 13px; font-weight: 700;
    text-decoration: none; border-bottom: 1px solid var(--primary);
    padding-bottom: 1px; width: fit-content; transition: opacity 0.2s;
  }
  .product-link:hover { opacity: 0.65; }

  /* BENEFITS */
  .benefits { background: white; }
  .benefit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .benefit-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
  }
  .benefit-visual::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.06); border-radius: 50%; }
  .benefit-visual::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 120px; height: 120px; background: rgba(255,184,0,0.1); border-radius: 50%; }
  .bv-brand { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; position: relative; z-index: 1; }
  .bv-title { color: white; font-size: 22px; font-weight: 800; margin-bottom: 6px; position: relative; z-index: 1; }
  .bv-sub { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 24px; position: relative; z-index: 1; }
  .bv-item { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; border-left: 3px solid var(--accent); position: relative; z-index: 1; }
  .bv-item-label { color: var(--accent); font-size: 10.5px; font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; }
  .bv-item-val { color: white; font-size: 14px; font-weight: 600; }
  .benefit-list { list-style: none; }
  .benefit-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
  .benefit-item:last-child { border-bottom: none; }
  .benefit-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
  .benefit-item:hover .benefit-icon { background: #EEF4FF; transform: scale(1.1); }
  .benefit-item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
  .benefit-item p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

  /* HOW IT WORKS — 5단계 */
  .howitworks { background: var(--gray-50); }
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
  .steps::before {
    content: ''; position: absolute; top: 48px;
    left: calc(10% + 20px); right: calc(10% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
  }
  .step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
  .step-wrap { display: flex; flex-direction: column; align-items: center; }
  .step-badge {
    display: inline-block; background: #FFF0C0; color: #7A5500;
    font-size: 9.5px; font-weight: 700; padding: 2px 9px; border-radius: 10px;
    margin-bottom: 8px; height: 18px; line-height: 14px;
  }
  .step-badge.empty { visibility: hidden; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--primary); color: white;
    font-family: 'Bebas Neue', sans-serif; font-size: 26px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 6px white, 0 0 0 8px var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .step:hover .step-num { transform: scale(1.1); box-shadow: 0 0 0 6px white, 0 0 0 8px var(--primary); }
  .step.highlight .step-num { background: linear-gradient(135deg, var(--accent), #e0a000); color: var(--gray-900); }
  .step h4 { font-size: 13.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
  .step p { font-size: 12px; color: var(--gray-500); line-height: 1.7; }

  /* USE CASES */
  .usecases { background: white; }
  .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
  .case-card { border-radius: 14px; overflow: hidden; position: relative; height: 196px; display: flex; align-items: flex-end; transition: transform 0.25s; }
  .case-card:hover { transform: scale(1.03); }
  .case-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
  .case-card:hover .case-bg { transform: scale(1.07); }
  .case-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,20,50,0.85) 0%, rgba(5,20,50,0.15) 55%); z-index: 1; }
  .case-label { position: relative; z-index: 2; padding: 14px 18px; width: 100%; color: white; font-size: 14px; font-weight: 700; }
  .case-label small { display: block; font-size: 11.5px; font-weight: 400; color: rgba(255,255,255,0.75); margin-top: 2px; }

  /* CTA */
  .cta-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 40px; position: relative; overflow: hidden;
  }
  .cta-band::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; }
  .cta-band::after { content: '뽀송렌탈'; position: absolute; bottom: -30px; left: -10px; font-family: 'Bebas Neue', sans-serif; font-size: 160px; color: rgba(255,255,255,0.04); letter-spacing: -2px; pointer-events: none; }
  .cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
  .cta-label { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
  .cta-band h2 { font-size: clamp(22px, 2.4vw, 34px); font-weight: 800; color: white; margin-bottom: 12px; }
  .cta-band p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.85; }
  .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .cta-tel { color: var(--accent); font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; text-align: center; line-height: 1; }
  .cta-tel small { font-family: 'Noto Sans KR', sans-serif; font-size: 11px; color: rgba(255,255,255,0.55); display: block; font-style: normal; margin-bottom: 4px; }

  /* FOOTER */
  footer { background: var(--gray-900); padding: 52px 40px 32px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 1.2fr 1.6fr 1fr;
    gap: 40px; padding-bottom: 32px; margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand-wrap {}
  .footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .footer-logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: white; letter-spacing: -0.5px;
  }
  .footer-brand-name { font-size: 18px; font-weight: 900; color: white; }
  .footer-brand-name span { color: var(--accent); }
  .footer-brand-tagline { color: rgba(255,255,255,0.4); font-size: 12.5px; line-height: 1.6; margin-bottom: 14px; }
  .footer-partner-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; padding: 6px 12px;
    color: rgba(255,255,255,0.55); font-size: 11.5px;
  }
  .footer-partner-chip strong { color: rgba(255,255,255,0.8); }

  .footer-biz { }
  .footer-biz-title { color: rgba(255,255,255,0.5); font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
  .footer-biz-info { color: rgba(255,255,255,0.45); font-size: 12.5px; line-height: 2.1; }
  .footer-biz-info strong { color: rgba(255,255,255,0.75); font-weight: 600; }

  .footer-links { }
  .footer-links-title { color: rgba(255,255,255,0.5); font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
  .footer-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
  .footer-link:last-child { border-bottom: none; }
  .footer-link:hover { color: rgba(255,255,255,0.8); }
  .footer-link-icon { font-size: 14px; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,0.28); font-size: 12px;
  }

  /* CONSULT FORM */
  .consult-section { background: linear-gradient(135deg, var(--gray-900) 0%, #0A2150 40%, var(--primary-dark) 100%); padding: 90px 40px; position: relative; overflow: hidden; }
  .consult-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(0,82,204,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .consult-section::after {
    content: '뽀송렌탈'; position: absolute; bottom: -30px; right: -10px;
    font-family: 'Bebas Neue', sans-serif; font-size: 140px;
    color: rgba(255,255,255,0.03); letter-spacing: -2px; pointer-events: none;
  }
  .consult-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: start; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

  /* 좌측 */
  .consult-label { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; margin-bottom: 18px; }
  .consult-title { font-size: clamp(36px, 4vw, 56px); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 18px; }
  .consult-desc { color: rgba(255,255,255,0.58); font-size: 14.5px; line-height: 1.85; margin-bottom: 36px; }
  .consult-contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
  .consult-contact-item { display: flex; align-items: center; gap: 14px; }
  .consult-contact-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,184,0,0.12); border: 1px solid rgba(255,184,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .consult-contact-main { color: white; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
  .consult-contact-sub { color: rgba(255,255,255,0.4); font-size: 12px; }
  .consult-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .consult-benefits li { color: rgba(255,255,255,0.6); font-size: 13.5px; display: flex; align-items: center; gap: 10px; }
  .consult-benefits li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; }

  /* 우측 폼 */
  .consult-form-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px; padding: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .consult-form { display: flex; flex-direction: column; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; }
  .req { color: var(--accent); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 12px 14px;
    color: white; font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    outline: none; transition: border-color 0.2s, background 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary-light);
    background: rgba(26,109,232,0.1);
  }
  .form-group select option { background: #0d2a5c; color: white; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-check { display: flex; gap: 12px; align-items: flex-start; }
  .form-check input[type=checkbox] { margin-top: 3px; accent-color: var(--primary-light); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
  .form-check label { color: rgba(255,255,255,0.55); font-size: 12.5px; line-height: 1.6; cursor: pointer; }
  .form-check label strong { color: rgba(255,255,255,0.85); }
  .form-check label small { color: rgba(255,255,255,0.35); font-size: 11px; }
  .form-submit-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #e0a000 100%);
    color: var(--gray-900); border: none; border-radius: 10px;
    padding: 16px; font-size: 15px; font-weight: 800;
    cursor: pointer; width: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,184,0,0.35);
  }
  .form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,184,0,0.5); }
  .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-note { color: rgba(255,255,255,0.28); font-size: 12px; text-align: center; }
  .form-success-msg {
    background: rgba(26,109,232,0.15); border: 1px solid rgba(26,109,232,0.35);
    border-radius: 12px; padding: 32px; text-align: center;
    color: #60a5fa; font-size: 16px; font-weight: 700; line-height: 1.8;
    margin-bottom: 0;
  }
  .form-success-msg span { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 400; display: block; margin-top: 6px; }

  @media (max-width: 960px) {
    .consult-section { padding: 60px 20px; }
    .consult-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* 기존 CTA 숨김 */
  .cta-band, .cta-inner, .cta-label, .cta-tel, .cta-actions { display: none; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 0 20px; }
    .nav-logo-sub { display: none; }
    section { padding: 60px 20px; }
    .hero { padding: 60px 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    .product-grid { grid-template-columns: 1fr; }
    .benefit-layout { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
    .steps::before { display: none; }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-actions { align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .partner-bar { padding: 12px 20px; }
  }
  @media (max-width: 580px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: 1fr; }
  }

.cf-turnstile { margin: 4px 0 2px; }

