@charset "UTF-8";
/* ============================================================
   HBW LAYOUT  —  Trendy Startup
   그라데이션 · 글래스모피즘 · 볼드 타이포 · 스크롤 리빌
============================================================ */

:root{
	--hbw-point:  #22a7ec;
	--hbw-point2: #45cfee;
	--hbw-grad:   linear-gradient(120deg, #22a7ec 0%, #45cfee 100%);
	--hbw-width:  1200px;
	--hbw-header-h: 80px;
	--hbw-ink:    #102433;
	--hbw-text:   #2a3b48;
	--hbw-soft:   #5f7488;
	--hbw-line:   #e1edf5;
	--hbw-bg:     #ffffff;
	--hbw-bg2:    #eef6fb;
	--hbw-dark:   #1877c0;
	--hbw-radius: 20px;
	--hbw-radius-sm: 14px;
	--hbw-shadow: 0 18px 50px rgba(15,60,100,.10);
	--hbw-shadow-lg: 0 30px 80px rgba(15,70,120,.16);
	--hbw-ease:   cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
html, body{ margin:0; padding:0; }
body{ min-height:100vh; display:flex; flex-direction:column; background:var(--hbw-bg); }
body > .hbw{ flex:1 0 auto; display:flex; flex-direction:column; }

/* ---------- base ---------- */
.hbw, .hbw *{ box-sizing:border-box; }
.hbw{
	font-family:"Pretendard","Apple SD Gothic Neo","Malgun Gothic",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
	color:var(--hbw-text); line-height:1.65; letter-spacing:-.01em;
	-webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.hbw img{ max-width:100%; height:auto; vertical-align:middle; }
.hbw a{ color:inherit; text-decoration:none; transition:color .2s var(--hbw-ease); }
.hbw h1,.hbw h2,.hbw h3{ color:var(--hbw-ink); letter-spacing:-.025em; }
.hbw .blind{ position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); }
.hbw-skip{ position:absolute; left:-9999px; }
.hbw-skip a:focus{ position:fixed; left:8px; top:8px; z-index:9999; background:var(--hbw-point); color:#fff; padding:10px 16px; border-radius:8px; }
.hbw-container{ width:100%; max-width:var(--hbw-width); margin:0 auto; padding:0 24px; }

.hbw-grad-text{ background:var(--hbw-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- buttons ---------- */
.hbw-btn{
	display:inline-flex; align-items:center; gap:9px; padding:15px 30px; border-radius:50px;
	font-size:16px; font-weight:700; line-height:1; cursor:pointer; border:0;
	transition:transform .25s var(--hbw-ease), box-shadow .25s var(--hbw-ease), background .25s;
}
.hbw-btn i{ font-size:18px; transition:transform .25s var(--hbw-ease); }
.hbw-btn:hover i{ transform:translateX(3px); }
.hbw-btn--solid{ background:var(--hbw-grad); color:#fff !important; box-shadow:0 14px 34px rgba(34,167,236,.45); }
.hbw-btn--solid:hover{ transform:translateY(-3px); box-shadow:0 20px 44px rgba(34,167,236,.55); }
.hbw-btn--ghost{ background:rgba(255,255,255,.12); color:#fff !important; border:1px solid rgba(255,255,255,.35); backdrop-filter:blur(6px); }
.hbw-btn--ghost:hover{ background:rgba(255,255,255,.22); transform:translateY(-3px); }
.hbw-btn--white{ background:#fff; color:var(--hbw-point) !important; box-shadow:0 14px 34px rgba(0,0,0,.18); }
.hbw-btn--white:hover{ transform:translateY(-3px); box-shadow:0 20px 44px rgba(0,0,0,.26); }

/* ---------- blobs ---------- */
.hbw-blob{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.55; pointer-events:none; z-index:0; }
.hbw-blob.b1{ width:46vw; max-width:560px; aspect-ratio:1; background:var(--hbw-point); top:-12%; left:-8%; animation:hbwFloat 14s var(--hbw-ease) infinite; }
.hbw-blob.b2{ width:40vw; max-width:480px; aspect-ratio:1; background:var(--hbw-point2); bottom:-18%; right:-10%; animation:hbwFloat 18s var(--hbw-ease) infinite reverse; }
.hbw-blob.b3{ width:28vw; max-width:340px; aspect-ratio:1; background:#3ad0ff; top:30%; right:20%; opacity:.35; animation:hbwFloat 22s var(--hbw-ease) infinite; }
@keyframes hbwFloat{ 0%,100%{ transform:translate(0,0) scale(1) } 33%{ transform:translate(40px,-30px) scale(1.1) } 66%{ transform:translate(-30px,20px) scale(.95) } }

/* ---------- scroll reveal ---------- */
.hbw .reveal{ opacity:0; transform:translateY(34px); transition:opacity .7s var(--hbw-ease), transform .7s var(--hbw-ease); }
.hbw .reveal.in{ opacity:1; transform:none; }
.hbw .reveal.d1{ transition-delay:.08s } .hbw .reveal.d2{ transition-delay:.16s }
.hbw .reveal.d3{ transition-delay:.24s } .hbw .reveal.d4{ transition-delay:.32s }
@media (prefers-reduced-motion:reduce){ .hbw .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================ HEADER ============================================================ */
.hbw-header{
	position:sticky; top:0; left:0; width:100%; z-index:900; background:#fff;
	border-bottom:1px solid var(--hbw-line);
	transition:background .3s var(--hbw-ease), box-shadow .3s var(--hbw-ease), border-color .3s var(--hbw-ease);
}
.hbw-header-inner{ display:flex; align-items:center; gap:30px; max-width:var(--hbw-width); margin:0 auto; padding:0 24px; height:var(--hbw-header-h); }

/* overlay (투명) */
.hbw.header-overlay .hbw-header{ position:fixed; background:transparent; border-bottom-color:transparent; }
.hbw.header-overlay .hbw-header .hbw-logo a,
.hbw.header-overlay .hbw-header .hbw-gnb > ul > li > a,
.hbw.header-overlay .hbw-header .hbw-util-btn{ color:#fff; }
.hbw.header-overlay .hbw-header .hbw-menu-toggle span{ background:#fff; }

/* scrolled / solid */
.hbw .hbw-header.is-scrolled, .hbw.header-solid .hbw-header{
	position:fixed; background:rgba(255,255,255,.85);
	backdrop-filter:saturate(180%) blur(16px); -webkit-backdrop-filter:saturate(180%) blur(16px);
	border-bottom-color:var(--hbw-line); box-shadow:0 6px 30px rgba(15,60,100,.07);
}
.hbw.header-solid{ padding-top:var(--hbw-header-h); }
.hbw .hbw-header.is-scrolled .hbw-logo a, .hbw.header-solid .hbw-logo a,
.hbw .hbw-header.is-scrolled .hbw-gnb > ul > li > a, .hbw.header-solid .hbw-gnb > ul > li > a,
.hbw .hbw-header.is-scrolled .hbw-util-btn, .hbw.header-solid .hbw-util-btn{ color:var(--hbw-text); }
.hbw .hbw-header.is-scrolled .hbw-menu-toggle span, .hbw.header-solid .hbw-menu-toggle span{ background:var(--hbw-ink); }

/* logo */
.hbw-logo{ margin:0; font-size:0; flex:0 0 auto; }
.hbw-logo a{ display:inline-flex; align-items:center; }
.hbw-logo img{ max-height:34px; width:auto; }
.hbw-logo .logo-text{ font-size:23px; font-weight:800; letter-spacing:-.03em; }
.hbw-logo .logo-light{ display:none; }
.hbw.header-overlay .hbw-header:not(.is-scrolled) .hbw-logo .logo-solid{ display:none; }
.hbw.header-overlay .hbw-header:not(.is-scrolled) .hbw-logo .logo-light{ display:inline; }

/* GNB */
.hbw-gnb{ flex:1 1 auto; }
.hbw-gnb-depth1{ display:flex; gap:4px; list-style:none; margin:0; padding:0; }
.hbw-gnb-depth1 > li{ position:relative; }
.hbw-gnb-depth1 > li > a{ display:block; padding:0 18px; line-height:var(--hbw-header-h); font-size:16px; font-weight:600; position:relative; }
.hbw-gnb-depth1 > li > a::after{ content:""; position:absolute; left:18px; right:18px; bottom:24px; height:3px; border-radius:3px; background:var(--hbw-grad); transform:scaleX(0); transform-origin:left; transition:transform .28s var(--hbw-ease); }
.hbw-gnb-depth1 > li:hover > a::after, .hbw-gnb-depth1 > li > a.on::after{ transform:scaleX(1); }
.hbw-gnb-depth1 > li:hover > a{ color:var(--hbw-point) !important; }
.hbw-gnb-depth2{ position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(12px); min-width:190px; padding:10px; background:rgba(255,255,255,.9); backdrop-filter:blur(14px); border-radius:var(--hbw-radius-sm); box-shadow:var(--hbw-shadow); border:1px solid var(--hbw-line); opacity:0; visibility:hidden; transition:all .25s var(--hbw-ease); z-index:10; }
.hbw-gnb-depth1 > li:hover .hbw-gnb-depth2{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(7px); }
.hbw-gnb-depth2 ul{ list-style:none; margin:0; padding:0; }
.hbw-gnb-depth2 a{ display:block; padding:10px 14px; border-radius:10px; font-size:14.5px; font-weight:500; color:var(--hbw-soft); white-space:nowrap; }
.hbw-gnb-depth2 a:hover, .hbw-gnb-depth2 a.on{ background:var(--hbw-bg2); color:var(--hbw-point); }

/* util */
.hbw-util{ display:flex; align-items:center; gap:4px; flex:0 0 auto; }
.hbw-util-btn{ display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; font-size:18px; color:var(--hbw-soft); transition:background .2s,color .2s,transform .2s; }
.hbw-util-btn:hover{ background:rgba(120,120,160,.14); color:var(--hbw-point); transform:translateY(-2px); }
.hbw.header-overlay .hbw-header:not(.is-scrolled) .hbw-util-btn:hover{ background:rgba(255,255,255,.2); color:#fff; }

/* hamburger */
.hbw-menu-toggle{ display:none; width:44px; height:44px; border:0; background:none; cursor:pointer; padding:0; margin-left:4px; }
.hbw-menu-toggle span{ display:block; width:23px; height:2px; margin:5px auto; background:var(--hbw-ink); border-radius:2px; transition:.3s var(--hbw-ease); }

/* ============================================================ HERO ============================================================ */
.hbw-hero{ position:relative; height:100vh; min-height:600px; overflow:hidden; background:var(--hbw-dark); }

/* image slider hero */
.hbw-hero-track{ position:absolute; inset:0; }
.hbw-hero-slide{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; visibility:hidden; transform:scale(1.08); transition:opacity 1.1s var(--hbw-ease), visibility 1.1s, transform 6s linear; }
.hbw-hero-slide.active{ opacity:1; visibility:visible; transform:scale(1); }
.hbw-hero-mask{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(12,55,95,.30),rgba(12,55,95,.55)); }
.hbw-hero-caption{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; max-width:var(--hbw-width); margin:0 auto; padding:0 24px; color:#fff; z-index:3; }
.hbw-hero-caption--center{ align-items:center; text-align:center; }
.hbw-hero-caption h2{ color:#fff; margin:0 0 20px; font-size:clamp(36px,5.4vw,74px); font-weight:800; line-height:1.1; text-shadow:0 6px 40px rgba(0,0,0,.3); }
.hbw-hero-caption p{ margin:0 0 32px; font-size:clamp(16px,1.7vw,22px); max-width:640px; color:rgba(255,255,255,.92); }
.hbw-hero-caption--center p{ margin-left:auto; margin-right:auto; }
.hbw-hero-actions{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.hbw-hero-btn{ display:inline-flex; align-items:center; gap:9px; padding:15px 30px; border-radius:50px; background:var(--hbw-grad); color:#fff !important; font-weight:700; font-size:16px; box-shadow:0 14px 34px rgba(34,167,236,.45); transition:transform .25s var(--hbw-ease), box-shadow .25s; }
.hbw-hero-btn:hover{ transform:translateY(-3px); box-shadow:0 20px 44px rgba(34,167,236,.55); }

/* image hero entrance */
.hbw-hero:not(.hbw-hero--grad) .hbw-hero-slide.active h2{ animation:hbwUp .9s .25s var(--hbw-ease) both; }
.hbw-hero:not(.hbw-hero--grad) .hbw-hero-slide.active p{ animation:hbwUp .9s .4s var(--hbw-ease) both; }
.hbw-hero:not(.hbw-hero--grad) .hbw-hero-slide.active .hbw-hero-btn{ animation:hbwUp .9s .55s var(--hbw-ease) both; }
@keyframes hbwUp{ from{ opacity:0; transform:translateY(28px) } to{ opacity:1; transform:translateY(0) } }

/* gradient hero */
.hbw-hero--grad{ background:radial-gradient(120% 120% at 80% 10%, #4cc3f0 0%, var(--hbw-dark) 58%); }
.hbw-hero--grad .hbw-badge{ display:inline-flex; align-items:center; gap:7px; padding:9px 18px; border-radius:50px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22); backdrop-filter:blur(8px); color:#fff; font-size:14px; font-weight:600; margin-bottom:26px; }
.hbw-hero--grad .hbw-badge i{ color:#ffd76a; }
.hbw-hero--grad h2{ background:linear-gradient(120deg,#fff 0%,#cfeeff 45%,#a7e0ff 100%); -webkit-background-clip:text; background-clip:text; color:transparent; text-shadow:none; }
.hbw-grid-overlay{ position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:54px 54px; mask-image:radial-gradient(circle at 50% 40%,#000 0%,transparent 75%); -webkit-mask-image:radial-gradient(circle at 50% 40%,#000 0%,transparent 75%); z-index:1; }
.hbw-hero--grad .hbw-hero-caption{ z-index:3; }

/* scroll cue */
.hbw-hero-scroll{ position:absolute; left:50%; bottom:42px; transform:translateX(-50%); width:26px; height:42px; border:2px solid rgba(255,255,255,.55); border-radius:14px; z-index:4; }
.hbw-hero-scroll span{ position:absolute; left:50%; top:8px; width:4px; height:8px; margin-left:-2px; background:#fff; border-radius:2px; animation:hbwScroll 1.6s infinite; }
@keyframes hbwScroll{ 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%,100%{opacity:0;transform:translateY(14px)} }

/* dots & arrows */
.hbw-hero-dots{ position:absolute; left:50%; bottom:40px; transform:translateX(-50%); display:flex; gap:10px; z-index:5; }
.hbw-hero-dots button{ width:10px; height:10px; padding:0; border:0; border-radius:50%; background:rgba(255,255,255,.45); cursor:pointer; transition:.3s var(--hbw-ease); }
.hbw-hero-dots button.active{ width:32px; border-radius:6px; background:#fff; }
.hbw-hero-arrow{ position:absolute; top:50%; transform:translateY(-50%); z-index:5; width:54px; height:54px; border:0; border-radius:50%; cursor:pointer; background:rgba(255,255,255,.12); color:#fff; font-size:22px; backdrop-filter:blur(4px); transition:background .25s; display:flex; align-items:center; justify-content:center; }
.hbw-hero-arrow:hover{ background:rgba(255,255,255,.28); }
.hbw-hero-arrow.prev{ left:28px; } .hbw-hero-arrow.next{ right:28px; }

/* ============================================================ SUB VISUAL ============================================================ */
.hbw-subvisual{ position:relative; min-height:380px; display:flex; align-items:center; background:radial-gradient(120% 120% at 80% 10%, #4cc3f0 0%, var(--hbw-dark) 60%) center/cover no-repeat; color:#fff; overflow:hidden; }
.hbw-subvisual-mask{ position:absolute; inset:0; background:#125f9e; opacity:.4; }
.hbw-subvisual-inner{ position:relative; z-index:2; width:100%; max-width:var(--hbw-width); margin:0 auto; padding:var(--hbw-header-h) 24px 0; text-align:center; }
.hbw-subvisual-title{ color:#fff; margin:0; font-size:clamp(30px,4.2vw,50px); font-weight:800; text-shadow:0 4px 26px rgba(0,0,0,.3); animation:hbwUp .8s .12s var(--hbw-ease) both; }
.hbw-breadcrumb{ margin-top:18px; font-size:14.5px; color:rgba(255,255,255,.85); display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; animation:hbwUp .8s .28s var(--hbw-ease) both; }
.hbw-breadcrumb a{ color:rgba(255,255,255,.85); } .hbw-breadcrumb a:hover{ color:#fff; }
.hbw-breadcrumb .sep{ opacity:.5; } .hbw-breadcrumb strong{ font-weight:700; color:#fff; } .hbw-breadcrumb .xi-home{ font-size:16px; }

/* ============================================================ CONTENT ============================================================ */
.hbw-main{ padding:80px 0; }
.hbw.is-main .hbw-main{ padding:0; }
.hbw-content{ width:100%; }

/* ============================================================ SECTIONS (demo) ============================================================ */
.hbw-section{ position:relative; padding:110px 0; }
.hbw-section-head{ text-align:center; max-width:680px; margin:0 auto 60px; }
.hbw-eyebrow{ display:inline-block; font-size:13px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; background:var(--hbw-grad); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:14px; }
.hbw-section-title{ font-size:clamp(28px,3.6vw,44px); font-weight:800; margin:0; line-height:1.2; }

/* features */
.hbw-features{ background:var(--hbw-bg2); }
.hbw-feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.hbw-feature-card{ background:#fff; border:1px solid var(--hbw-line); border-radius:var(--hbw-radius); padding:38px 28px; transition:transform .3s var(--hbw-ease), box-shadow .3s var(--hbw-ease), border-color .3s; }
.hbw-feature-card:hover{ transform:translateY(-8px); box-shadow:var(--hbw-shadow-lg); border-color:transparent; }
.hbw-feature-ico{ width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:26px; color:#fff; background:var(--hbw-grad); box-shadow:0 10px 24px rgba(34,167,236,.35); margin-bottom:22px; }
.hbw-feature-card h3{ font-size:20px; font-weight:700; margin:0 0 10px; }
.hbw-feature-card p{ margin:0; font-size:15px; color:var(--hbw-soft); line-height:1.7; }

/* about */
.hbw-about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hbw-about-visual{ position:relative; }
.hbw-about-visual img{ width:100%; border-radius:var(--hbw-radius); box-shadow:var(--hbw-shadow-lg); }
.hbw-about-ph{ position:relative; aspect-ratio:4/3; border-radius:var(--hbw-radius); overflow:hidden; background:radial-gradient(120% 120% at 20% 10%, #4cc3f0, var(--hbw-dark)); display:flex; align-items:center; justify-content:center; }
.hbw-about-ph i{ position:relative; z-index:2; font-size:74px; color:rgba(255,255,255,.9); }
.hbw-about-body .hbw-section-title{ margin:8px 0 18px; text-align:left; }
.hbw-about-body > p{ font-size:16.5px; color:var(--hbw-soft); line-height:1.8; margin:0 0 26px; }
.hbw-check-list{ list-style:none; margin:0; padding:0; }
.hbw-check-list li{ display:flex; align-items:center; gap:12px; font-size:16px; font-weight:600; color:var(--hbw-ink); margin-bottom:14px; }
.hbw-check-list i{ flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:var(--hbw-grad); color:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; }

/* stats */
.hbw-stats{ background:#e8f4fc; color:var(--hbw-text); padding:80px 0; }
.hbw-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.hbw-stat{ position:relative; display:flex; flex-direction:row; flex-wrap:wrap; align-items:baseline; justify-content:center; }
.hbw-stat strong, .hbw-stat .hbw-count, .hbw-count-suffix{ font-weight:800; line-height:1; background:linear-gradient(120deg,#22a7ec 0%,#1877c0 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hbw-stat strong, .hbw-stat .hbw-count{ font-size:clamp(40px,5vw,64px); }
.hbw-count-suffix{ font-size:clamp(26px,3.2vw,40px); margin-left:2px; }
.hbw-stat em{ flex:0 0 100%; margin-top:14px; font-style:normal; font-size:15px; color:var(--hbw-soft); }

/* cta */
.hbw-cta{ padding:0 0 110px; }
.hbw-cta-box{ position:relative; overflow:hidden; border-radius:32px; background:var(--hbw-grad); padding:72px 40px; text-align:center; box-shadow:var(--hbw-shadow-lg); }
.hbw-cta-box .hbw-blob{ filter:blur(50px); opacity:.4; }
.hbw-cta-box .hbw-blob.b1{ background:#fff; top:-30%; left:-5%; }
.hbw-cta-box .hbw-blob.b2{ background:#7fe3ff; bottom:-40%; right:0; }
.hbw-cta-inner{ position:relative; z-index:2; }
.hbw-cta-inner h2{ color:#fff; font-size:clamp(28px,3.6vw,42px); font-weight:800; margin:0 0 14px; }
.hbw-cta-inner p{ color:rgba(255,255,255,.92); font-size:17px; margin:0 0 30px; }

/* ============================================================ FOOTER ============================================================ */
.hbw-footer{ background:#eaf4fc; color:var(--hbw-text); margin-top:auto; border-top:1px solid var(--hbw-line); }
.hbw-footer-inner{ display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between; padding-top:64px; padding-bottom:48px; }
.hbw-footer-brand{ max-width:420px; }
.hbw-footer-logo{ margin:0 0 14px; font-size:22px; font-weight:800; color:var(--hbw-ink); }
.hbw-footer-text{ margin:0; font-size:14.5px; line-height:1.8; color:var(--hbw-soft); }
.hbw-footer-nav{ display:flex; flex-wrap:wrap; gap:50px; }
.hbw-footer-nav dl{ margin:0; }
.hbw-footer-nav dt{ margin-bottom:15px; font-size:15px; font-weight:700; color:var(--hbw-ink); }
.hbw-footer-nav dt a:hover{ color:var(--hbw-point); }
.hbw-footer-nav dd{ margin:0 0 10px; font-size:14px; color:var(--hbw-soft); }
.hbw-footer-nav dd a:hover{ color:var(--hbw-point); }
.hbw-copyright{ border-top:1px solid var(--hbw-line); padding:24px 0; font-size:13px; color:var(--hbw-soft); }

/* top */
.hbw-top{ position:fixed; right:26px; bottom:26px; z-index:800; width:52px; height:52px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:var(--hbw-grad); color:#fff; font-size:20px; box-shadow:0 12px 30px rgba(34,167,236,.4); opacity:0; visibility:hidden; transform:translateY(14px); transition:.3s var(--hbw-ease); }
.hbw-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.hbw-top:hover{ transform:translateY(-4px); }

/* ============================================================ MOBILE MENU ============================================================ */
.hbw-mobile{ position:fixed; inset:0; z-index:1000; visibility:hidden; }
.hbw-mobile.open{ visibility:visible; }
.hbw-mobile-dim{ position:absolute; inset:0; background:rgba(10,12,28,.55); opacity:0; transition:opacity .3s var(--hbw-ease); }
.hbw-mobile.open .hbw-mobile-dim{ opacity:1; }
.hbw-mobile-panel{ position:absolute; top:0; right:0; width:330px; max-width:85vw; height:100%; background:#fff; box-shadow:-12px 0 50px rgba(0,0,0,.2); padding:24px 8px; transform:translateX(100%); transition:transform .35s var(--hbw-ease); overflow-y:auto; }
.hbw-mobile.open .hbw-mobile-panel{ transform:translateX(0); }
.hbw-mobile-close{ position:absolute; top:16px; right:14px; width:44px; height:44px; border:0; background:none; font-size:24px; color:var(--hbw-ink); cursor:pointer; }
.hbw-mobile-util{ display:flex; gap:8px; padding:14px 16px 18px; margin-top:30px; border-bottom:1px solid var(--hbw-line); }
.hbw-mobile-util a{ flex:1; text-align:center; padding:12px; border-radius:12px; background:var(--hbw-bg2); font-size:14px; font-weight:600; }
.hbw-mobile-util a:first-child{ background:var(--hbw-grad); color:#fff; }
.hbw-mobile-nav ul{ list-style:none; margin:0; padding:0; }
.hbw-mobile-nav > ul > li{ position:relative; border-bottom:1px solid var(--hbw-line); }
.hbw-mobile-nav > ul > li > a{ display:block; padding:17px 16px; font-size:16px; font-weight:600; }
.hbw-mobile-nav > ul > li > a.on{ color:var(--hbw-point); }
.hbw-mobile-acc{ position:absolute; top:7px; right:6px; width:46px; height:46px; border:0; background:none; font-size:18px; color:var(--hbw-soft); cursor:pointer; transition:transform .25s; }
.hbw-mobile-nav li.open > .hbw-mobile-acc{ transform:rotate(180deg); }
.hbw-mobile-nav > ul > li > ul{ display:none; padding:0 16px 12px; }
.hbw-mobile-nav li.open > ul{ display:block; }
.hbw-mobile-nav > ul > li > ul a{ display:block; padding:11px 12px; font-size:14.5px; color:var(--hbw-soft); }
.hbw-mobile-nav > ul > li > ul a.on{ color:var(--hbw-point); }
.hbw .hbw-menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hbw .hbw-menu-toggle.active span:nth-child(2){ opacity:0; }
.hbw .hbw-menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width:1024px){
	.hbw-gnb{ display:none; }
	.hbw-menu-toggle{ display:block; }
	.hbw-hero-arrow{ display:none; }
	.hbw-feature-grid{ grid-template-columns:repeat(2,1fr); }
	.hbw-stats-grid{ grid-template-columns:repeat(2,1fr); gap:40px 20px; }
	.hbw-about-grid{ grid-template-columns:1fr; gap:40px; }
	.hbw-about-body .hbw-section-title{ text-align:center; }
	.hbw-about-body{ text-align:center; }
	.hbw-check-list li{ justify-content:center; }
}
@media (max-width:768px){
	:root{ --hbw-header-h:64px; }
	.hbw-container{ padding:0 18px; }
	.hbw-section{ padding:72px 0; }
	.hbw-section-head{ margin-bottom:44px; }
	.hbw-main{ padding:56px 0; }
	.hbw-hero{ min-height:560px; }
	.hbw-hero-scroll{ display:none; }
	.hbw-subvisual{ min-height:280px; }
	.hbw-feature-grid{ grid-template-columns:1fr; gap:18px; }
	.hbw-cta-box{ padding:54px 26px; border-radius:24px; }
	.hbw-footer-inner{ flex-direction:column; gap:32px; }
	.hbw-footer-nav{ gap:36px; }
	.hbw-top{ right:16px; bottom:16px; width:46px; height:46px; }
}
