/* E2L Insurance Center — Home / Header redesign
   Brand: Primary #1F4ED8 · Secondary #EEF4FF · BG #F7F8FA · Text #111827 · Sub #6B7280
   Product form themes in eventcalculator.html are unchanged. */

:root {
  --e2l-primary: #1F4ED8;
  --e2l-primary-hover: #1A42B8;
  --e2l-secondary: #EEF4FF;
  --e2l-bg: #F7F8FA;
  --e2l-text: #111827;
  --e2l-sub: #6B7280;
  --e2l-border: #E5E7EB;
  --e2l-card: #FFFFFF;
  --e2l-radius: 20px;
  --e2l-radius-sm: 14px;
  --e2l-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
  --e2l-shadow-hover: 0 16px 40px rgba(31, 78, 216, 0.12);
  --e2l-max: 1120px;
  --e2l-header-h: 72px;
}

/* —— Global chrome when redesigned header is present —— */
.top-nav.e2l-topnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--e2l-border);
  box-shadow: none;
  backdrop-filter: none;
}
.top-nav.e2l-topnav.is-scrolled {
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
}
.top-nav.e2l-topnav .top-nav-inner,
.e2l-header-inner {
  max-width: var(--e2l-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--e2l-header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-nav.e2l-topnav .top-nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--e2l-text);
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-nav.e2l-topnav .top-nav-logo span {
  color: var(--e2l-primary);
}

.e2l-desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.e2l-nav-item {
  position: relative;
  /* 메뉴↔드롭다운 사이 빈 공간에서도 hover 유지 (클릭 가능) */
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.e2l-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.e2l-nav-link:hover,
.e2l-nav-item:hover > .e2l-nav-link,
.e2l-nav-item.is-open > .e2l-nav-link {
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
}
.e2l-nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.e2l-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--e2l-border);
  border-radius: 14px;
  box-shadow: var(--e2l-shadow-hover);
  padding: 8px;
  z-index: 1100;
  pointer-events: auto;
}
.e2l-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.e2l-nav-item:hover .e2l-dropdown,
.e2l-nav-item.is-open .e2l-dropdown,
.e2l-nav-item:focus-within .e2l-dropdown {
  display: block;
}
.e2l-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  cursor: pointer;
}
.e2l-dropdown a:hover {
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
}
.e2l-dropdown a span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--e2l-sub);
  margin-top: 2px;
}

.e2l-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.e2l-header-ghost {
  display: none;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.e2l-header-ghost:hover {
  background: #F3F4F6;
  color: var(--e2l-primary);
}
.e2l-cta-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--e2l-primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(31, 78, 216, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}
.e2l-cta-btn:hover {
  background: var(--e2l-primary-hover);
  transform: translateY(-1px);
}
.top-nav.e2l-topnav .hamburger-btn {
  background: #F3F4F6;
  color: var(--e2l-text);
  border-radius: 12px;
}
.top-nav.e2l-topnav .hamburger-btn:hover {
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
}

@media (min-width: 1024px) {
  .e2l-desktop-nav { display: flex; }
  .e2l-header-ghost { display: inline-flex; }
  .e2l-cta-btn { display: inline-flex; }
  .top-nav.e2l-topnav .hamburger-btn { display: none; }
}

/* Mobile drawer — must live in shared CSS (SEO pages don't load eventcalculator inline styles) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 88vw);
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 40px;
  box-sizing: border-box;
}
.mobile-menu-panel.active {
  right: 0;
}
.mobile-menu-panel .menu-list-e2l {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.mobile-menu-panel .menu-list-e2l .e2l-mobile-group {
  margin: 12px 0 4px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--e2l-sub);
  letter-spacing: 0.02em;
}
.mobile-menu-panel .menu-list-e2l a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--e2l-text);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu-panel .menu-list-e2l a:hover {
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
}
.mobile-menu-panel .menu-list-e2l a svg {
  width: 20px;
  height: 20px;
  color: var(--e2l-primary);
}
.e2l-mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.e2l-mobile-cta .e2l-cta-btn {
  display: flex;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
}

/* —— Home body shell —— */
body.body--home {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: clip;
  background: var(--e2l-bg);
  color: var(--e2l-text);
}
body.body--home .page-wrap {
  padding: 0 0 48px;
  align-items: stretch;
}
body.body--home .container.container--home {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100%;
}

#section-home.home-landing {
  width: 100%;
}

.e2l-section {
  width: 100%;
  padding: 72px 24px;
}
.e2l-section-inner {
  max-width: var(--e2l-max);
  margin: 0 auto;
}
.e2l-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--e2l-primary);
  background: var(--e2l-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.e2l-section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--e2l-text);
}
.e2l-section-desc {
  font-size: 16px;
  color: var(--e2l-sub);
  margin: 0 0 36px;
  line-height: 1.65;
  max-width: 36em;
}

/* —— Hero —— */
.e2l-hero {
  position: relative;
  padding: 48px 24px 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 90% 20%, rgba(31, 78, 216, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(238, 244, 255, 0.9) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, var(--e2l-bg) 100%);
}
.e2l-hero-inner {
  max-width: var(--e2l-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.e2l-hero-copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--e2l-text);
}
.e2l-hero-copy h1 em {
  font-style: normal;
  color: var(--e2l-primary);
}
.e2l-hero-lead {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--e2l-sub);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 28em;
}
.e2l-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.e2l-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--e2l-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(31, 78, 216, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}
.e2l-btn-primary:hover {
  background: var(--e2l-primary-hover);
  transform: translateY(-1px);
}
.e2l-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: #fff;
  color: var(--e2l-text);
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: 1px solid var(--e2l-border);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.e2l-btn-secondary:hover {
  border-color: var(--e2l-primary);
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
}

.e2l-hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.e2l-hero-img {
  width: min(100%, 460px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}
.e2l-hero-art {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 32px;
  background:
    linear-gradient(145deg, #EEF4FF 0%, #FFFFFF 45%, #F0F7FF 100%);
  border: 1px solid rgba(31, 78, 216, 0.12);
  box-shadow: 0 24px 60px rgba(31, 78, 216, 0.12);
  overflow: hidden;
}
.e2l-hero-art::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: rgba(31, 78, 216, 0.12);
  top: 18%;
  left: 14%;
  transform: rotate(-12deg);
}
.e2l-hero-art::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(31, 78, 216, 0.18);
  bottom: 16%;
  right: 14%;
  transform: rotate(18deg);
}
.e2l-hero-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--e2l-shadow);
  border: 1px solid var(--e2l-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--e2l-text);
}
.e2l-hero-float svg {
  width: 22px;
  height: 22px;
  color: var(--e2l-primary);
  flex-shrink: 0;
}
.e2l-hero-float--1 { top: 18%; left: 10%; }
.e2l-hero-float--2 { bottom: 22%; right: 8%; }
.e2l-hero-float--3 { top: 48%; left: 42%; }
.e2l-hero-center-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.e2l-hero-center-icon > div {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: var(--e2l-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(31, 78, 216, 0.35);
}
.e2l-hero-center-icon svg {
  width: 48px;
  height: 48px;
  color: #fff;
}

/* —— Product cards —— */
.e2l-products {
  background: var(--e2l-bg);
  padding-top: 40px;
}
.e2l-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.e2l-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: var(--e2l-card);
  border: 1px solid var(--e2l-border);
  border-radius: var(--e2l-radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.03);
  min-height: 100%;
}
.e2l-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--e2l-shadow-hover);
  border-color: rgba(31, 78, 216, 0.35);
}
.e2l-product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
  flex-shrink: 0;
}
.e2l-product-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.e2l-product-icon--violet { background: #F3E8FF; color: #7C3AED; }
.e2l-product-icon--indigo { background: #EEF2FF; color: #4F46E5; }
.e2l-product-icon--emerald { background: #ECFDF5; color: #059669; }
.e2l-product-icon--orange { background: #FFF7ED; color: #EA580C; }
.e2l-product-icon--teal { background: #CCFBF1; color: #0D9488; }
.e2l-product-icon--rose { background: #FCE7F3; color: #DB2777; }
.e2l-product-icon--sky { background: #E0F2FE; color: #0284C7; }
.e2l-product-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  color: var(--e2l-text);
}
.e2l-product-card p {
  font-size: 14px;
  color: var(--e2l-sub);
  margin: 0;
  line-height: 1.55;
}
.e2l-product-card .e2l-card-go {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--e2l-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.e2l-product-card .e2l-card-go svg { width: 16px; height: 16px; }

/* —— Need cards —— */
.e2l-needs {
  background: #fff;
}
.e2l-need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.e2l-need-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--e2l-radius);
  border: 1px solid var(--e2l-border);
  background: var(--e2l-bg);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: left;
  font-family: inherit;
  width: 100%;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.e2l-need-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(31, 78, 216, 0.35);
  box-shadow: var(--e2l-shadow);
}
.e2l-need-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--e2l-primary);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.e2l-need-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--e2l-text);
}
.e2l-need-body p {
  margin: 0;
  font-size: 14px;
  color: var(--e2l-sub);
  line-height: 1.5;
}
.e2l-need-body strong {
  color: var(--e2l-primary);
  font-weight: 700;
}

/* —— Process —— */
.e2l-process {
  background: #fff;
}
.e2l-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.e2l-process-card {
  background: var(--e2l-bg);
  border: 1px solid var(--e2l-border);
  border-radius: var(--e2l-radius);
  padding: 24px 20px;
}
.e2l-process-step {
  font-size: 13px;
  font-weight: 800;
  color: var(--e2l-primary);
  margin-bottom: 12px;
}
.e2l-process-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.e2l-process-card p {
  margin: 0;
  font-size: 13px;
  color: var(--e2l-sub);
  line-height: 1.55;
}

/* —— Trust —— */
.e2l-trust {
  background: var(--e2l-bg);
}
.e2l-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.e2l-trust-item {
  background: #fff;
  border: 1px solid var(--e2l-border);
  border-radius: var(--e2l-radius-sm);
  padding: 22px 18px;
  text-align: center;
}
.e2l-trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--e2l-primary);
  margin-bottom: 12px;
}
.e2l-trust-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}
.e2l-trust-item p {
  margin: 0;
  font-size: 13px;
  color: var(--e2l-sub);
  line-height: 1.5;
}

/* —— Contact on home —— */
.e2l-contact {
  background: #fff;
}
.e2l-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.e2l-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--e2l-radius);
  border: 1px solid var(--e2l-border);
  background: var(--e2l-bg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button.e2l-contact-card {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.e2l-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--e2l-shadow);
  background: #fff;
}
.e2l-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--e2l-secondary);
  color: var(--e2l-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.e2l-contact-icon svg { width: 22px; height: 22px; }
.e2l-contact-card h4 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--e2l-sub);
}
.e2l-contact-card .e2l-contact-main {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--e2l-text);
}
.e2l-contact-card .e2l-contact-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--e2l-sub);
}

/* Footer — shared by home & product SEO pages */
.footer-box,
.footer-box.e2l-footer-modern {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0F172A;
  color: #b4bac6;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}
.footer-inner {
  max-width: var(--e2l-max, 1120px);
  margin: 0 auto;
  padding: 48px 28px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 36px 32px;
  align-items: start;
}
.footer-heading {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}
.footer-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.68;
  color: #b4bac6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.footer-text:last-child { margin-bottom: 0; }
.footer-text--sub {
  font-size: 13px;
  color: #8b93a3;
  margin-top: 6px;
}
.footer-text a {
  color: #d1dae9;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-text a:hover { color: #5eead4; text-decoration: underline; }
.footer-col--company strong {
  color: #e8ecf4;
  font-weight: 600;
}
.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-link-list li { margin: 0 0 12px; }
.footer-link-list li:last-child { margin-bottom: 0; }
.footer-link-list a {
  display: inline-block;
  color: #c8d0de;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer-link-list a:hover { color: #5eead4; }
.footer-box .ad-disclaimer {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 13px;
  line-height: 1.72;
  text-align: left;
  max-width: none;
  color: #a3aab8;
}
.footer-box .ad-disclaimer p {
  text-align: left;
  line-height: 1.75;
  margin: 0 0 1em;
  color: #a3aab8;
}
.footer-box .ad-disclaimer p:last-child { margin-bottom: 0; }
.footer-box .ad-disclaimer b { color: #d8dde6; }
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 40px 22px 36px;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 36px 20px 32px;
  }
}

/* Floating contact */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.contact-pill {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.contact-pill:hover { transform: translateY(-2px); }
.contact-pill__label {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 44px 0 18px;
  margin-right: -30px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
  white-space: nowrap;
}
.contact-pill__fab {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  background: var(--e2l-primary);
  box-shadow: 0 6px 22px rgba(31, 78, 216, 0.35);
  transition: box-shadow 0.2s ease;
}
.contact-pill__fab svg { width: 22px; height: 22px; }
@media (max-width: 700px) {
  .floating-contact { right: 12px; bottom: 14px; gap: 12px; }
  .contact-pill__label {
    height: 36px;
    padding: 0 40px 0 14px;
    margin-right: -26px;
    font-size: 12px;
  }
  .contact-pill__fab { width: 44px; height: 44px; }
  .contact-pill__fab svg { width: 20px; height: 20px; }
}

/* Floating contact — keep, tint primary */
body.body--home .contact-pill--phone .contact-pill__fab,
body.body--home .contact-pill--mail .contact-pill__fab,
body.body--home .contact-pill--kakao .contact-pill__fab {
  background: var(--e2l-primary);
}

/* —— Responsive —— */
@media (max-width: 1023px) {
  .e2l-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .e2l-hero-visual {
    min-height: 260px;
    order: -1;
  }
  .e2l-hero-art {
    width: min(100%, 340px);
  }
  .e2l-hero-img {
    width: min(100%, 360px);
  }
  .e2l-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .e2l-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .e2l-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .e2l-contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .e2l-section { padding: 48px 16px; }
  .e2l-hero { padding: 28px 16px 12px; }
  .e2l-hero-copy h1 { font-size: 30px; }
  .e2l-hero-ctas { flex-direction: column; }
  .e2l-btn-primary,
  .e2l-btn-secondary { width: 100%; }
  .e2l-product-grid,
  .e2l-need-grid,
  .e2l-process-grid,
  .e2l-trust-grid,
  .e2l-contact-grid {
    grid-template-columns: 1fr;
  }
  .e2l-hero-float--3 { display: none; }
}

@media (min-width: 1440px) {
  :root { --e2l-max: 1200px; }
}
