@font-face {
  font-family: 'Pretendard';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
}

:root {
  --ink: #12191C;
  --ink-mid: #1E272B;
  --ink-soft: #55676D;
  --rust: #0E7C86;
  --rust-deep: #0B5F67;
  --rust-light: #14A3B0;
  --paper: #F1F3EF;
  --paper-mid: #E6E9E1;
  --paper-dark: #D7DBD0;
  --white: #FAFBF9;
  --border: #C6CCC3;

  --f-sans: 'Pretendard', 'Noto Sans KR', sans-serif;

  --fs-display: clamp(3.2rem, 8.5vw, 7.5rem);
  --fs-h1: clamp(2.4rem, 5.5vw, 4.6rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.05rem, 1.8vw, 1.3rem);
  --fs-body: clamp(0.9rem, 1.3vw, 1rem);
  --fs-small: 0.83rem;
  --fs-label: 0.75rem;

  --sp: clamp(64px, 8vw, 112px);
  --sp-sm: clamp(40px, 5vw, 72px);
  --max-w: 1200px;
  --col: clamp(16px, 4vw, 48px);

  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 480px) {
  :root {
    --fs-display: clamp(2.6rem, 13vw, 3.8rem);
    --fs-h1: clamp(2rem, 8vw, 2.7rem);
    --fs-h2: clamp(1.4rem, 5vw, 1.8rem);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}

body {
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--col); }

h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.04em; line-height: 1.15; }
h2 { font-size: var(--fs-h2); margin-bottom: 16px; }
h3 { font-size: var(--fs-h3); }
p { color: var(--ink-soft); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--rust); z-index: 9999; }

/* ---- Label overline ---- */
.label-tag {
  display: inline-block; font-size: var(--fs-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust);
  padding-left: 20px; position: relative;
}
.label-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 2px; background: var(--rust);
}
.label-tag--light { color: var(--paper-mid); }
.label-tag--light::before { background: var(--paper-mid); }

.section-head { max-width: 640px; margin-bottom: 40px; }

/* ---- Buttons (radius 0, no shadow) ---- */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--paper);
  padding: 14px 28px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.03em; transition: background var(--t); }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 0.85rem; font-weight: 500;
  border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color var(--t), border-color var(--t); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--paper); color: var(--paper);
  padding: 12px 24px; font-size: 0.88rem; font-weight: 600; transition: background var(--t), color var(--t); }
.btn-rust { display: inline-flex; align-items: center; gap: 8px; background: var(--rust); color: var(--paper);
  padding: 14px 28px; font-size: 0.9rem; font-weight: 700; transition: background var(--t); }
.btn-block { display: flex; width: 100%; justify-content: center; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--rust); }
  .btn-ghost:hover { color: var(--ink); border-color: var(--ink); }
  .btn-outline-dark:hover { background: var(--paper); color: var(--ink); }
  .btn-rust:hover { background: var(--rust-deep); }
  .nav-link:hover { color: var(--ink); }
  .service-item:hover { background: rgba(255,255,255,0.04); }
  .nseo-card:hover { background: var(--paper); }
  .nseo-card:hover .nseo-card-img img { transform: scale(1.04); }
  .case-card:hover { border-color: var(--ink); }
  .case-card:hover .case-img img { transform: scale(1.04); }
  .nseo-card-more:hover { background: var(--ink-mid); border-color: var(--rust); }
  .nseo-card-more:hover .nseo-card-more-icon { border-color: var(--rust); color: var(--rust); }
  .floating-consult:hover { background: var(--rust-deep); transform: translateY(-2px); }
  .faq-item summary:hover { color: var(--rust); }
}
.btn-primary:active, .btn-rust:active { transform: scale(.97); }

/* ---- Header ---- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--paper);
  border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; padding: 16px var(--col);
  max-width: calc(var(--max-w) + var(--col)*2); margin: 0 auto; gap: 40px; }
.site-logo { display: block; }
.logo-text { font-size: 1.05rem; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.logo-sub { font-size: 0.7rem; font-weight: 500; color: var(--ink-soft); }
.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.main-nav a.nav-link { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); padding: 8px 12px; transition: color var(--t); }
.main-nav .nav-cta { margin-left: 8px; background: var(--ink); color: var(--paper); padding: 10px 20px;
  font-weight: 700; font-size: 0.85rem; transition: background var(--t); }
.main-nav .nav-cta:hover { background: var(--rust); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; margin-left: 12px; }
.hamburger span { display: block; height: 2px; background: var(--ink); }
#mob-nav {
  display: flex; flex-direction: column; position: fixed; top: 0; right: -100%;
  width: min(280px, 85vw); height: 100dvh; background: var(--paper);
  padding: 88px 24px 32px; border-left: 1px solid var(--border);
  transition: right 0.35s cubic-bezier(0.22,1,0.36,1); z-index: 1002;
}
#mob-nav.open { right: 0; }
#mob-nav a { display: block; padding: 16px 0; font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--border); }

/* ---- Hero split (home) ---- */
.hero { min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 72px; background: var(--paper); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,6vw,72px) var(--col);
  border-right: 1px solid var(--border); }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--rust); }
.hero-eyebrow-text { font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); }
.hero h1 { font-size: var(--fs-display); line-height: 0.98; letter-spacing: -0.05em; margin-bottom: 24px; color: var(--ink); }
.hero-desc { font-size: 1rem; font-weight: 300; color: var(--ink-soft); line-height: 1.8; max-width: 420px; margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; gap: 28px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin-bottom: 4px; }
.hero-meta-val { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(241,243,239,0.15) 0%, transparent 30%); pointer-events: none; }

/* ---- Sub-hero (dark overlay) ---- */
.sub-hero { min-height: 54vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 48px;
  padding-top: 72px; overflow: hidden; background: var(--ink); }
.sub-hero-img { position: absolute; inset: 0; }
.sub-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.sub-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,25,28,0.95) 0%, rgba(18,25,28,0.55) 55%, rgba(18,25,28,0.25) 100%); }
.sub-hero-content { position: relative; z-index: 2; max-width: calc(var(--max-w) + var(--col)*2); margin: 0 auto; padding: 0 var(--col); width: 100%; }
.sub-hero h1 { color: var(--paper); font-size: var(--fs-h1); }
.sub-hero p { color: rgba(241,243,239,0.72); font-size: 1rem; margin-top: 12px; max-width: 520px; font-weight: 300; }
.sub-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---- Marquee strip ---- */
.service-strip { background: var(--ink); overflow: hidden; white-space: nowrap; }
.service-strip-inner { display: inline-flex; animation: marquee 24s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-item { display: inline-flex; align-items: center; gap: 14px; padding: 13px 28px; font-size: var(--fs-small);
  font-weight: 600; color: rgba(241,243,239,0.55); letter-spacing: 0.06em; border-right: 1px solid rgba(255,255,255,0.08); }
.strip-item-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rust); flex-shrink: 0; }

/* ---- Section rhythm ---- */
section.band { padding: var(--sp) 0; }
.band-alt { background: var(--paper-mid); border-top: 1px solid var(--border); }

/* ---- Border-grid cards (signature pattern) ---- */
.grid-b { display: grid; border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
.grid-b > * { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dp-g2 { grid-template-columns: 1fr 1fr; }
.dp-g3 { grid-template-columns: repeat(3,1fr); }
.dp-g4 { grid-template-columns: repeat(4,1fr); }
.dp-g5 { grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); }
@media (max-width: 1024px) { .dp-g3, .dp-g4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .dp-g2, .dp-g3, .dp-g4 { grid-template-columns: 1fr; } }

/* ---- Generic card / tag fallback ---- */
.card { background: var(--white); border: 1px solid var(--border); padding: 24px; transition: border-color var(--t), background var(--t); }
.card h3 { color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 0.85rem; }
a.card { display: block; }
.card-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: var(--paper-mid); color: var(--rust); font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; }
.tag-pill { display: inline-block; padding: 8px 16px; border: 1px solid var(--border); background: var(--white);
  color: var(--ink); font-size: 0.8rem; font-weight: 600; transition: border-color var(--t), color var(--t); }
@media (hover: hover) and (pointer: fine) {
  a.card:hover, .card:hover { border-color: var(--ink); }
  .tag-pill:hover { border-color: var(--rust); color: var(--rust); }
}

/* ---- Simple dark hero (contact / sitemap / admin — no bg image) ---- */
.simple-hero { background: var(--ink); padding: 128px 0 56px; }
.simple-hero h1 { color: var(--paper); font-size: var(--fs-h1); }
.simple-hero p { color: rgba(241,243,239,0.72); margin-top: 12px; max-width: 520px; font-weight: 300; }
.simple-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---- Pain / feature cards ---- */
.pain-card { background: var(--white); padding: 28px; }
.pain-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--rust); margin-bottom: 16px; display: block; }
.pain-card p { color: var(--ink); font-size: 0.9rem; }

/* ---- Services dark grid ---- */
.services-section { background: var(--ink); padding: var(--sp) 0; }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); border-left: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
.service-item { padding: 36px 26px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); transition: background var(--t); }
.service-item-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--rust); margin-bottom: 20px; display: block; }
.service-item h3 { font-size: 1rem; font-weight: 800; color: var(--paper); margin-bottom: 10px; }
.service-item p { font-size: 0.83rem; color: rgba(241,243,239,0.55); line-height: 1.7; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Features rust band ---- */
.features-band { background: var(--rust); }
.features-band-inner { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid rgba(0,0,0,0.12); }
.feature-item { padding: 32px 26px; border-right: 1px solid rgba(0,0,0,0.12); display: flex; flex-direction: column; gap: 8px; }
.feature-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,247,0.65); }
.feature-value { font-size: 1.02rem; font-weight: 900; color: var(--paper); letter-spacing: -0.02em; }
@media (max-width: 600px) { .features-band-inner { grid-template-columns: 1fr; } }

/* ---- Process steps (large gray numbers) ---- */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--border); border-top: 1px solid var(--border); margin-top: 48px; }
.process-step { padding: 30px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-step-num { font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 900; letter-spacing: -0.06em; color: var(--paper-dark); line-height: 1; margin-bottom: 16px; display: block; }
.process-step h3 { font-size: 0.9rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 1024px) { .process-steps { grid-template-columns: repeat(2,1fr); } }

/* ---- Cases: marquee + grid ---- */
.cases-section { background: var(--paper); overflow: hidden; }
.cases-marquee-wrap { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.cases-marquee-track { display: flex; gap: 2px; width: max-content; animation: cases-scroll 32s linear infinite; }
@keyframes cases-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.case-card { width: 300px; max-width: 82vw; flex-shrink: 0; border: 1px solid var(--border); background: var(--white); overflow: hidden; transition: border-color var(--t); }
.case-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--t-slow); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.ba-pair figure { position: relative; margin: 0; overflow: hidden; }
.ba-label { position: absolute; bottom: 6px; left: 6px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; padding: 2px 8px; text-transform: uppercase; }
.ba-label.before { background: var(--ink); color: var(--paper); }
.ba-label.after { background: var(--rust); color: #fff; }
.case-body { padding: 18px 22px 22px; }
.case-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--rust); margin-bottom: 8px; display: block; }
.case-title { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.02em; }
.case-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.cases-grid .case-card { width: auto; border: none; }
@media (prefers-reduced-motion: reduce) { .cases-marquee-track, .service-strip-inner { animation: none; } }
@media (hover: hover) and (pointer: fine) {
  .cases-marquee-wrap:hover .cases-marquee-track { animation-play-state: paused; }
}

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease-out, transform 0.55s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .06s; } .reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; } .reveal-d4 { transition-delay: .24s; }

/* ---- NSEO cross-link grid ---- */
.nseo-section { background: var(--paper-mid); border-top: 1px solid var(--border); }
.nseo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); border-left: 1px solid var(--border); border-top: 1px solid var(--border); margin-top: 44px; }
.nseo-card { display: block; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); transition: background var(--t); overflow: hidden; }
.nseo-card-img { aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--border); }
.nseo-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--t-slow); }
.nseo-card-body { padding: 18px 20px; }
.nseo-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; display: block; }
.nseo-badge.current { color: var(--rust); }
.nseo-card h3 { font-size: 0.95rem; font-weight: 800; }
.nseo-card p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.55; margin-top: 6px; }
.nseo-card-arrow { margin-top: 12px; font-size: 0.78rem; font-weight: 700; color: var(--rust); display: block; }
.nseo-card-more { background: var(--ink); border-color: var(--ink); display: flex !important; align-items: center; gap: 16px; padding: 24px; }
.nseo-card-more-icon { width: 44px; height: 44px; border: 1px solid rgba(241,243,239,0.20); display: flex; align-items: center; justify-content: center; color: rgba(241,243,239,0.5); flex-shrink: 0; transition: border-color var(--t), color var(--t); font-size: 1.2rem; }
.nseo-card-more h3 { color: var(--paper); }
.nseo-card-more p { color: rgba(241,243,239,0.5); }
@media (max-width: 768px) { .nseo-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- CTA section ---- */
.cta-section { background: var(--ink-mid); padding: var(--sp) 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; }
.cta-section h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--paper); margin-bottom: 14px; }
.cta-desc { font-size: 0.95rem; color: rgba(241,243,239,0.55); font-weight: 300; line-height: 1.8; max-width: 460px; }
@media (max-width: 1024px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---- FAQ (details/summary, no JS) ---- */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0;
  cursor: pointer; font-size: 0.95rem; font-weight: 700; transition: color var(--t); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--rust); transition: transform 0.25s; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 18px; }
@media (max-width: 768px) { .faq-layout { grid-template-columns: 1fr; gap: 24px; } }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
th { background: var(--paper-mid); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

/* ---- Footer ---- */
.site-footer { background: #0A1013; color: rgba(241,243,239,0.5); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); margin-bottom: 14px; }
.footer-grid a { display: block; padding: 5px 0; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; font-size: 0.75rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Sticky mobile CTA + floating buttons ---- */
#mob-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001; background: var(--white);
  border-top: 1px solid var(--border); box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
.floating-btns { position: fixed; bottom: 24px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.floating-consult { display: flex; align-items: center; gap: 10px; background: var(--rust); color: var(--paper);
  padding: 12px 18px; font-size: 0.85rem; font-weight: 700; box-shadow: 0 4px 20px rgba(14,124,134,0.35); position: relative; }
.pulse-ring { position: absolute; inset: -3px; border: 1.5px solid rgba(14,124,134,0.40); animation: pulse-ring 3s infinite; pointer-events: none; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 70%, 100% { transform: scale(1.06); opacity: 0; } }
@media (max-width: 768px) {
  #mob-bar { display: block; padding: 10px 16px; }
  .floating-btns { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  body { padding-bottom: 64px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding-top: 56px; }
  .hero-right { height: 56vw; max-height: 420px; order: -1; }
}
@media (max-width: 480px) { .hero-right { height: 60vw; } }
