/* =====================================================
   Landing Corporate 2 — style.css
   Pretendard: 로컬 woff2 @font-face (PHP 환경)
   ===================================================== */

@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('../css/fonts/PretendardVariable.woff2') format('woff2-variations');
}

:root {
  --navy:       #0D1F44;
  --navy-dark:  #091529;
  --navy-light: #1e3a70;
  --gold:       #B8975A;
  --text-1:     #1a1a2e;
  --text-2:     #555f7a;
  --text-3:     #9099b0;
  --bg:         #ffffff;
  --bg-2:       #f7f8fc;
  --border:     #e2e6f0;
  --max:        1280px;
  --hero-radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
  color: var(--text-1);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
#header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
/* 헤더 위 / 스크롤 전: 흰 로고·링크 / 스크롤 후: 다크 */
.logo-wrap { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  display: flex; flex-direction: column; gap: 3px;
}
.logo-icon span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--navy); transition: background .3s;
}
.logo-icon span:nth-child(1) { width: 20px; }
.logo-icon span:nth-child(2) { width: 13px; }
.logo-icon span:nth-child(3) { width: 20px; }
#header.scrolled .logo-icon span { background: var(--navy); }
.logo-text {
  font-size: 20px; font-weight: 700; letter-spacing: .06em;
  color: var(--navy); transition: color .3s;
}
#header.scrolled .logo-text { color: var(--navy); }
.nav-list {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-list a {
  position: relative;
  font-size: 17px; color: #111; font-weight: 500;
  transition: color .2s; letter-spacing: .02em;
}
.nav-list a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  width: 0; height: 2px; background: var(--navy);
  transition: width .25s ease, left .25s ease;
}
.nav-list a:hover { color: var(--navy); }
.nav-list a:not(.nav-cta):hover::after { width: 100%; left: 0; }
#header.scrolled .nav-list a { color: #111; }
#header.scrolled .nav-list a:hover { color: var(--navy); }
.nav-cta {
  padding: 9px 22px; border-radius: 6px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: #fff !important;
  font-weight: 600; font-size: 13px !important; letter-spacing: .04em;
  transition: all .2s !important;
}
#header.scrolled .nav-cta {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.nav-cta:hover { background: var(--navy-light) !important; border-color: var(--navy-light) !important; }
#header.scrolled .nav-cta:hover { background: var(--navy-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); border-radius: 2px; transition: background .3s;
}
#header.scrolled .hamburger span { background: var(--navy); }

/* ─── HERO — 핵심: body 흰 배경, 이미지는 margin+radius 카드 ─── */
#hero {
  padding-top: 72px;
  background: var(--bg);
}
.hero-card-wrap {
  /* 좌우 margin, 상단 여백으로 카드처럼 보이게 */
  margin: 16px 32px 0;
  border-radius: var(--hero-radius);
  overflow: hidden;
  position: relative;
}
.hero-swiper { height: calc(100vh - 72px - 16px); min-height: 560px; }
.hero-slide { position: relative; height: 100%; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a2e;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }
.hero-dim {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,18,36,.62) 0%,
    rgba(10,18,36,.35) 50%,
    rgba(10,18,36,.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 0 48px;
}
.hero-title {
  font-size: clamp(30px, 4vw, 58px); font-weight: 800;
  color: #fff; line-height: 1.22;
  margin-bottom: 18px;
  word-break: keep-all;
  opacity: 0; transform: translateY(20px);
  transition: all .8s .2s;
}
.hero-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,.72); line-height: 1.7;
  max-width: 540px; margin-bottom: 36px;
  word-break: keep-all;
  opacity: 0; transform: translateY(16px);
  transition: all .8s .38s;
}
.hero-btn {
  /* frosted glass pill — 레퍼런스 그대로 */
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px; border-radius: 100px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff; font-size: 15px; font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s, border-color .25s, transform .2s;
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s .54s, transform .8s .54s, background .25s, border-color .25s;
}
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-sub { opacity: 1; transform: none; }
.swiper-slide-active .hero-btn { opacity: 1; transform: none; }
.hero-btn:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.75);
}

/* 페이지네이션 */
.hero-swiper .swiper-pagination { bottom: 28px; width: auto; left: 50%; transform: translateX(-50%); }
.hero-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.45); opacity: 1;
  transition: all .3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #fff; width: 24px; border-radius: 4px;
}

/* ─── SECTION COMMON ─────────────────── */
section { padding: 100px 0; }
.eyebrow {
  display: block; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-3);
  font-weight: 600; margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 800;
  line-height: 1.28; color: var(--text-1);
  margin-bottom: 16px; word-break: keep-all;
}
.sec-title.wh { color: #fff; }
.sec-desc {
  font-size: 15px; color: var(--text-2);
  line-height: 1.85; word-break: keep-all;
}
.sec-desc.wh { color: rgba(255,255,255,.6); }

/* fade animation */
.fu { opacity: 0; transform: translateY(26px); transition: opacity .6s, transform .6s; }
.fu.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}
.d4{transition-delay:.28s}.d5{transition-delay:.35s}.d6{transition-delay:.42s}

/* ─── SERVICES ─── 텍스트+아이콘 그리드, 테두리 라인 구분 */
#services { background: var(--bg); padding-top: 80px; }
.srv-header { text-align: center; margin-bottom: 56px; }
.srv-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.srv-item {
  padding: 40px 36px; position: relative;
  transition: background .25s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.srv-item:nth-child(3n) { border-right: none; }
.srv-item:nth-child(n+4) { border-bottom: none; }
.srv-item:hover { background: var(--bg-2); }
.srv-item::before {
  content:''; position: absolute; top:0; left:0; right:0; height:3px;
  background: var(--navy); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.srv-item:hover::before { transform: scaleX(1); }
.srv-num { font-size:11px; letter-spacing:.1em; color:var(--text-3); font-weight:600; margin-bottom:18px; }
.srv-icon {
  width:46px; height:46px; border-radius:10px;
  background: var(--bg-2); display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; transition: background .25s;
}
.srv-item:hover .srv-icon { background: #dde3f0; }
.srv-icon svg { width:20px; height:20px; color:var(--navy); }
.srv-item h3 { font-size:16px; font-weight:700; margin-bottom:8px; }
.srv-item p { font-size:13.5px; color:var(--text-2); line-height:1.75; word-break:keep-all; }

/* ─── ABOUT ─── 2열: 텍스트 좌 / 이미지 우 */
#about { background: var(--bg-2); }
.about-grid {
  display: grid; grid-template-columns:1fr 1fr;
  gap: 72px; align-items: center;
}
.about-left .eyebrow { color: var(--gold); }
.about-left .sec-desc { margin-top:18px; }
.check-list { list-style:none; margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.check-list li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--text-2); line-height:1.6; }
.ck {
  width:18px; height:18px; flex-shrink:0; border-radius:50%;
  background:var(--navy); display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.ck svg { width:9px; height:9px; color:#fff; }
.about-btns { display:flex; gap:12px; flex-wrap:wrap; margin-top:30px; }
.btn-navy {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:6px;
  background:var(--navy); color:#fff;
  font-size:14px; font-weight:600; letter-spacing:.02em;
  border:none; cursor:pointer; font-family:inherit;
  transition:background .2s, transform .2s;
}
.btn-navy:hover { background:var(--navy-light); transform:translateY(-1px); }
.btn-navy svg { width:14px; height:14px; }
.btn-line {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; border-radius:6px;
  border:1.5px solid var(--border); color:var(--text-2);
  font-size:14px; font-weight:500;
  transition:all .2s;
}
.btn-line:hover { border-color:var(--navy); color:var(--navy); }
.about-img-wrap { position:relative; }
.about-img-wrap img { width:100%; border-radius:12px; aspect-ratio:4/3; object-fit:cover; }
.about-badge {
  position:absolute; bottom:-18px; left:-18px;
  background:var(--navy); color:#fff;
  padding:20px 26px; border-radius:12px; text-align:center;
  box-shadow:0 10px 36px rgba(13,31,68,.3);
}
.about-badge .num { font-size:38px; font-weight:800; line-height:1; margin-bottom:4px; }
.about-badge .lbl { font-size:12px; opacity:.75; }

/* Team slider */
.team-wrap { margin-top:72px; position:relative; }
.team-watermark {
  position:absolute; top:50%; transform:translateY(-50%);
  left:0; right:0; text-align:center; pointer-events:none; user-select:none;
  font-size:clamp(40px,8vw,96px); font-weight:900; letter-spacing:.15em;
  color:rgba(13,31,68,.04); white-space:nowrap; z-index:0;
}
.team-swiper { padding:16px 0 64px; position:relative; z-index:1; }
.team-slide { transition: opacity .4s; }
.team-card { background:#fff; border-radius:10px; overflow:hidden; border:1px solid var(--border); }
.team-card-img { aspect-ratio:3/4; overflow:hidden; background:var(--bg-2); }
.team-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.team-card:hover .team-card-img img { transform:scale(1.04); }
.team-card-body { padding:20px 22px 22px; }
.team-role { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--navy); font-weight:600; margin-bottom:5px; }
.team-name { font-size:17px; font-weight:700; margin-bottom:6px; }
.team-desc { font-size:13px; color:var(--text-2); line-height:1.6; }
.team-nav { position:absolute; bottom:0; left:0; display:flex; gap:8px; z-index:2; }
.team-btn {
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--border);
  background:#fff; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s; color:var(--text-2);
}
.team-btn:hover { background:var(--navy); border-color:var(--navy); color:#fff; }
.team-btn svg { width:15px; height:15px; }

/* ─── STATS ─── 다크 풀배너 */
#stats { background:var(--navy-dark); padding:68px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { text-align:center; padding:20px; position:relative; }
.stat-item+.stat-item::before {
  content:''; position:absolute; left:0; top:10%; bottom:10%;
  width:1px; background:rgba(255,255,255,.1);
}
.stat-label-top { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:10px; }
.stat-num {
  font-size:clamp(34px,4vw,52px); font-weight:800; color:#fff;
  line-height:1; margin-bottom:8px; letter-spacing:-.02em;
}
.stat-num em { color:var(--gold); font-style:normal; }
.stat-label-bot { font-size:13px; color:rgba(255,255,255,.55); }

/* ─── PORTFOLIO ─── 다크 + 캡션 항상 노출 */
#portfolio { background:var(--navy-dark); padding:100px 0; }
.port-header { text-align:center; margin-bottom:44px; }
.port-tabs {
  display:flex; justify-content:center; gap:6px; flex-wrap:wrap; margin-top:26px;
}
.tab-btn {
  padding:7px 16px; border-radius:4px; border:1px solid rgba(255,255,255,.18);
  background:transparent; color:rgba(255,255,255,.55);
  font-size:13px; font-weight:500; font-family:inherit; cursor:pointer;
  transition:all .2s;
}
.tab-btn:hover { border-color:rgba(255,255,255,.5); color:rgba(255,255,255,.85); }
.tab-btn.active { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.45); color:#fff; }
.port-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px;
}
.port-card {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  border-radius:10px; overflow:hidden;
  transition:border-color .3s, transform .3s;
}
.port-card:hover { border-color:rgba(255,255,255,.25); transform:translateY(-4px); }
.port-img { aspect-ratio:16/10; overflow:hidden; background:rgba(255,255,255,.05); }
.port-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.port-card:hover .port-img img { transform:scale(1.05); }
.port-cap { padding:18px 20px 22px; }
.port-cat { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); font-weight:500; margin-bottom:5px; }
.port-title { font-size:15px; font-weight:700; color:#fff; margin-bottom:3px; }
.port-client { font-size:12px; color:rgba(255,255,255,.4); }

/* ─── FEATURES ─── */
#features { background:var(--bg); }
.feat-header { text-align:center; margin-bottom:56px; }
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feat-card {
  padding:34px 30px; border:1px solid var(--border); border-radius:10px;
  position:relative; overflow:hidden; transition:all .3s;
}
.feat-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--navy); transform:scaleX(0); transition:transform .3s;
}
.feat-card:hover { box-shadow:0 8px 28px rgba(13,31,68,.1); transform:translateY(-3px); border-color:transparent; }
.feat-card:hover::after { transform:scaleX(1); }
.feat-idx { font-size:11px; color:var(--navy); font-weight:700; opacity:.5; letter-spacing:.08em; margin-bottom:16px; }
.feat-card h3 { font-size:16px; font-weight:700; margin-bottom:9px; }
.feat-card p { font-size:13.5px; color:var(--text-2); line-height:1.75; word-break:keep-all; }

/* ─── STRIPE BANNER ─── */
#stripe { position:relative; padding:108px 0; background:var(--navy-dark); overflow:hidden; }
.stripe-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.stripe-dim {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(9,21,41,.92) 0%, rgba(13,31,68,.8) 100%);
}
.stripe-body { position:relative; z-index:2; text-align:center; }
.stripe-body .sec-desc { max-width:540px; margin:0 auto 38px; }
.stripe-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:6px;
  border:1.5px solid rgba(255,255,255,.35); color:#fff;
  font-size:14px; font-weight:500; transition:all .2s;
}
.btn-ghost:hover { border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.07); }

/* ─── FAQ ─── */
#faq { background:var(--bg-2); }
.faq-wrap { display:grid; grid-template-columns:360px 1fr; gap:80px; align-items:start; }
.faq-left { position:sticky; top:96px; }
.faq-left .sec-desc { margin-top:14px; margin-bottom:26px; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:21px 0; cursor:pointer; gap:20px;
}
.faq-q span { font-size:15px; font-weight:500; color:var(--text-1); line-height:1.5; word-break:keep-all; }
.faq-ico {
  width:26px; height:26px; border-radius:50%; flex-shrink:0;
  border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center;
  color:var(--text-3); transition:all .25s;
}
.faq-ico svg { width:11px; height:11px; transition:transform .25s; }
.faq-item.open .faq-ico { background:var(--navy); border-color:var(--navy); color:#fff; }
.faq-item.open .faq-ico svg { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-a { max-height:240px; }
.faq-a p { padding:0 0 21px; font-size:14px; color:var(--text-2); line-height:1.85; word-break:keep-all; }

/* ─── CONTACT ─── 좌: 정보 / 우: 폼 */
#contact { background:var(--bg); }
.contact-header { text-align:center; margin-bottom:56px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
.cinfo h3 {
  font-size:17px; font-weight:700; margin-bottom:24px;
  padding-bottom:14px; border-bottom:2px solid var(--navy);
}
.ci-row {
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 0; border-bottom:1px solid var(--border);
}
.ci-row:last-of-type { border-bottom:none; }
.ci-icon {
  width:38px; height:38px; border-radius:8px; background:var(--bg-2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.ci-icon svg { width:16px; height:16px; color:var(--navy); }
.ci-txt strong { display:block; font-size:12px; font-weight:600; color:var(--text-1); margin-bottom:2px; }
.ci-txt span { font-size:13.5px; color:var(--text-2); }
.c-hours {
  margin-top:22px; background:var(--bg-2); border-radius:10px; padding:20px 22px;
}
.c-hours h4 { font-size:13px; font-weight:700; margin-bottom:12px; }
.hr-row {
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:var(--text-2);
  padding:7px 0; border-bottom:1px solid var(--border);
}
.hr-row:last-child { border-bottom:none; padding-bottom:0; }
.hr-row span:last-child { font-weight:600; color:var(--text-1); }
.cform-box {
  background:var(--bg-2); border:1px solid var(--border);
  border-radius:12px; padding:36px;
}
.cform-box h3 {
  font-size:17px; font-weight:700; margin-bottom:24px;
  padding-bottom:14px; border-bottom:2px solid var(--navy);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { margin-bottom:12px; }
.form-group label { display:block; font-size:12px; font-weight:600; color:var(--text-3); margin-bottom:6px; letter-spacing:.03em; }
.form-group input,
.form-group textarea {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:6px;
  font-size:14px; font-family:inherit; color:var(--text-1);
  background:#fff; outline:none; transition:border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color:var(--navy); }
.form-group textarea { resize:vertical; min-height:108px; }
.form-submit {
  width:100%; padding:14px; background:var(--navy); color:#fff;
  border:none; border-radius:6px;
  font-size:15px; font-weight:700; font-family:inherit; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  letter-spacing:.02em; transition:background .2s; margin-top:4px;
}
.form-submit:hover { background:var(--navy-light); }
.form-submit svg { width:15px; height:15px; }

/* ─── FOOTER ─── */
#footer { background:var(--navy-dark); padding:60px 0 32px; }
.foot-top {
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr;
  gap:48px; padding-bottom:44px; margin-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.foot-brand p { font-size:13px; color:rgba(255,255,255,.4); line-height:1.8; margin-top:14px; }
.foot-biz { font-size:12px; color:rgba(255,255,255,.25); line-height:1.9; margin-top:16px; }
.foot-logo { display:flex; align-items:center; gap:8px; }
.foot-logo-icon { display:flex; flex-direction:column; gap:3px; }
.foot-logo-icon span { display:block; height:2px; border-radius:2px; background:#fff; }
.foot-logo-icon span:nth-child(1){width:20px}
.foot-logo-icon span:nth-child(2){width:13px}
.foot-logo-icon span:nth-child(3){width:20px}
.foot-logo-text { font-size:15px; font-weight:700; letter-spacing:.06em; color:#fff; }
.foot-col h4 {
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:16px;
}
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.foot-col ul a { font-size:13px; color:rgba(255,255,255,.35); transition:color .2s; }
.foot-col ul a:hover { color:rgba(255,255,255,.75); }
.foot-tel-label { font-size:11px; color:rgba(255,255,255,.28); letter-spacing:.06em; margin-bottom:4px; }
.foot-tel-num { font-size:22px; font-weight:800; color:rgba(255,255,255,.8); letter-spacing:-.01em; margin-bottom:2px; }
.foot-tel-sub { font-size:12px; color:rgba(255,255,255,.3); margin-bottom:16px; }
.foot-email { font-size:12.5px; color:rgba(255,255,255,.35); }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; font-size:12px; }
.foot-legal { display:flex; gap:18px; }
.foot-legal a { color:rgba(255,255,255,.3); font-size:12px; transition:color .2s; }
.foot-legal a:hover { color:rgba(255,255,255,.65); }

/* ─── FLOATING ─── */
.floating { position:fixed; right:22px; bottom:52px; z-index:999; display:flex; flex-direction:column; gap:8px; opacity:0; pointer-events:none; transition:opacity .3s; }
.floating.show { opacity:1; pointer-events:auto; }
.fl { width:46px; height:46px; border-radius:50%; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .2s; }
.fl:hover { transform:scale(1.1); }
.fl-call { background:var(--navy); box-shadow:0 4px 18px rgba(13,31,68,.4); }
.fl-top { background:rgba(255,255,255,.92); box-shadow:0 4px 14px rgba(0,0,0,.15); }

/* ─── MOBILE NAV ─── */
.mob-nav {
  display:none; position:fixed; top:72px; left:0; right:0;
  background:rgba(255,255,255,.98); backdrop-filter:blur(12px);
  padding:16px 28px; flex-direction:column; gap:0;
  z-index:999; border-top:1px solid var(--border);
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.mob-nav.open { display:flex; }
.mob-nav a {
  color:var(--text-2); padding:14px 0; font-size:15px;
  border-bottom:1px solid var(--border); transition:color .2s;
}
.mob-nav a:last-child { border-bottom:none; }
.mob-nav a:hover { color:var(--navy); }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .container{padding:0 28px;}
  .hero-card-wrap{margin:12px 20px 0;}
  .about-grid{grid-template-columns:1fr;gap:48px;}
  .about-img-wrap img{aspect-ratio:16/9;}
  .about-badge{bottom:-14px;left:14px;}
  .faq-wrap{grid-template-columns:1fr;gap:48px;}
  .faq-left{position:static;}
  .foot-top{grid-template-columns:1fr 1fr;}
  .port-grid{grid-template-columns:repeat(2,1fr);}
  .feat-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-item+.stat-item::before{display:none;}
  .srv-grid{grid-template-columns:repeat(2,1fr);}
  .srv-item:nth-child(2n){border-right:none;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  section{padding:72px 0;}
  .nav-list{display:none;}
  .hamburger{display:flex;}
  .hero-card-wrap{margin:10px 12px 0;border-radius:14px;}
  .foot-top{grid-template-columns:1fr;gap:28px;}
  .foot-bottom{flex-direction:column;gap:12px;text-align:center;}
  .port-grid{grid-template-columns:1fr;}
  .feat-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}
@media(max-width:480px){
  .container{padding:0 16px;}
  .srv-grid{grid-template-columns:1fr;}
  .hero-card-wrap{margin:8px 8px 0;border-radius:12px;}
}

/* ─── POPUP LAYER ─── */
.popup-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,.6);
  z-index:9999;
  display:none; align-items:center; justify-content:center;
  animation:popupFadeIn .3s ease;
}
.popup-overlay.active { display:flex; }
.popup-overlay.popup-closing { animation:popupFadeOut .3s ease forwards; }
@keyframes popupFadeIn { from{opacity:0} to{opacity:1} }
@keyframes popupFadeOut { from{opacity:1} to{opacity:0} }
.popup-content {
  position:relative; background:#fff; border-radius:16px;
  max-width:480px; width:90%; max-height:80vh; overflow:auto;
  box-shadow:0 12px 40px rgba(0,0,0,.15);
}
.popup-content img { width:100%; height:auto; display:block; border-radius:16px 16px 0 0; }
.popup-close {
  position:absolute; top:12px; right:12px;
  width:36px; height:36px; background:rgba(0,0,0,.5); color:#fff;
  border:none; border-radius:50%; font-size:1.25rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:1; transition:background .2s;
}
.popup-close:hover { background:rgba(0,0,0,.8); }
.popup-text { padding:32px 24px; font-size:1rem; line-height:1.8; color:var(--text-1); }
.popup-text a { color:var(--navy); }
.popup-hide-today {
  display:flex; align-items:center; gap:8px;
  padding:12px 24px; border-top:1px solid var(--border);
  font-size:.85rem; color:var(--text-2); cursor:pointer;
}
.popup-hide-today input { accent-color:var(--navy); }

/* ─── LEGAL MODAL ─── */
.modal-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,.6);
  z-index:10000;
  display:none; align-items:center; justify-content:center;
  animation:modalFadeIn .3s ease;
}
.modal-overlay.open { display:flex; }
@keyframes modalFadeIn { from{opacity:0} to{opacity:1} }
.modal-box {
  background:#fff; border-radius:16px;
  max-width:640px; width:92%; max-height:80vh;
  display:flex; flex-direction:column;
  box-shadow:0 12px 40px rgba(0,0,0,.15);
}
.modal-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 28px; border-bottom:1px solid var(--border); flex-shrink:0;
}
.modal-head h3 { font-size:1.2rem; font-weight:700; color:var(--text-1); }
.modal-close {
  width:36px; height:36px; border-radius:50%; border:none; background:none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--text-3); transition:background .3s, color .3s;
}
.modal-close svg { width:18px; height:18px; }
.modal-close:hover { background:var(--bg-2); color:var(--text-1); }
.modal-body {
  padding:28px; overflow-y:auto;
  font-size:.9rem; color:var(--text-2); line-height:1.9;
}
