:root{
  --bg-dark:#081121;
  --bg-dark-2:#0d1830;
  --bg-navy:#101a32;
  --surface:#ffffff;
  --surface-soft:#f4f8ff;
  --surface-soft-2:#eef4ff;
  --text-main:#121a2f;
  --text-sub:#5f6b85;
  --line:#e4ecf7;
  --yellow:#ffd44d;
  --yellow-2:#ffbe0b;
  --blue:#5b84ff;
  --cyan:#53d8ff;
  --shadow:0 20px 60px rgba(15,27,58,.10);
  --shadow-lg:0 32px 100px rgba(9,19,40,.28);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter','Noto Sans KR',sans-serif;
  color:var(--text-main);
  background:#ffffff;
  margin:0;
}

.site-body{
  overflow-x:hidden;
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.035;
  background-image:
    radial-gradient(circle at 25% 25%, #ffffff 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #ffffff 1px, transparent 1px);
  background-size:22px 22px;
}

.ultra-nav{
  background:rgba(7,16,31,.72);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
  z-index:1000;
}

.brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-badge{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, var(--yellow), #fff0b5);
  color:#111;
  font-weight:900;
  box-shadow:0 12px 30px rgba(255,212,77,.28);
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-text strong{
  font-size:16px;
  color:#fff;
  letter-spacing:.02em;
}

.brand-text small{
  color:rgba(255,255,255,.7);
  font-size:11px;
}

.navbar-dark .navbar-nav .nav-link{
  color:rgba(255,255,255,.78);
  font-weight:600;
  padding:.85rem 1rem;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover{
  color:#fff;
}

.navbar-dark .navbar-nav .nav-link.phone-nav-link{
  color:var(--yellow);
  font-weight:800;
  white-space:nowrap;
}
.navbar-dark .navbar-nav .nav-link.phone-nav-link:hover{
  color:var(--yellow-2);
}
.navbar-dark .navbar-nav .nav-link.phone-nav-link i{
  margin-right:.35rem;
}

.footer-business-info a,
.footer-business-info a:hover{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}

.hero-section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at top left, rgba(83,216,255,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(91,132,255,.16), transparent 32%),
    linear-gradient(180deg, #081121 0%, #0d1830 100%);
  color:#fff;
  padding:140px 0 90px;
}

.hero-inner{
  position:relative;
  z-index:3;
}

.hero-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.45;
  z-index:1;
}

.orb-one{
  width:360px;
  height:360px;
  background:rgba(83,216,255,.30);
  top:70px;
  left:-100px;
}

.orb-two{
  width:420px;
  height:420px;
  background:rgba(91,132,255,.34);
  right:-120px;
  bottom:40px;
}

.mini-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#dce7ff;
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
}

.hero-title{
  font-size:clamp(2.5rem, 5vw, 4.7rem);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.04em;
  margin:0;
}

.hero-title span{
  color:var(--yellow);
}

.hero-desc{
  max-width:760px;
  font-size:1.08rem;
  line-height:1.95;
  color:rgba(255,255,255,.78);
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-tags span{
  display:inline-flex;
  align-items:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:#eef4ff;
  font-size:13px;
  font-weight:600;
}

.glass-card{
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  backdrop-filter:blur(16px);
  border-radius:28px;
  box-shadow:var(--shadow-lg);
}

.hero-panel{
  padding:28px;
}

.panel-top{
  margin-bottom:18px;
}

.live-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#2fe08f;
  box-shadow:0 0 0 8px rgba(47,224,143,.12);
}

.panel-chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:12px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.12);
}

.metric-box{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.05);
  border-radius:20px;
  padding:18px;
  height:100%;
}

.metric-box strong{
  display:block;
  font-size:1.45rem;
  color:#fff;
  margin-bottom:6px;
}

.metric-box span{
  display:block;
  color:rgba(255,255,255,.70);
  font-size:.92rem;
  line-height:1.55;
}

.panel-list{
  padding-left:18px;
  color:#eaf1ff;
  line-height:1.95;
}

.section-space{
  padding:110px 0;
  position:relative;
  z-index:2;
}

.section-soft{
  background:linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-soft-2) 100%);
}

.section-kicker{
  display:inline-block;
  color:#5876c8;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:12px;
}

.section-title{
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.03em;
  margin:0 0 18px;
}

.section-title-sm{
  font-size:1.6rem;
  line-height:1.2;
  font-weight:800;
  margin:0 0 16px;
}

.section-lead{
  font-size:1.1rem;
  line-height:1.9;
  color:var(--text-sub);
  margin-bottom:16px;
}

.section-lead.narrow{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}

.section-lead.center{
  text-align:center;
}

.section-text{
  font-size:1rem;
  line-height:1.95;
  color:var(--text-sub);
  margin-bottom:0;
}

.soft-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
}

.check-list{
  margin:0;
  padding-left:18px;
  color:#41506d;
  line-height:2;
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  height:100%;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.reason-card:hover,
.detail-card:hover,
.workflow-card:hover,
.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(20,35,70,.12);
}

.service-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg, #0f1931, #233860);
  color:#fff;
  font-size:1.35rem;
}

.service-card h3,
.reason-card h3,
.detail-card h3,
.workflow-card h3,
.pricing-card h3{
  font-size:1.35rem;
  font-weight:800;
  margin:18px 0 12px;
  letter-spacing:-.02em;
}

.service-card p,
.reason-card p,
.detail-card p,
.workflow-card p,
.pricing-card p,
.value-item p,
.form-note,
.cta-text{
  color:var(--text-sub);
  line-height:1.85;
  margin-bottom:0;
}

.reason-card,
.detail-card,
.workflow-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  height:100%;
  box-shadow:var(--shadow);
}

.value-item{
  padding-bottom:22px;
  margin-bottom:22px;
  border-bottom:1px solid var(--line);
}

.value-item h3{
  font-size:1.2rem;
  font-weight:800;
  margin-bottom:8px;
}

.detail-list,
.pricing-list{
  margin:18px 0 0;
  padding-left:18px;
  color:#41506d;
  line-height:2;
}

.workflow-card span{
  display:inline-block;
  color:#5d79c9;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  margin-bottom:12px;
}

.subpage-body{
  background:#fff;
}

.sub-hero{
  padding:180px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(83,216,255,.08), transparent 24%),
    linear-gradient(180deg, #0a1223 0%, #111d36 100%);
  color:#fff;
}

.sub-hero-title{
  font-size:clamp(2.2rem, 4vw, 4rem);
  font-weight:900;
  letter-spacing:-.04em;
  margin:0;
}

.sub-hero-desc{
  color:rgba(255,255,255,.76);
  font-size:1.05rem;
  line-height:1.9;
}

.pricing-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
  height:100%;
}

.pricing-card.featured{
  border:1px solid rgba(255,190,11,.45);
  box-shadow:0 28px 80px rgba(255,190,11,.15);
  transform:translateY(-4px);
}

.featured-ribbon{
  position:absolute;
  top:18px;
  right:18px;
  background:linear-gradient(135deg, var(--yellow), #ffe89a);
  color:#111;
  font-size:12px;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
}

.pricing-top{
  margin-bottom:18px;
}

.pricing-badge{
  display:inline-flex;
  padding:9px 12px;
  border-radius:999px;
  background:#111d36;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.pricing-badge.gold{
  background:linear-gradient(135deg, var(--yellow), #ffe89a);
  color:#111;
}

.price-value{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.04em;
  margin:14px 0 10px;
}

.pricing-note p{
  color:var(--text-sub);
}

.contact-form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
}

.contact-info-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-info-list li{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.contact-info-list li:last-child{
  border-bottom:0;
}

.contact-info-list i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, #0f1931, #233860);
  color:#fff;
  flex:0 0 42px;
}

.contact-info-list strong{
  display:block;
  font-size:.95rem;
  margin-bottom:6px;
}

.contact-info-list span{
  display:block;
  color:var(--text-sub);
  line-height:1.7;
}

.custom-input{
  border-radius:18px;
  border:1px solid #dbe4f3;
  background:#fbfdff;
  padding:16px 18px;
  box-shadow:none !important;
}

.custom-input:focus{
  border-color:#8fb0ff;
  box-shadow:0 0 0 .25rem rgba(91,132,255,.12) !important;
}

.dark-cta{
  background:linear-gradient(180deg, #0a1223 0%, #101b33 100%);
}

.cta-shell{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius:32px;
  padding:36px;
  box-shadow:var(--shadow-lg);
}

.footer-shell{
  background:#0a1223;
  color:#fff;
}

.footer-brand{
  font-size:1.5rem;
  font-weight:900;
  letter-spacing:-.02em;
}

.footer-text{
  color:rgba(255,255,255,.65);
  line-height:1.8;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:18px;
}

.footer-links a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:600;
}

.footer-links a:hover{
  color:#fff;
}

@media (max-width: 991.98px){
  .hero-section{
    padding:130px 0 80px;
    min-height:auto;
  }

  .hero-panel{
    margin-top:12px;
  }

  .section-space{
    padding:90px 0;
  }

  .sub-hero{
    padding:150px 0 80px;
  }

  .footer-links{
    justify-content:flex-start;
  }
}

@media (max-width: 767.98px){
  .brand-text small{
    display:none;
  }

  .hero-title{
    line-height:1.14;
  }

  .hero-desc,
  .section-lead,
  .section-text,
  .sub-hero-desc{
    font-size:.98rem;
  }

  .hero-tags{
    gap:8px;
  }

  .hero-tags span{
    font-size:12px;
    padding:10px 12px;
  }

  .soft-panel,
  .service-card,
  .reason-card,
  .detail-card,
  .workflow-card,
  .pricing-card,
  .contact-form-card,
  .cta-shell{
    padding:24px;
    border-radius:22px;
  }

  .footer-links{
    gap:14px;
  }
}


/* =========================
   FLICK POPUP STYLE
========================= */

.modal-content.flick-alert{
background:linear-gradient(135deg,#020617,#0f172a);
color:white;

border-radius:20px;

/* 흰색 테두리 */
border:1px solid rgba(255,255,255,0.25);

/* 팝업 강조 */
box-shadow:
0 40px 120px rgba(0,0,0,0.9),
0 0 0 1px rgba(255,255,255,0.08);
}

/* 팝업 뒤 배경 강조 */

.modal-backdrop.show{
background:rgba(0,0,0,0.75);
backdrop-filter:blur(5px);
}

.popup-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:40px;
}

.popup-warning h3{
font-size:28px;
font-weight:800;
margin-bottom:20px;
color:white;
}

.popup-warning ul{
list-style:none;
padding:0;
margin:0;
}

.popup-warning li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,0.08);
font-size:16px;
}

.popup-warning li:before{
content:"⚠ ";
color:#facc15;
font-weight:bold;
}

.popup-solution{
font-size:17px;
line-height:1.7;
}

.popup-highlight{
font-size:20px;
font-weight:700;
margin-bottom:20px;
color:#facc15;
}

/* footer 정렬 */

.popup-footer{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:35px;
}

.popup-buttons{
display:flex;
gap:12px;
}

.popup-hide{
font-size:14px;
opacity:0.85;
}

.modal-xl{
max-width:900px;
}

.product-spotlight{
  background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.product-highlight-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
}

.product-highlight-head{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.mini-badge.dark{
  background:#101a32;
  color:#fff;
}

.product-check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.product-check-list li{
  position:relative;
  padding-left:30px;
  color:var(--text-main);
  font-weight:600;
}

.product-check-list li::before{
  content:"\f058";
  font-family:"Font Awesome 7 Free";
  font-weight:900;
  color:var(--blue);
  position:absolute;
  left:0;
  top:0;
}

.product-preview-shell{
  display:grid;
  gap:18px;
}

.preview-main{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:12px;
  box-shadow:var(--shadow);
}

.preview-main img{
  width:100%;
  border-radius:20px;
  display:block;
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.preview-thumb{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:8px;
  box-shadow:var(--shadow);
}

.preview-thumb img{
  width:100%;
  display:block;
  border-radius:16px;
}

.product-inline-card{
  padding:34px;
}

.product-inline-image{
  width:100%;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.product-hero-section{
  padding:150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(83,216,255,.18), transparent 30%),
    radial-gradient(circle at right center, rgba(91,132,255,.22), transparent 30%),
    linear-gradient(180deg,#081121 0%,#0d1830 55%,#162447 100%);
  color:#fff;
  position:relative;
}

.product-hero-panel{
  overflow:hidden;
}

.product-price-banner{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  padding:24px 26px;
  max-width:460px;
}

.price-label{
  color:rgba(255,255,255,.7);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.price-main{
  font-size:44px;
  font-weight:900;
  line-height:1;
  margin:8px 0 10px;
  color:#ffd44d;
}

.product-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.gallery-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(15,27,58,.16);
}

.gallery-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  background:#eef4ff;
}

.gallery-meta{
  padding:18px 20px 20px;
}

.gallery-meta strong{
  display:block;
  font-size:18px;
  color:var(--text-main);
  margin-bottom:6px;
}

.gallery-meta span{
  color:var(--text-sub);
  font-size:14px;
}

.timeline-mini{
  display:grid;
  gap:18px;
}

.timeline-item-mini{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px 20px;
}

.timeline-item-mini strong{
  display:block;
  margin-bottom:6px;
  font-size:17px;
}

.timeline-item-mini p{
  margin:0;
  color:var(--text-sub);
}

.product-pricing-card .price-value{
  min-height:56px;
}

@media (max-width: 991.98px){
  .product-gallery-grid{
    grid-template-columns:1fr;
  }

  .preview-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 575.98px){
  .product-highlight-card,
  .product-inline-card{
    padding:22px;
  }

  .preview-grid{
    grid-template-columns:1fr;
  }

  .price-main{
    font-size:36px;
  }
}
