html{
  scroll-behavior:smooth;
}
.apl-hero .apl-btns,
.apl-hero-note .apl-mini,
.apl-float-card{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease, box-shadow .24s ease;
}

.apl-hero .apl-btns.is-visible,
.apl-hero-note .apl-mini.is-visible,
.apl-float-card.is-visible{
  opacity:1;
  transform:translateY(0);
}


.apl-btns.is-visible,
.apl-hero-note .apl-mini.is-visible,
.apl-float-card.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-hero-note .apl-mini:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(17,24,39,.07);
}

.apl-float-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 48px rgba(17,24,39,.14);
}

@media (prefers-reduced-motion:reduce){
  .apl-btns,
  .apl-hero-note .apl-mini,
  .apl-float-card{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.apl-hero-note .apl-mini:last-child{
  background:#111827;
  color:#ffffff;
  box-shadow:0 18px 40px rgba(17,24,39,.16);
  transform:translateY(18px);
}

.apl-hero-note .apl-mini:last-child strong{
  color:#ffffff;
}

.apl-hero-note .apl-mini:last-child span{
  color:rgba(255,255,255,.78);
}

@media (max-width:768px){
  .apl-hero-note .apl-mini:last-child{
    transform:none;
  }
}


.apl-editorial{
  --bg:#ffffff;
  --bg-soft:#f7f8fa;
  --bg-soft-2:#fbfcfd;
  --line:#e5e7eb;
  --line-strong:#d7dbe0;
  --text:#111111;
  --muted:#667085;
  --muted-2:#8b95a1;
  --card:#ffffff;
  --dark:#111827;
  --shadow-xs:0 4px 14px rgba(17,24,39,.04);
  --shadow-sm:0 12px 32px rgba(17,24,39,.06);
  --shadow-md:0 20px 54px rgba(17,24,39,.08);
  --shadow-lg:0 30px 80px rgba(17,24,39,.14);
  background:var(--bg);
  color:var(--text);
  line-height:1.68;
  overflow:hidden;
  font-family:"Pretendard","Apple SD Gothic Neo","Noto Sans KR","Segoe UI",sans-serif;
}

.apl-editorial *{
  box-sizing:border-box;
}

.apl-editorial a{
  text-decoration:none;
  color:inherit;
}

.apl-shell{
  width:min(1320px, calc(100% - 40px));
  margin:0 auto;
}

.apl-sec{
  position:relative;
  padding:112px 0;
}

.apl-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#7b8490;
  margin-bottom:18px;
}

.apl-kicker:before{
  content:"";
  width:28px;
  height:1px;
  background:#cfd5dc;
  display:block;
}

.apl-title{
  margin:0;
  font-size:clamp(38px, 6vw, 84px);
  line-height:.98;
  font-weight:800;
  letter-spacing:-0.06em;
  word-break:keep-all;
}

.apl-sub{
  margin-top:20px;
  max-width:660px;
  font-size:18px;
  color:var(--muted);
  word-break:keep-all;
}

.apl-btns{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:32px;
  align-items:center;
}

.apl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:16px;
  font-weight:700;
  font-size:15px;
  letter-spacing:-.02em;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  border:1px solid transparent;
  white-space:nowrap;
  width:auto;
}

.apl-btn-primary,
.apl-btn-primary:link,
.apl-btn-primary:visited{
  background:#111827;
  color:#ffffff !important;
  border-color:#111827;
  box-shadow:0 10px 24px rgba(17,24,39,.12);
}

.apl-btn-primary:hover,
.apl-btn-primary:focus{
  background:#111827;
  color:#ffffff !important;
  border-color:#111827;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(17,24,39,.16);
}

.apl-btn-secondary,
.apl-btn-secondary:link,
.apl-btn-secondary:visited{
  background:#ffffff;
  color:#111827 !important;
  border-color:#d9dde3;
}

.apl-btn-secondary:hover,
.apl-btn-secondary:focus{
  background:#fbfcfd;
  color:#111827 !important;
  border-color:#bcc4ce;
  transform:translateY(-1px);
}

@media (max-width:768px){
  .apl-btns{
    gap:8px;
  }

  .apl-btn{
    width:auto;
  }
}



.apl-editorial .apl-btn,
.apl-editorial .apl-btn:link,
.apl-editorial .apl-btn:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:18px;
  font-weight:700;
  font-size:16px;
  line-height:1;
  letter-spacing:-.02em;
  white-space:nowrap;
  text-decoration:none !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
  border:1px solid transparent;
}

.apl-editorial .apl-btn-primary,
.apl-editorial .apl-btn-primary:link,
.apl-editorial .apl-btn-primary:visited{
  background:#111827;
  color:#ffffff !important;
  border-color:#111827;
  box-shadow:0 10px 24px rgba(17,24,39,.12);
}

.apl-editorial .apl-btn-primary:hover,
.apl-editorial .apl-btn-primary:focus{
  background:#111827;
  color:#ffffff !important;
  border-color:#111827;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(17,24,39,.16);
}

.apl-editorial .apl-btn-secondary,
.apl-editorial .apl-btn-secondary:link,
.apl-editorial .apl-btn-secondary:visited{
  background:#ffffff;
  color:#111827 !important;
  border-color:#d9dde3;
}

.apl-editorial .apl-btn-secondary:hover,
.apl-editorial .apl-btn-secondary:focus{
  background:#fbfcfd;
  color:#111827 !important;
  border-color:#bcc4ce;
  transform:translateY(-1px);
}


/* TOPBAR */
.apl-topbar{
  border-bottom:1px solid #edf0f3;
  background:#fbfcfd;
}

.apl-topbar-inner{
  width:min(1320px, calc(100% - 40px));
  margin:0 auto;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:13px;
  color:#6b7280;
}

.apl-contact,
.apl-social{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.apl-contact a{
  color:#4b5563;
  font-weight:500;
}

.apl-contact a:hover,
.apl-social a:hover{
  color:#111827;
}

.apl-social a{
  width:36px;
  height:36px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e5e7eb;
  background:#fff;
  color:#4b5563;
  transition:.22s ease;
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset;
}

.apl-social a:hover{
  transform:translateY(-1px);
  border-color:#cfd6de;
  box-shadow:0 10px 18px rgba(17,24,39,.08);
}

/* HERO */
.apl-hero{
  padding:28px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(17,24,39,.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.apl-hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:stretch;
}

.apl-hero-copy{
  padding:46px 10px 18px 0;
}

.apl-eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#4b5563;
  background:#fbfcfd;
  margin-bottom:24px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.apl-eyebrow .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#D90000;
  display:inline-block;
}

.apl-hero-note{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.apl-mini{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 18px 16px;
  background:#fff;
  box-shadow:var(--shadow-xs);
}

.apl-mini strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
  letter-spacing:-.02em;
}

.apl-mini span{
  display:block;
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}

.apl-hero-visual{
  position:relative;
  min-height:740px;
}

.apl-stack{
  position:relative;
  width:100%;
  height:100%;
}

.apl-photo-main{
  position:absolute;
  inset:0 0 92px 64px;
  border-radius:36px;
  background:
    linear-gradient(180deg, rgba(17,24,39,.04), rgba(17,24,39,.18)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  box-shadow:var(--shadow-lg);
}

.apl-photo-top{
  position:absolute;
  top:0;
  left:0;
  width:240px;
  height:292px;
  border-radius:30px;
  background:url('https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow:var(--shadow-md);
  border:7px solid #fff;
}

.apl-photo-bottom{
  position:absolute;
  right:0;
  bottom:0;
  width:262px;
  height:324px;
  border-radius:30px;
  background:url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow:var(--shadow-md);
  border:7px solid #fff;
}

.apl-float-card{
  position:absolute;
  left:28px;
  bottom:28px;
  width:min(370px, calc(100% - 56px));
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(14px);
  border:1px solid rgba(17,24,39,.08);
  border-radius:28px;
  padding:22px 22px 20px;
  box-shadow:0 18px 48px rgba(17,24,39,.12);
}

.apl-float-card strong{
  display:block;
  font-size:17px;
  letter-spacing:-.02em;
  margin-bottom:8px;
}

.apl-float-card p{
  margin:0;
  font-size:14px;
  color:#525866;
  line-height:1.6;
}

.apl-divider{
  height:1px;
  background:linear-gradient(90deg, transparent, #d9dde3, transparent);
  margin:18px 0 0;
}

/* POSITIONING */
.apl-problem{
  background:linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top:10px solid #eef1f4;
  border-bottom:20px solid #eef1f4;
}

.apl-problem-grid{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:36px;
  align-items:start;
}

.apl-statement{
  font-size:clamp(32px,4.5vw,58px);
  line-height:1.03;
  letter-spacing:-0.06em;
  font-weight:800;
  margin:0;
  word-break:keep-all;
}

.apl-text-lg{
  font-size:19px;
  color:#5b6470;
  margin-top:18px;
  max-width:540px;
}

.apl-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.apl-point{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 24px;
  box-shadow:var(--shadow-xs);
}

.apl-point .icon{
  width:auto;
  height:auto;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  background:#f3f4f6;
  color:#4b5563;
  margin-bottom:16px;
}

.apl-point h3{
  margin:0 0 8px;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.apl-point p{
  margin:0;
  color:#667085;
  font-size:15px;
}

/* LIFESTYLE */
.apl-lifestyle-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.apl-lifestyle-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.apl-lifestyle-photo{
  height:430px;
  background-size:cover;
  background-position:center;
}

.apl-lifestyle-body{
  padding:32px 30px 34px;
}

.apl-lifestyle-body h3{
  margin:0;
  font-size:36px;
  line-height:1.05;
  letter-spacing:-.055em;
}

.apl-lifestyle-body p{
  margin:14px 0 0;
  color:#667085;
  font-size:16px;
}

.apl-tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.apl-tag{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#f8fafc;
  color:#374151;
  font-size:13px;
  font-weight:700;
  border:1px solid #e5e7eb;
}

/* PROCESS */
.apl-process-head{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:end;
  margin-bottom:36px;
}

.apl-process-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.apl-step{
  border-top:12px solid #D90000;
  background:#fafbfc;
  border-radius:24px;
  padding:24px 20px 22px;
  min-height:224px;
  border-right:1px solid #eef1f4;
  border-left:1px solid #eef1f4;
  border-bottom:1px solid #eef1f4;
}

.apl-step .num{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  color:#7b8490;
  margin-bottom:16px;
}

.apl-step h4{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.04em;
}

.apl-step p{
  margin:0;
  color:#667085;
  font-size:14px;
}

/* QUOTE */
.apl-quote-wrap{
  padding-top:30px;
}

.apl-quote{
  position:relative;
  background:#111827;
  color:#fff;
  border-radius:36px;
  padding:54px 44px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.apl-quote:before{
  content:"“";
  position:absolute;
  top:-16px;
  left:20px;
  font-size:144px;
  line-height:1;
  color:rgba(255,255,255,.07);
  font-weight:800;
}

.apl-quote p{
  position:relative;
  margin:0;
  font-size:clamp(26px,3.2vw,46px);
  line-height:1.13;
  letter-spacing:-.055em;
  font-weight:700;
  max-width:940px;
  word-break:keep-all;
}

.apl-quote small{
  display:block;
  position:relative;
  margin-top:18px;
  color:rgba(255,255,255,.72);
  font-size:14px;
}

/* FINAL CTA */
.apl-final{
  padding:122px 0 132px;
}

.apl-final-box{
  position:relative;
  border-radius:40px;
  overflow:hidden;
  min-height:580px;
  background:url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  box-shadow:var(--shadow-lg);
}

.apl-final-box:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.16) 100%);
}

.apl-final-inner{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:720px;
  padding:76px 56px;
}

.apl-final h2{
  margin:0;
  font-size:clamp(40px,5.8vw,82px);
  line-height:.95;
  letter-spacing:-.07em;
  font-weight:800;
  word-break:keep-all;
}

.apl-final p{
  margin-top:20px;
  max-width:580px;
  color:rgba(255,255,255,.84);
  font-size:18px;
}

.apl-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 18px;
  margin-top:28px;
}

.apl-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:15px;
  color:rgba(255,255,255,.94);
}

.apl-check b{
  display:inline-block;
  margin-top:1px;
}

.apl-final-note{
  margin-top:16px;
  font-size:14px;
  color:rgba(255,255,255,.74);
}

.apl-final-note a{
  color:#fff;
  text-decoration:underline;
}

@media (max-width:1100px){
  .apl-hero-grid,
  .apl-problem-grid,
  .apl-process-head,
  .apl-lifestyle-grid,
  .apl-process-list{
    grid-template-columns:1fr;
  }

  .apl-hero-copy{
    padding-right:0;
  }

  .apl-hero-visual{
    min-height:620px;
  }

  .apl-points{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:768px){
  .apl-sec{
    padding:84px 0;
  }

  .apl-shell,
  .apl-topbar-inner{
    width:min(1320px, calc(100% - 24px));
  }

  .apl-topbar-inner{
    min-height:auto;
    padding:10px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .apl-hero{
    padding-top:12px;
  }

  .apl-hero-note,
  .apl-points,
  .apl-checks{
    grid-template-columns:1fr;
  }

  .apl-title{
    font-size:clamp(38px, 12vw, 62px);
  }

  .apl-sub{
    font-size:16px;
  }

  .apl-hero-visual{
    min-height:520px;
  }

  .apl-photo-main{
    inset:36px 0 90px 28px;
    border-radius:26px;
  }

  .apl-photo-top{
    width:150px;
    height:180px;
    border-radius:20px;
  }

  .apl-photo-bottom{
    width:170px;
    height:200px;
    border-radius:20px;
  }

  .apl-float-card{
    left:14px;
    right:14px;
    width:auto;
    bottom:14px;
    border-radius:20px;
  }

  .apl-lifestyle-photo{
    height:300px;
  }

  .apl-lifestyle-body h3{
    font-size:30px;
  }

  .apl-quote{
    padding:38px 24px;
    border-radius:24px;
  }

  .apl-final-inner{
    padding:44px 24px;
  }

  .apl-final-box{
    min-height:520px;
    border-radius:28px;
  }

  .apl-btn{
    width:100%;
    min-height:52px;
  }
}

.apl-brokerage{
  padding:40px 0 80px;
  background:#ffffff;
}

.apl-brokerage-box{
  border-top:1px solid #e5e7eb;
  padding-top:24px;
  color:#667085;
}

.apl-brokerage-name{
  margin:0 0 12px;
  font-size:15px;
  font-weight:700;
  line-height:1.6;
  color:#111827;
}

.apl-brokerage-text{
  margin:0;
  font-size:14px;
  line-height:1.8;
}

.apl-brokerage-text a{
  color:#667085;
  text-decoration:none;
}

.apl-brokerage-text a:hover{
  color:#111827;
}

.apl-brokerage-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:0px;
}

.apl-brokerage-links a{
  font-size:13px;
  color:#111827;
}

.apl-brokerage-links a:hover{
  color:#4b5563;
}




@media (max-width:768px){
  .apl-brokerage{
    padding:28px 0 56px;
  }

  .apl-brokerage-links{
    gap:12px;
    flex-direction:column;
  }
}


.apl-policy-links{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:0px;
}

.apl-policy-links a{
  font-size:12px;
  color:#111827;
  text-underline-offset:3px;
}

.apl-policy-links a:hover{
  color:#4b5563;
}




@media (max-width:768px){
  .apl-policy{
    padding:28px 0 56px;
  }

  .apl-brokerage-links{
    gap:12px;
    flex-direction:column;
  }
}




.apl-check-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px 28px;
}

.apl-check-option{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:15px;
  line-height:1.5;
  color:#374151;
}

.apl-check-option input{
  margin-top:3px;
  width:16px;
  height:16px;
  flex-shrink:0;
}

.apl-form-note-box{
  margin-top:18px;
  padding:16px 18px;
  border:1px dashed #cfd8e3;
  border-radius:18px;
  background:#fbfcfd;
  font-size:14px;
  line-height:1.7;
  color:#667085;
}

.apl-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
  font-size:14px;
  line-height:1.6;
  color:#4b5563;
}

.apl-consent input{
  margin-top:3px;
  width:16px;
  height:16px;
  flex-shrink:0;
}

.apl-form-bottom-text{
  margin:18px 0 0;
  font-size:14px;
  line-height:1.7;
  color:#667085;
}

.apl-form-submit-row{
  align-items:flex-end;
}

@media (max-width:1100px){
  .apl-check-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .apl-check-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
}





.apl-form-success{
  margin:0 0 18px;
  padding:18px 20px;
  border-radius:22px;
  border:1px solid #dbe6d6;
  background:#f3faf1;
  box-shadow:0 10px 24px rgba(17,24,39,.04);
}

.apl-form-success strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
  color:#166534;
  letter-spacing:-.02em;
}

.apl-form-success p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#4b5563;
}

.apl-form-sec{
  background:#ffffff;
  padding:48px 0 112px;
  scroll-margin-top:100px;
}

.apl-form-wrap{
  border:1px solid #e5e7eb;
  border-radius:36px;
  background:#fbfcfd;
  padding:38px;
  box-shadow:0 16px 40px rgba(17,24,39,.05);
}

.apl-form-intro{
  margin-bottom:26px;
}

.apl-form-badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid #e9d2a8;
  background:#fffaf2;
  color:#b7791f;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:14px;
}

.apl-form-title{
  font-size:clamp(34px,5vw,68px);
  line-height:.97;
  color:#111827;
}

.apl-form-sub{
  max-width:980px;
  font-size:16px;
  color:#667085;
}

.apl-form{
  display:grid;
  gap:22px;
}

.apl-form-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:30px;
  padding:24px 24px 22px;
}

.apl-form-card h3{
  margin:0 0 20px;
  font-size:18px;
  line-height:1.3;
  font-weight:800;
  letter-spacing:-.02em;
  color:#111827;
}

.apl-form-grid{
  display:grid;
  gap:16px 18px;
}

.apl-form-grid.two{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.apl-form-grid.three{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.apl-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.apl-field.full{
  grid-column:1 / -1;
}

.apl-field label{
  font-size:14px;
  font-weight:800;
  color:#111827;
  letter-spacing:-.01em;
}

.apl-field input,
.apl-field select,
.apl-field textarea{
  width:100%;
  border:1px solid #d8dee6;
  background:#ffffff;
  border-radius:18px;
  min-height:54px;
  padding:0 16px;
  font-size:15px;
  color:#111827;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.apl-field textarea{
  min-height:150px;
  padding:14px 16px;
  resize:vertical;
}

.apl-field input::placeholder,
.apl-field textarea::placeholder{
  color:#98a2b3;
}

.apl-field input:focus,
.apl-field select:focus,
.apl-field textarea:focus{
  border-color:#111827;
  box-shadow:0 0 0 4px rgba(17,24,39,.08);
}

.apl-form-submit-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  padding-top:6px;
}

.apl-form-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:18px;
  border:none;
  background:#111827;
  color:#ffffff;
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(17,24,39,.12);
  transition:transform .22s ease, box-shadow .22s ease;
}

.apl-form-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 32px rgba(17,24,39,.16);
}

.apl-form-footnote{
  margin:0;
  font-size:13px;
  color:#98a2b3;
}

@media (max-width:1100px){
  .apl-form-grid.two,
  .apl-form-grid.three{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .apl-form-wrap{
    padding:24px 18px;
    border-radius:26px;
  }

  .apl-form-card{
    padding:20px 18px 18px;
    border-radius:22px;
  }

  .apl-form-title{
    font-size:clamp(32px,10vw,52px);
  }

  .apl-form-sub{
    font-size:15px;
  }

  .apl-form-submit{
    width:100%;
  }
}





.apl-faq{
  background:#ffffff;
}

.apl-faq-head{
  margin-bottom:34px;
}

.apl-faq-list{
  display:grid;
  gap:16px;
}

.apl-faq-item{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  box-shadow:0 10px 28px rgba(17,24,39,.04);
  overflow:hidden;
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.apl-faq-item.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-faq-item:nth-child(2){transition-delay:.05s;}
.apl-faq-item:nth-child(3){transition-delay:.1s;}
.apl-faq-item:nth-child(4){transition-delay:.15s;}

.apl-faq-item:hover{
  box-shadow:0 16px 34px rgba(17,24,39,.07);
  border-color:#d9dde3;
}

.apl-faq-question{
  width:100%;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 26px 22px;
  text-align:left;
}

.apl-faq-question span{
  font-size:20px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:-.03em;
  color:#111827;
}

.apl-faq-question b{
  flex-shrink:0;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6;
  color:#6b7280;
  font-size:20px;
  font-weight:700;
  transition:transform .24s ease, background .24s ease, color .24s ease;
}

.apl-faq-item.is-open .apl-faq-question b{
  transform:rotate(45deg);
  background:#111827;
  color:#ffffff;
}

.apl-faq-answer-wrap{
  max-height:0;
  overflow:hidden;
  transition:max-height .42s ease;
}

.apl-faq-answer{
  padding:0 26px 24px;
  font-size:16px;
  line-height:1.75;
  color:#667085;
  max-width:980px;
}

@media (max-width:768px){
  .apl-faq-item{
    border-radius:22px;
  }

  .apl-faq-question{
    padding:20px 18px 18px;
  }

  .apl-faq-question span{
    font-size:18px;
  }

  .apl-faq-answer{
    padding:0 18px 20px;
    font-size:15px;
  }
}

@media (prefers-reduced-motion:reduce){
  .apl-faq-item,
  .apl-faq-question b,
  .apl-faq-answer-wrap{
    transition:none;
    transform:none;
    opacity:1;
  }
}



.apl-life-card{
  position:relative;
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 22px 54px rgba(17,24,39,.10);
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .8s ease,
    transform .8s ease,
    box-shadow .28s ease,
    background-size .5s ease;
}

.apl-life-card.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-life-card:nth-child(2){
  transition-delay:.1s;
}

.apl-life-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(17,24,39,.20) 0%, rgba(17,24,39,.78) 100%);
  transition:background .28s ease;
}

.apl-life-card:hover .apl-life-overlay{
  background:linear-gradient(180deg, rgba(17,24,39,.16) 0%, rgba(17,24,39,.74) 100%);
}

.apl-life-banner{
  margin-top:26px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:24px 26px;
  box-shadow:0 10px 28px rgba(17,24,39,.04);
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease, box-shadow .25s ease;
}

.apl-life-banner.is-visible{
  opacity:1;
  transform:translateY(0);
  transition-delay:.18s;
}

.apl-life-banner:hover{
  box-shadow:0 16px 36px rgba(17,24,39,.07);
}

@media (prefers-reduced-motion:reduce){
  .apl-life-card,
  .apl-life-banner{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.apl-life{
  background:#ffffff;
}

.apl-life-head{
  margin-bottom:36px;
}

.apl-life-title{
  font-size:clamp(34px,5.4vw,78px);
  line-height:.97;
  color:#111827;
  max-width:1200px;
}

.apl-life-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.apl-life-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:34px 32px 30px;
  color:#fff;
}

.apl-life-badge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.apl-life-content h3{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:800;
  color:#fff;
}

.apl-life-content p{
  margin:0;
  max-width:520px;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}

.apl-life-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.apl-life-tags span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#ffffff;
  font-size:13px;
  font-weight:700;
}

.apl-life-banner{
  margin-top:26px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:24px 26px;
  box-shadow:0 10px 28px rgba(17,24,39,.04);
}

.apl-life-banner strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  line-height:1.35;
  color:#111827;
  letter-spacing:-.02em;
}

.apl-life-banner p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#667085;
}

@media (max-width:1100px){
  .apl-life-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .apl-life-card{
    min-height:400px;
    border-radius:26px;
  }

  .apl-life-content{
    padding:24px 22px 22px;
  }

  .apl-life-content h3{
    font-size:32px;
  }

  .apl-life-banner{
    padding:20px 18px;
    border-radius:22px;
  }
}






.apl-area-tile{
  position:relative;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 40px rgba(17,24,39,.10);
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .28s ease;
}

.apl-area-tile.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-area-tile:nth-child(2){transition-delay:.06s;}
.apl-area-tile:nth-child(3){transition-delay:.12s;}
.apl-area-tile:nth-child(4){transition-delay:.18s;}

.apl-area-tile:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 50px rgba(17,24,39,.16);
}

.apl-area-tile:hover .apl-area-overlay{
  background:linear-gradient(180deg, rgba(17,24,39,.06) 0%, rgba(17,24,39,.70) 100%);
}

.apl-area-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(17,24,39,.08) 0%, rgba(17,24,39,.78) 100%);
  transition:background .28s ease;
}

@media (prefers-reduced-motion:reduce){
  .apl-area-tile{
    opacity:1;
    transform:none;
    transition:none;
  }
}






.apl-areas-v2{
  background:#f8fafc;
  border-top:1px solid #eef1f4;
  border-bottom:1px solid #eef1f4;
}

.apl-areas-v2-head{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:end;
  margin-bottom:34px;
}

.apl-areas-v2-title{
  font-size:clamp(34px,5vw,74px);
  line-height:.98;
  color:#111827;
}

.apl-areas-v2-copy{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  min-height:100%;
  padding-bottom:10px;
}

.apl-areas-v2-copy p{
  margin:0;
  max-width:620px;
  font-size:18px;
  line-height:1.7;
  color:#667085;
}

.apl-areas-v2-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.apl-area-tile{
  position:relative;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 40px rgba(17,24,39,.10);
}

.apl-area-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(17,24,39,.08) 0%, rgba(17,24,39,.78) 100%);
}

.apl-area-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:24px 22px 22px;
  color:#fff;
}

.apl-area-content h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
  color:#ffffff;
}

.apl-area-content p{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.88);
}

@media (max-width:1100px){
  .apl-areas-v2-head,
  .apl-areas-v2-grid{
    grid-template-columns:1fr;
  }

  .apl-areas-v2-copy{
    padding-bottom:0;
  }
}

@media (max-width:768px){
  .apl-area-tile{
    min-height:280px;
    border-radius:24px;
  }

  .apl-area-content{
    padding:20px 18px 18px;
  }

  .apl-area-content h3{
    font-size:22px;
  }
}


.apl-area-tile{
  position:relative;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 40px rgba(17,24,39,.10);
}

.apl-area-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(17,24,39,.06) 0%, rgba(17,24,39,.72) 100%);
}

.apl-area-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:24px 22px 22px;
  color:#fff;
}

.apl-area-content h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
}

.apl-area-content p{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.88);
}

@media (max-width:1100px){
  .apl-areas-v2-head,
  .apl-areas-v2-grid{
    grid-template-columns:1fr;
  }

  .apl-areas-v2-copy{
    padding-bottom:0;
  }
}

@media (max-width:768px){
  .apl-areas-v2{
    background:#f6f2eb;
  }

  .apl-area-tile{
    min-height:280px;
    border-radius:24px;
  }

  .apl-area-content{
    padding:20px 18px 18px;
  }

  .apl-area-content h3{
    font-size:22px;
  }
}





.apl-flow-item{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.apl-flow-item.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-flow-item:nth-child(2){transition-delay:.05s;}
.apl-flow-item:nth-child(3){transition-delay:.1s;}
.apl-flow-item:nth-child(4){transition-delay:.15s;}
.apl-flow-item:nth-child(5){transition-delay:.2s;}
.apl-flow-item:nth-child(6){transition-delay:.25s;}
.apl-flow-item:nth-child(7){transition-delay:.3s;}
.apl-flow-item:nth-child(8){transition-delay:.35s;}

.apl-flow-body{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.apl-flow-item:hover .apl-flow-body{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(17,24,39,.07);
  border-color:#d7dce3;
}

.apl-flow-num{
  transition:transform .28s ease, box-shadow .28s ease;
}

.apl-flow-item:hover .apl-flow-num{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(17,24,39,.18);
}

@media (prefers-reduced-motion:reduce){
  .apl-flow-item,
  .apl-flow-body,
  .apl-flow-num{
    transition:none;
    transform:none;
    opacity:1;
  }
}

.apl-process-flow{
  background:#fff;
}

.apl-process-flow-head{
  margin-bottom:40px;
}

.apl-flow-list{
  position:relative;
  display:grid;
  gap:18px;
}

.apl-flow-list:before{
  content:"";
  position:absolute;
  left:26px;
  top:0;
  bottom:0;
  width:1px;
  background:#d9dde3;
}

.apl-flow-item{
  position:relative;
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  align-items:start;
}

.apl-flow-num{
  position:relative;
  z-index:1;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  box-shadow:0 10px 24px rgba(17,24,39,.14);
}

.apl-flow-body{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:24px 24px 22px;
  box-shadow:0 10px 28px rgba(17,24,39,.04);
}

.apl-flow-body h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.12;
  letter-spacing:-.04em;
  font-weight:800;
  color:#111827;
}

.apl-flow-body p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#667085;
}

@media (max-width:768px){
  .apl-flow-list:before{
    left:21px;
  }

  .apl-flow-item{
    grid-template-columns:56px 1fr;
    gap:14px;
  }

  .apl-flow-num{
    width:42px;
    height:42px;
    font-size:12px;
  }

  .apl-flow-body{
    padding:20px 18px 18px;
    border-radius:20px;
  }

  .apl-flow-body h3{
    font-size:21px;
  }
}





.apl-area-highlight{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.55;
  font-weight:800;
  color:#111827;
  letter-spacing:-.02em;
}

.apl-area-desc{
  margin:0;
  font-size:15px;
  line-height:1.68;
  color:#667085;
}


.apl-areas{
  position:relative;
  background:
    linear-gradient(rgba(10,15,25,.72), rgba(10,15,25,.76)),
    url('https://images.unsplash.com/photo-1556020685-ae41abfc9365?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  overflow:hidden;
}


.apl-areas:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events:none;
}

.apl-areas .apl-shell{
  position:relative;
  z-index:1;
}

.apl-areas-head{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:end;
  margin-bottom:36px;
}

.apl-kicker-light{
  color:rgba(255,255,255,.72);
}

.apl-kicker-light:before{
  background:rgba(255,255,255,.32);
}

.apl-title-light{
  color:#ffffff;
}

.apl-sub-light{
  color:rgba(255,255,255,.78);
}

.apl-areas-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.apl-area-card{
  position:relative;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:28px;
  padding:28px 24px 24px;
  box-shadow:0 18px 36px rgba(0,0,0,.14);
}

.apl-area-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(17,24,39,.08);
  color:#6b7280;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:16px;
}

.apl-area-card h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:800;
  color:#111827;
}

.apl-area-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#667085;
}

@media (max-width:1100px){
  .apl-areas-head,
  .apl-areas-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .apl-area-card{
    padding:24px 20px 20px;
    border-radius:22px;
  }

  .apl-area-card h3{
    font-size:24px;
  }
}
.apl-process-list .apl-step{
  opacity:0;
  transform:translateY(24px);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.apl-process-list .apl-step.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-process-list .apl-step:nth-child(2){transition-delay:.06s;}
.apl-process-list .apl-step:nth-child(3){transition-delay:.12s;}
.apl-process-list .apl-step:nth-child(4){transition-delay:.18s;}

.apl-process-list .apl-step:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(17,24,39,.08);
  border-color:#d9dde3;
}

.apl-quote{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease, transform .8s ease, box-shadow .28s ease;
}

.apl-quote.is-visible{
  opacity:1;
  transform:translateY(0);
  transition-delay:.16s;
}

.apl-quote:hover{
  box-shadow:0 24px 48px rgba(17,24,39,.12);
}

@media (prefers-reduced-motion:reduce){
  .apl-process-list .apl-step,
  .apl-quote{
    opacity:1;
    transform:none;
    transition:none;
  }
}



.apl-split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.apl-panel{
  border-radius:34px;
  padding:40px 38px 36px;
  min-height:430px;
}

.apl-panel.dark{
  background:#111827;
  color:#fff;
  box-shadow:0 22px 54px rgba(17,24,39,.10);
}

.apl-panel.soft{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  box-shadow:0 12px 30px rgba(17,24,39,.04);
}

.apl-list-light,
.apl-list-dark{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}

.apl-list-light li,
.apl-list-dark li{
  position:relative;
  padding-left:18px;
  font-size:16px;
  line-height:1.65;
  letter-spacing:-.01em;
}

.apl-list-light li{
  color:rgba(255,255,255,.92);
}

.apl-list-dark li{
  color:#111827;
}

.apl-list-light li:before,
.apl-list-dark li:before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:6px;
  height:6px;
  border-radius:50%;
}

.apl-list-light li:before{
  background:rgba(255,255,255,.5);
}

.apl-list-dark li:before{
  background:#98a2b3;
}

.apl-split .apl-panel{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .8s ease,
    transform .8s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.apl-split .apl-panel.is-visible{
  opacity:1;
  transform:translateY(0);
}

.apl-split .apl-panel:nth-child(2){
  transition-delay:.1s;
}

.apl-split .apl-panel:hover{
  transform:translateY(-4px);
}

.apl-split .apl-panel.dark:hover{
  box-shadow:0 28px 56px rgba(17,24,39,.16);
}

.apl-split .apl-panel.soft:hover{
  box-shadow:0 18px 36px rgba(17,24,39,.08);
  border-color:#d9dde3;
}

@media (max-width:1100px){
  .apl-split{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .apl-panel{
    padding:28px 22px 24px;
    border-radius:24px;
    min-height:auto;
  }

  .apl-list-light li,
  .apl-list-dark li{
    font-size:15px;
  }
}

@media (prefers-reduced-motion:reduce){
  .apl-split .apl-panel{
    opacity:1;
    transform:none;
    transition:none;
  }
}


/* WordPress shell + APT82 additions */
:root{--apt82-accent:#D90000;--apt82-dark:#111827;--apt82-hero-size:84px;--apt82-hero-mobile:44px}
html{scroll-padding-top:86px}
body{margin:0;background:#fff;color:#111827;font-family:"Pretendard","Apple SD Gothic Neo","Noto Sans KR","Segoe UI",sans-serif}
body.admin-bar .apt82-site-header{top:32px}
.apt82-site-header{position:sticky;top:0;z-index:999;background:rgba(255,255,255,.94);backdrop-filter:blur(16px);border-bottom:1px solid #edf0f3}
.apt82-header-inner{width:min(1320px,calc(100% - 40px));min-height:76px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px}
.apt82-brand{display:flex;align-items:baseline;gap:10px;text-decoration:none;color:#111827;font-weight:900;letter-spacing:-.05em;font-size:29px}
.apt82-brand small{font-size:10px;letter-spacing:.15em;color:#7b8490;font-weight:800}
.apt82-nav{display:flex;align-items:center;gap:24px;font-size:14px;font-weight:700;color:#4b5563}
.apt82-nav a{text-decoration:none;color:inherit}.apt82-nav a:hover{color:#111827}
.apt82-nav .apt82-nav-cta{background:#111827;color:#fff!important;padding:12px 17px;border-radius:14px}
.apt82-menu-toggle{display:none;border:1px solid #e5e7eb;background:#fff;border-radius:12px;padding:9px 12px;font-weight:700}
.apl-editorial .apl-title{font-size:clamp(38px,6vw,var(--apt82-hero-size))}
.apl-eyebrow .dot{background:var(--apt82-accent)!important}
.apt82-video-stage{position:absolute;inset:0 0 92px 64px;border-radius:36px;overflow:hidden;background:#111827;box-shadow:var(--shadow-lg)}
.apt82-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .65s ease;pointer-events:none}
.apt82-hero-video.is-active{opacity:1}
.apt82-video-stage:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(17,24,39,.03),rgba(17,24,39,.19));pointer-events:none}
.apt82-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important}
.apt82-form-error{border-color:#fecaca!important;background:#fff7f7!important}
.apl-brokerage:after{content:"© 2026 APT82. All rights reserved.";display:block;width:min(1320px,calc(100% - 40px));margin:30px auto 0;color:#98a2b3;font-size:12px}
@media(max-width:900px){.apt82-nav{display:none}.apt82-nav.is-open{display:flex;position:absolute;left:20px;right:20px;top:70px;flex-direction:column;align-items:stretch;gap:0;background:#fff;border:1px solid #e5e7eb;border-radius:18px;box-shadow:0 18px 50px rgba(17,24,39,.12);padding:10px}.apt82-nav.is-open a{padding:13px 14px}.apt82-menu-toggle{display:block}.apt82-brand small{display:none}}
@media(max-width:782px){body.admin-bar .apt82-site-header{top:46px}}
@media(max-width:768px){.apt82-header-inner{width:min(100% - 28px,1320px);min-height:68px}.apt82-brand{font-size:25px}.apl-editorial .apl-title{font-size:clamp(36px,11vw,var(--apt82-hero-mobile))}.apt82-video-stage{inset:0;border-radius:28px}.apl-hero-visual{min-height:520px}}
