:root{
  --navy-950:#070a26;
  --navy-900:#0c1240;
  --navy-800:#141a5e;
  --navy-700:#1c249b;
  --navy-600:#2c3bd6;
  --gold:#f2c14e;
  --gold-light:#ffe08a;
  --white:#ffffff;
  --ink:#0d0f1e;
  --gray-100:#f6f7fb;
  --gray-300:#e2e4f1;
  --gray-500:#9297b8;
  --gray-700:#4c5075;
  --shadow-lg:0 30px 60px -20px rgba(9,13,60,.35);
  --radius:18px;
  --ease:cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{box-sizing:border-box}
body{
  margin:0;
  font-family:"Pretendard",-apple-system,BlinkMacSystemFont,"Malgun Gothic",sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,p{margin:0}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,select,textarea{font-family:inherit;font-size:1rem}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy-950);
  box-shadow:0 14px 30px -10px rgba(242,193,78,.6);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 34px -8px rgba(242,193,78,.7)}
.btn-outline{
  border:1.5px solid rgba(255,255,255,.5);
  color:var(--white);
}
.btn-outline:hover{background:rgba(255,255,255,.12);transform:translateY(-2px)}
.btn-ghost{
  border:1.5px solid var(--navy-800);
  color:var(--navy-800);
  padding:11px 22px;
  font-size:.88rem;
}
.btn-ghost:hover{background:var(--navy-800);color:var(--white)}
.btn-kakao{
  background:#FEE500;
  color:#191600;
  box-shadow:0 14px 30px -12px rgba(254,229,0,.7);
}
.btn-kakao:hover{transform:translateY(-2px)}
.btn-outline-navy{
  border:1.5px solid var(--navy-700);
  color:var(--navy-800);
  width:100%;
}
.btn-outline-navy:hover{background:var(--navy-800);color:var(--white);transform:translateY(-2px)}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:transparent;
  transition:background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding:22px 0;
}
.site-header.scrolled{
  background:rgba(7,10,38,.85);
  backdrop-filter:blur(10px);
  padding:14px 0;
  box-shadow:0 10px 30px -20px rgba(0,0,0,.5);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  font-family:"Pretendard";
  font-weight:800;
  font-size:1.3rem;
  letter-spacing:-.02em;
  color:var(--white);
}
.logo-dot{color:var(--gold)}
.nav{
  display:flex;
  gap:34px;
  flex:1;
  justify-content:center;
}
.nav a{
  color:rgba(255,255,255,.85);
  font-size:.95rem;
  font-weight:600;
  position:relative;
  padding:4px 0;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:0;height:2px;
  background:var(--gold);
  transition:width .25s var(--ease);
}
.nav a:hover::after{width:100%}
.header-cta{
  color:var(--white);
  border-color:rgba(255,255,255,.5);
}
.header-cta:hover{background:rgba(255,255,255,.14)}
.nav-toggle{display:none;flex-direction:column;gap:5px;padding:8px}
.nav-toggle span{width:24px;height:2px;background:var(--white);border-radius:2px}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-950);
  color:var(--white);
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 80% 15%, rgba(44,59,214,.55), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(242,193,78,.18), transparent 45%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 55%, #04051a 100%);
}
.hero-bg::after{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse at 60% 40%, black 10%, transparent 70%);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding-top:120px;
  padding-bottom:100px;
}
.eyebrow{
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.22em;
  color:var(--gold);
  margin-bottom:22px;
}
.hero-title{
  font-size:clamp(2rem, 4.6vw, 3.7rem);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.28;
  margin-bottom:32px;
}
.hero-title span{display:block}
.hero-sub{
  font-size:clamp(1rem,1.6vw,1.2rem);
  color:rgba(255,255,255,.72);
  max-width:560px;
  margin-bottom:40px;
}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap}
.scroll-cue{
  position:absolute;
  left:50%;bottom:34px;
  transform:translateX(-50%);
  width:26px;height:42px;
  border:2px solid rgba(255,255,255,.35);
  border-radius:20px;
  z-index:2;
}
.scroll-cue span{
  position:absolute;
  top:8px;left:50%;
  width:4px;height:8px;
  background:var(--gold);
  border-radius:3px;
  transform:translateX(-50%);
  animation:scrollcue 1.8s infinite;
}
@keyframes scrollcue{
  0%{opacity:1;top:8px}
  70%{opacity:0;top:22px}
  100%{opacity:0;top:22px}
}

/* ---------- Section common ---------- */
section{padding:120px 0}
.section-kicker{
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.2em;
  color:var(--navy-600);
  margin-bottom:16px;
}
.section-kicker.light{color:var(--gold)}
.section-title{
  font-size:clamp(1.7rem,3.4vw,2.6rem);
  font-weight:800;
  letter-spacing:-.02em;
  line-height:1.35;
  color:var(--navy-950);
  margin-bottom:20px;
}
.section-title.light{color:var(--white)}
.text-accent{color:var(--gold)}
.section-sub{
  font-size:1.05rem;
  color:var(--gray-700);
  max-width:600px;
  margin-bottom:56px;
}

/* ---------- Core / Problem shared ---------- */
.story-note{
  background:var(--navy-950);
  color:rgba(255,255,255,.85);
  border-radius:var(--radius);
  padding:44px 38px;
  box-shadow:var(--shadow-lg);
  margin-top:48px;
}
.story-note p{margin-bottom:18px;font-size:.98rem;line-height:1.75}
.story-note p:last-child{margin-bottom:0}
.story-note strong{color:var(--gold)}

/* ---------- Core ---------- */
.core{background:var(--white)}
.pillar-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
}
.pillar-card{
  background:var(--gray-100);
  border-radius:var(--radius);
  padding:32px 28px;
}
.pillar-tag{
  display:inline-block;
  font-size:.85rem;
  font-weight:800;
  color:var(--navy-700);
  background:rgba(44,59,214,.1);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
.pillar-card p{font-size:.94rem;color:var(--gray-700);line-height:1.7}
.core-banner{
  margin-top:40px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.core-banner-top{
  background:linear-gradient(120deg,var(--navy-600),#57c7f2);
  color:var(--white);
  font-weight:700;
  font-size:.95rem;
  padding:16px 28px;
}
.core-banner-main{
  background:var(--navy-950);
  color:var(--white);
  font-size:1.4rem;
  font-weight:800;
  padding:30px 28px;
}
.core-banner-main strong{color:var(--gold)}

/* ---------- Problem ---------- */
.problem{background:var(--gray-100)}
.problem-list{margin-top:48px;display:flex;flex-direction:column;gap:16px}
.problem-row{
  display:grid;
  grid-template-columns:140px 1fr 1.3fr;
  gap:28px;
  background:var(--white);
  border-radius:14px;
  padding:26px 28px;
  align-items:center;
  box-shadow:0 16px 32px -26px rgba(9,13,60,.3);
}
.problem-label{
  font-weight:800;
  font-size:1.02rem;
  color:var(--navy-950);
}
.problem-pain{
  background:rgba(225,75,75,.06);
  border-left:3px solid #e14b4b;
  border-radius:0 10px 10px 0;
  padding:14px 18px;
}
.problem-pain p{
  position:relative;
  font-size:.86rem;
  color:#b3454a;
  padding-left:20px;
  margin-bottom:8px;
}
.problem-pain p:last-child{margin-bottom:0}
.problem-pain p::before{
  content:"✕";
  position:absolute;
  left:0;top:1px;
  font-size:.72rem;
  font-weight:800;
  color:#e14b4b;
}
.problem-solve{
  background:rgba(242,193,78,.1);
  border-left:3px solid var(--gold);
  border-radius:0 10px 10px 0;
  padding:16px 20px;
}
.problem-solve strong{
  position:relative;
  display:block;
  font-size:1rem;
  color:var(--navy-950);
  margin-bottom:6px;
  padding-left:24px;
}
.problem-solve strong::before{
  content:"✓";
  position:absolute;
  left:0;top:1px;
  color:var(--navy-700);
  font-weight:800;
}
.problem-solve p{font-size:.9rem;color:var(--gray-700);line-height:1.6;padding-left:24px}

/* ---------- Why Us ---------- */
.whyus{background:var(--white)}
.whyus-scroll{overflow-x:auto;margin-top:48px}
.whyus-table{min-width:760px}
.whyus-row{
  display:grid;
  grid-template-columns:120px repeat(3,1fr);
}
.whyus-cell{
  padding:22px 20px;
  font-size:.9rem;
  color:var(--gray-700);
  border-bottom:1px solid var(--gray-300);
}
.whyus-cell span{display:block;font-size:.7rem;letter-spacing:.1em;color:var(--gray-500);margin-top:4px}
.whyus-head .whyus-cell{
  font-weight:800;
  font-size:1rem;
  color:var(--navy-950);
  border-bottom:none;
  padding-bottom:14px;
}
.whyus-label{font-weight:700;color:var(--navy-950)}
.whyus-highlight{
  background:var(--navy-600);
  color:var(--white);
  font-weight:700;
}
.whyus-head .whyus-highlight{border-radius:12px 12px 0 0;color:var(--white)}
.whyus-row:last-child .whyus-highlight{border-radius:0 0 12px 12px}

/* ---------- Case Study ---------- */
.case{background:var(--gray-100)}
.case-inner{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:56px;
  align-items:center;
}
.case-study-label{font-weight:800;color:var(--navy-700);font-size:.92rem;margin-bottom:4px}
.case-study-sub{color:var(--gray-500);font-size:.88rem;margin-bottom:24px}
.case-ba{
  display:flex;
  gap:14px;
  margin-bottom:16px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:0 10px 10px 0;
}
.case-ba-before{background:rgba(225,75,75,.08);border-left:3px solid #e14b4b}
.case-ba-after{background:rgba(44,59,214,.08);border-left:3px solid var(--navy-600)}
.case-badge{
  flex-shrink:0;
  font-size:.78rem;
  font-weight:800;
  padding:5px 14px;
  border-radius:999px;
  color:var(--white);
  margin-top:2px;
}
.case-before{background:#e14b4b}
.case-after{background:var(--navy-600)}
.case-ba p{font-size:.92rem;color:var(--gray-700);line-height:1.7}
.case-quote{
  margin-top:24px;
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-950);
}
.case-stats{
  background:var(--navy-950);
  border-radius:var(--radius);
  padding:40px 36px;
  box-shadow:var(--shadow-lg);
  display:flex;
  flex-direction:column;
  gap:26px;
}
.case-stat{display:flex;flex-direction:column;gap:4px}
.case-stat-num{font-size:2.4rem;font-weight:800;color:var(--gold);line-height:1}
.case-stat-label{font-size:.85rem;color:rgba(255,255,255,.6)}

/* ---------- Pricing ---------- */
.pricing{background:var(--white)}
.pricing-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:16px;
}
.pricing-card{
  border:1.5px solid var(--gray-300);
  border-radius:var(--radius);
  padding:34px 28px;
  display:flex;
  flex-direction:column;
}
.pricing-card.is-featured{
  border-color:var(--navy-700);
  background:linear-gradient(170deg,var(--navy-900),var(--navy-950));
  color:var(--white);
  box-shadow:var(--shadow-lg);
}
.pricing-badge{
  align-self:flex-start;
  background:var(--gold);
  color:var(--navy-950);
  font-size:.75rem;
  font-weight:800;
  padding:5px 12px;
  border-radius:999px;
  margin-bottom:14px;
}
.pricing-card h3{font-size:1.2rem;font-weight:800;margin-bottom:8px}
.pricing-desc{font-size:.85rem;color:var(--gray-500);margin-bottom:18px}
.is-featured .pricing-desc{color:rgba(255,255,255,.6)}
.pricing-price{font-size:2.2rem;font-weight:800;color:var(--navy-950)}
.is-featured .pricing-price{color:var(--white)}
.pricing-price span{font-size:1rem;font-weight:700;margin-left:4px}
.pricing-vat{font-size:.8rem;color:var(--gray-500);margin-bottom:24px}
.is-featured .pricing-vat{color:rgba(255,255,255,.55)}
.pricing-card ul{flex:1;margin-bottom:24px}
.pricing-card li{
  font-size:.85rem;
  padding:9px 0 9px 20px;
  position:relative;
  border-top:1px solid var(--gray-300);
  color:var(--gray-700);
}
.is-featured li{border-top:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.8)}
.pricing-card li::before{
  content:"";
  position:absolute;
  left:2px;top:17px;
  width:9px;height:1.5px;
  background:var(--gold);
}
.pricing-card li.pricing-addon{color:var(--navy-600);font-weight:600}
.is-featured li.pricing-addon{color:var(--gold-light)}
.pricing-notes{
  margin-top:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.pricing-note{
  background:rgba(242,193,78,.14);
  border-left:4px solid var(--gold);
  border-radius:0 14px 14px 0;
  padding:22px 26px;
  font-size:1.02rem;
  color:var(--navy-950);
  line-height:1.7;
}
.pricing-note strong{color:var(--navy-700);font-size:1.15rem;font-weight:800}
.pricing-footnote{margin-top:20px;font-size:.78rem;color:var(--gray-500)}

/* ---------- Process ---------- */
.process{background:var(--gray-100)}
.process-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:56px;
  position:relative;
}
.process-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}
.process-circle{
  width:110px;height:110px;
  border-radius:50%;
  border:2px solid var(--navy-600);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-950);
  background:var(--white);
  line-height:1.3;
}
.process-tag{
  background:var(--navy-950);
  color:var(--gold);
  font-size:.75rem;
  font-weight:800;
  padding:5px 14px;
  border-radius:999px;
}
.process-step p{font-size:.85rem;color:var(--gray-700);line-height:1.5}
.process-features{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.process-feature{
  background:var(--white);
  border-radius:14px;
  padding:26px;
  text-align:center;
  font-weight:700;
  color:var(--navy-950);
  box-shadow:0 16px 32px -26px rgba(9,13,60,.3);
}

/* ---------- Promise ---------- */
.promise{background:var(--white)}
.promise-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:48px;
}
.promise-card{
  background:var(--gray-100);
  border-radius:14px;
  padding:26px 28px;
}
.promise-card h3{font-size:1.05rem;font-weight:800;color:var(--navy-950);margin-bottom:8px}
.promise-card p{font-size:.9rem;color:var(--gray-700);line-height:1.6}

/* ---------- Channel Stats ---------- */
.channel-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:40px;
}
.channel-stat{
  background:var(--navy-950);
  border-radius:12px;
  padding:20px 22px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.channel-stat-name{font-weight:800;color:var(--white);font-size:.98rem}
.channel-stat-tag{font-size:.75rem;color:var(--gold);font-weight:700}
.channel-stat-num{font-size:.82rem;color:rgba(255,255,255,.6)}

/* ---------- Review ---------- */
.review{background:var(--gray-100)}
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
}
.review-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:0 16px 32px -26px rgba(9,13,60,.3);
  display:flex;
  flex-direction:column;
}
.review-quote-mark{
  font-size:2.4rem;
  font-weight:800;
  color:var(--gold);
  line-height:1;
  margin-bottom:8px;
  font-family:Georgia,serif;
}
.review-card p{font-size:.88rem;color:var(--gray-700);line-height:1.75;flex:1;margin-bottom:20px}
.review-author strong{display:block;font-size:.95rem;color:var(--navy-950)}
.review-author span{font-size:.8rem;color:var(--gray-500)}

/* ---------- Founder ---------- */
.founder{background:var(--white)}
.founder-inner{max-width:720px}
.founder-desc{font-size:1.05rem;color:var(--gray-700);margin-bottom:28px;max-width:520px}
.founder-points li{
  padding:14px 0 14px 30px;
  border-top:1px solid var(--gray-300);
  position:relative;
  font-weight:600;
  color:var(--navy-950);
}
.founder-points li:last-child{border-bottom:1px solid var(--gray-300)}
.founder-points li::before{
  content:"";
  position:absolute;
  left:0;top:22px;
  width:14px;height:2px;
  background:var(--gold);
}

/* ---------- Services ---------- */
.services{background:var(--gray-100)}
.service-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:38px 32px;
  box-shadow:0 20px 40px -24px rgba(9,13,60,.25);
  display:flex;
  flex-direction:column;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.service-card.is-featured{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
  color:var(--white);
}
.service-tag{
  display:inline-block;
  align-self:flex-start;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.14em;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(44,59,214,.1);
  color:var(--navy-700);
  margin-bottom:20px;
}
.is-featured .service-tag{background:rgba(242,193,78,.15);color:var(--gold)}
.service-card h3{font-size:1.35rem;font-weight:800;margin-bottom:14px}
.service-card p{font-size:.95rem;color:var(--gray-700);margin-bottom:22px}
.is-featured p{color:rgba(255,255,255,.72)}
.service-card ul{margin-bottom:28px;flex:1}
.service-card li{
  font-size:.9rem;
  padding:10px 0 10px 22px;
  position:relative;
  border-top:1px solid var(--gray-300);
  color:var(--gray-700);
}
.is-featured li{border-top:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.78)}
.service-card li::before{
  content:"";
  position:absolute;
  left:2px;top:19px;
  width:10px;height:1.5px;
  background:var(--gold);
}
.service-link{
  font-weight:700;
  color:var(--navy-700);
  font-size:.92rem;
}
.is-featured .service-link{color:var(--gold)}

/* ---------- Portfolio ---------- */
.portfolio{background:var(--white)}
.portfolio-group{margin-bottom:56px}
.portfolio-group:last-child{margin-bottom:0}
.portfolio-group-title{
  font-size:1.05rem;
  font-weight:800;
  color:var(--navy-950);
  margin-bottom:24px;
  padding-left:16px;
  border-left:4px solid var(--gold);
}
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.portfolio-item{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:16/9;
  background:var(--navy-950);
  box-shadow:0 16px 32px -20px rgba(9,13,60,.4);
  transition:transform .3s var(--ease);
}
.portfolio-item:hover{transform:translateY(-4px)}
.portfolio-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s var(--ease), opacity .3s;
  opacity:.88;
}
.portfolio-item:hover img{transform:scale(1.06);opacity:1}
.portfolio-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(6,8,32,.92) 0%, rgba(6,8,32,.15) 55%, transparent 75%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  color:var(--white);
}
.portfolio-channel{
  font-size:.72rem;
  font-weight:700;
  color:var(--gold);
  letter-spacing:.04em;
  margin-bottom:6px;
}
.portfolio-title{
  font-size:.86rem;
  font-weight:700;
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.portfolio-play{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.portfolio-item:hover .portfolio-play{opacity:1;transform:translate(-50%,-50%) scale(1.06)}
.portfolio-play svg{width:18px;height:18px;fill:var(--white);margin-left:2px}

/* ---------- Apply ---------- */
.apply{
  background:linear-gradient(165deg, var(--navy-900), var(--navy-950) 60%, #04051a);
  color:var(--white);
}
.apply-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
}
.apply-desc{color:rgba(255,255,255,.72);font-size:1.02rem;margin-bottom:30px;max-width:480px}
.apply-list li{
  padding:14px 0 14px 28px;
  border-top:1px solid rgba(255,255,255,.14);
  position:relative;
  font-size:.96rem;
  color:rgba(255,255,255,.88);
}
.apply-list li:last-child{border-bottom:1px solid rgba(255,255,255,.14)}
.apply-list li::before{
  content:"";
  position:absolute;
  left:0;top:22px;
  width:14px;height:2px;
  background:var(--gold);
}
.apply-kakao{
  margin-top:38px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.14);
}
.apply-kakao p{margin-bottom:16px;color:rgba(255,255,255,.65);font-size:.92rem}

.apply-form{
  background:var(--white);
  color:var(--ink);
  border-radius:var(--radius);
  padding:40px;
  box-shadow:var(--shadow-lg);
}
.apply-form h3{font-size:1.3rem;font-weight:800;margin-bottom:26px}
.form-row{margin-bottom:18px}
.form-row label{
  display:block;
  font-size:.86rem;
  font-weight:700;
  margin-bottom:8px;
  color:var(--navy-950);
}
.form-row label span{color:var(--gold-light);filter:brightness(.6)}
.form-row input,.form-row select,.form-row textarea{
  width:100%;
  padding:13px 15px;
  border:1.5px solid var(--gray-300);
  border-radius:10px;
  background:var(--gray-100);
  transition:border-color .2s, background .2s;
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{
  outline:none;
  border-color:var(--navy-600);
  background:var(--white);
}
.form-row textarea{resize:vertical}
.form-submit{width:100%;margin-top:8px}
.form-note{
  margin-top:14px;
  font-size:.78rem;
  color:var(--gray-500);
  text-align:center;
}

/* ---------- Footer ---------- */
.site-footer{background:#04051a;color:rgba(255,255,255,.6);padding:60px 0 28px}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  justify-content:space-between;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand p{margin-top:10px;font-size:.86rem}
.footer-contact p{margin-bottom:8px;font-size:.9rem}
.footer-contact a:hover{color:var(--gold)}
.footer-links{display:flex;gap:24px;align-items:flex-start}
.footer-links a{font-size:.9rem}
.footer-links a:hover{color:var(--gold)}
.footer-bottom{padding-top:24px;font-size:.8rem}

/* ---------- Modal ---------- */
.modal{
  position:fixed;inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease);
}
.modal.is-open{opacity:1;pointer-events:auto}
.modal-backdrop{position:absolute;inset:0;background:rgba(4,5,26,.85)}
.modal-body{
  position:relative;
  width:min(920px,90vw);
  aspect-ratio:16/9;
  z-index:2;
  transform:scale(.96);
  transition:transform .25s var(--ease);
}
.modal.is-open .modal-body{transform:scale(1)}
.modal-video{width:100%;height:100%;border-radius:12px;overflow:hidden;background:#000}
.modal-video iframe{width:100%;height:100%;border:0}
.modal-close{
  position:absolute;
  top:-46px;right:0;
  color:var(--white);
  font-size:2rem;
  line-height:1;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
}

/* ---------- Reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{opacity:1;transform:translateY(0)}

.mobile-only{display:none}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .founder-inner,.apply-inner,.case-inner{grid-template-columns:1fr}
  .service-cards{grid-template-columns:repeat(2,1fr)}
  .portfolio-grid{grid-template-columns:repeat(3,1fr)}
  .pillar-grid{grid-template-columns:1fr}
  .pricing-cards{grid-template-columns:1fr}
  .pricing-notes{grid-template-columns:1fr}
  .process-timeline{grid-template-columns:repeat(2,1fr);row-gap:36px}
  .process-features{grid-template-columns:1fr}
  .channel-stats{grid-template-columns:repeat(2,1fr)}
  .review-grid{grid-template-columns:1fr}
  .problem-row{grid-template-columns:1fr;gap:12px}
  .case-stats{flex-direction:row;flex-wrap:wrap}
}
@media (max-width:860px){
  .nav,.header-cta{display:none}
  .nav-toggle{display:flex}
  .nav.is-open{
    display:flex;
    position:absolute;
    top:100%;left:0;right:0;
    flex-direction:column;
    background:#070a26;
    padding:20px 24px 28px;
    gap:6px;
    box-shadow:0 20px 40px -10px rgba(0,0,0,.5);
  }
  .nav.is-open a{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08)}
  section{padding:80px 0}
  .service-cards{grid-template-columns:1fr}
  .portfolio-grid{grid-template-columns:repeat(2,1fr)}
  .mobile-only{display:inline}
  .promise-grid{grid-template-columns:1fr}
  .channel-stats{grid-template-columns:1fr}
  .whyus-row{grid-template-columns:100px repeat(3,220px)}
}
@media (max-width:520px){
  .hero-cta{flex-direction:column;align-items:stretch}
  .portfolio-grid{grid-template-columns:1fr 1fr;gap:12px}
  .apply-form{padding:28px 22px}
  .story-note{padding:30px 24px}
  .process-timeline{grid-template-columns:1fr}
  .case-stats{flex-direction:column}
}
