/* ===== VARIABLES ===== */
:root {
  --navy: #0F2744;
  --navy-mid: #1A3A5C;
  --blue: #1E5FAA;
  --blue-mid: #2E7DD1;
  --blue-light: #EBF4FF;
  --accent: #3B82F6;
  --text: #1A2332;
  --text-mid: #3D5068;
  --text-light: #6B7E96;
  --bg: #F5F8FC;
  --bg-alt: #EEF4FB;
  --white: #FFFFFF;
  --border: #D8E4F0;
  --border-light: #EAF1F8;
  --shadow-sm: 0 1px 4px rgba(15,39,68,0.07);
  --shadow: 0 4px 16px rgba(15,39,68,0.09);
  --shadow-lg: 0 8px 32px rgba(15,39,68,0.13);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-dark .section-label { background: rgba(255,255,255,0.12); color: #A8C8FF; }

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.75;
}
.section-dark .section-desc { color: #A8C8FF; }

.space-desc {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 600px;
}
.space-desc p + p { margin-top: 18px; }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--blue);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-main {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--blue-light); color: var(--blue); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background var(--transition);
  white-space: nowrap;
}
.header-phone:hover { background: var(--blue); }
.header-phone svg { flex-shrink: 0; }
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--navy);
}
.menu-btn:hover { background: var(--bg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; color: var(--blue); font-weight: 700; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.58) 100%),
              url('https://in.koreazib.com/upload/uploads/ext4d036942/file_6a3bd67082ad04.70555897.webp') center/cover no-repeat;
  color: var(--white);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #5BDC8C;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.hero-note span { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,95,170,0.35);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,95,170,0.45); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ===== CONCERN LIST (고민 섹션) ===== */
.concern-wrap { max-width: 640px; margin: 0 auto; }
.concern-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  margin-bottom: 0;
}
.concern-list { display: flex; flex-direction: column; gap: 10px; margin-top: 36px; }
.concern-item {
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 22px;
  opacity: 0;
  transition: opacity 0.52s ease, transform 0.52s ease;
  letter-spacing: 0.01em;
}
.concern-item:nth-child(odd) { transform: translateX(-36px); }
.concern-item:nth-child(even) { transform: translateX(36px); }
.concern-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  min-height: 260px;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img .auto-slider { width: 100%; height: 100%; min-height: 260px; }
.film-accordion { display: flex; flex-direction: column; gap: 8px; }
.acc-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.acc-trigger {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  gap: 12px;
  text-align: left;
}
.acc-trigger::-webkit-details-marker { display: none; }
.acc-trigger::marker { display: none; }
.acc-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.acc-item[open] .acc-icon { transform: rotate(45deg); }
.acc-body {
  padding: 12px 18px 16px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}

/* ===== AUTO SLIDER ===== */
.auto-slider { position: relative; overflow: hidden; }
.why-img .auto-slider { width: 100%; height: 100%; }
.space-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.space-split-text { }
.space-slider { border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.auto-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.auto-slider .slide.active { opacity: 1; }
.auto-slider .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s;
}
.dot.active { background: #fff; }
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  z-index: 1;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 13px;
  padding: 4px 12px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  font-weight: 500;
}

/* ===== FILM FEATURES ===== */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.film-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.film-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.film-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.film-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.film-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===== PROCESS ===== */
.process-lead {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.process-flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: stretch;
  gap: 0;
}
.process-node {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-num {
  display: flex;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-node h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-node p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 56px;
}
.process-connector::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--border);
}

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--border-light);
}
.case-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card:hover .case-img img { transform: scale(1.04); }
.case-info { padding: 16px 18px; }
.case-info .case-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.case-info h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.case-info p { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid var(--border);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}
.faq-q-mark {
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.3;
}
.faq-a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.44), rgba(0,0,0,0.56)),
              url('https://in.koreazib.com/upload/uploads/ext4d036942/file_6a3cb9e3abca24.30562379.webp') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}
.cta-section .section-title { color: var(--white); margin-bottom: 16px; }
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-number {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #A8D0FF;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* ===== FOOTER ===== */
footer {
  background: #08192E;
  color: rgba(255,255,255,0.6);
  padding: 52px 0 32px;
  font-size: 14px;
}
.footer-sitemap-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand-block .brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-info { display: flex; flex-direction: column; gap: 5px; }
.footer-info span { font-size: 13px; }
.footer-sitemap {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.sitemap-heading-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sitemap-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.sitemap-page-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.sitemap-page-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sitemap-page-list li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.sitemap-page-list li a:hover { color: var(--blue); }
.sitemap-page-list li p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.sitemap-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}
.sitemap-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.sitemap-col a:hover { color: var(--white); }
.footer-copy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== SUB-PAGE HERO ===== */
.sub-hero {
  background: linear-gradient(135deg, rgba(10,30,60,0.93) 0%, rgba(20,60,120,0.85) 100%),
              url('https://in.koreazib.com/upload/uploads/ext4d036942/file_6a3c98d3a5ac14.22266887.webp') center/cover no-repeat;
  color: var(--white);
  padding: 72px 0;
}
.sub-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.sub-hero .hero-sub { font-size: 18px; color: #A8D0FF; margin-bottom: 12px; }
.sub-hero .hero-desc { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 32px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ===== CONTENT BLOCKS ===== */
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.content-block h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.content-block p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.content-block ul { display: flex; flex-direction: column; gap: 8px; }
.content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}
.content-block ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex-shrink: 0;
}

.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { font-size: 14px; color: var(--text-mid); margin: 0; line-height: 1.7; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ===== RELATED LINKS ===== */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.related-link {
  font-size: 13px;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-mid);
  transition: all var(--transition);
}
.related-link:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }

/* ===== CONTACT CTA (inline) ===== */
.contact-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
  margin-top: 48px;
}
.contact-cta h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-flow { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .space-split { grid-template-columns: 1fr; gap: 36px; }
  .space-slider { aspect-ratio: 4/3; }
  .faq-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .menu-btn { display: flex; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .film-grid { grid-template-columns: 1fr 1fr; }
  .header-phone .phone-label { display: none; }
  .hero-content { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .footer-sitemap-wrap { flex-direction: column; gap: 32px; }
  .sitemap-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .space-split { grid-template-columns: 1fr; gap: 32px; }
  .footer-sitemap { gap: 28px; }
  .contact-cta { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .cases-grid { grid-template-columns: 1fr; }
  .film-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .btn-lg { padding: 14px 24px; font-size: 16px; }
  .logo-icon { display: none; }
}
