/* ────── SHARED ────── */
.content-section {
  padding: var(--section-space-lg) 0;
}

.site-logo__image {
  display: block;
  width: auto;
  height: 42px;
  max-width: 196px;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1);
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.site-header.is-scrolled .site-logo__image {
  filter: none;
}

/* ────── HERO ────── */
.hero-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: 0 0 80px;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 38, 0.3) 0%,
    rgba(6, 18, 38, 0.15) 40%,
    rgba(6, 18, 38, 0.55) 100%
  );
}

.hero-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero Content Slides */
.hero-content-slider {
  position: relative;
  max-width: 680px;
  min-height: 260px;
}

.hero-content-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.hero-content-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-section__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-ls);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  margin: 0;
  font-family: var(--font-family-en);
  font-size: var(--type-hero-title-size);
  font-weight: var(--type-hero-title-weight);
  line-height: var(--type-hero-title-lh);
  color: #ffffff;
  letter-spacing: var(--type-hero-title-ls);
}

.hero-title span {
  color: rgba(255, 255, 255, 0.85);
}

.hero-section__lead {
  margin: 24px 0 0;
  font-size: var(--type-hero-lead-size);
  font-weight: var(--type-hero-lead-weight);
  line-height: var(--type-hero-lead-lh);
  color: rgba(255, 255, 255, 0.78);
}

/* Hero Indicators */
.hero-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-dot:hover {
  border-color: #ffffff;
  transform: scale(1.2);
}

.hero-dot:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
  transform: scale(1.2);
}

.hero-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
}

.hero-progress {
  width: 80px;
  height: 2px;
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hero-progress__bar {
  width: 0%;
  height: 100%;
  background: #ffffff;
  transition: width 0.1s linear;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ────── SECTION HEADS ────── */
.section-head {
  max-width: 780px;
}

.section-head--center {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
}

.section-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  line-height: 1.2;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--type-eyebrow-ls);
}

.section-title {
  margin: 0;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-section-title-weight);
  line-height: var(--type-section-title-lh);
  color: var(--color-text);
  letter-spacing: var(--type-section-title-ls);
}

.section-desc {
  margin: 16px 0 0;
  font-size: var(--type-section-desc-size);
  font-weight: var(--type-section-desc-weight);
  line-height: var(--type-section-desc-lh);
  color: var(--color-muted);
}

/* ────── BUTTONS ────── */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-button);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(10, 30, 61, 0.2);
}

.btn--secondary {
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid rgba(10, 30, 61, 0.14);
}

.btn--light {
  color: var(--color-primary);
  background: #ffffff;
}

.btn--outline-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

/* ────── ABOUT / STAT GRID ────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
}

.stat-card {
  position: relative;
  min-height: 260px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.stat-card--blue {
  background: linear-gradient(135deg, #1a6dcc 0%, #0a4a8a 100%);
  color: #ffffff;
}

.stat-card--navy {
  background: linear-gradient(135deg, #0a1e3d 0%, #142d54 100%);
  color: #ffffff;
}

.stat-card--image {
  background: #1a2a42;
  color: #ffffff;
}

.stat-card--img1 {
  background:
    linear-gradient(180deg, rgba(10, 30, 61, 0.3) 0%, rgba(10, 30, 61, 0.7) 100%),
    url("../images/news-thumb-1.png") center / cover no-repeat;
}

.stat-card--img2 {
  background:
    linear-gradient(180deg, rgba(10, 30, 61, 0.3) 0%, rgba(10, 30, 61, 0.7) 100%),
    url("../images/news-thumb-3.png") center / cover no-repeat;
}

.stat-card__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.stat-card__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--font-family-en);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.stat-card__value small {
  font-size: 28px;
  font-weight: 700;
  opacity: 0.7;
}

.stat-card__value em {
  font-style: normal;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
  margin-left: 4px;
}

/* About Proof Layout */
.about-proof-head {
  text-align: center;
}

.about-proof-head__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.08em;
}

.about-proof-head__title {
  max-width: 860px;
  margin: 0 auto;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-section-title-weight);
  line-height: var(--type-section-title-lh);
  color: var(--color-text);
  letter-spacing: var(--type-section-title-ls);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 52px;
  margin-right: auto;
  margin-left: auto;
}

.about-proof-card {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.about-proof-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-proof-card:hover .about-proof-card__image {
  transform: scale(1.04);
}

.about-proof-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 35, 0.68);
}



.about-proof-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px 28px;
  text-align: center;
  color: #ffffff;
}

.about-proof-card__keyword {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: var(--type-eyebrow-ls);
}

.about-proof-card__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.about-proof-card__text {
  margin: 14px auto 0;
  max-width: 260px;
  font-size: var(--type-card-desc-size);
  font-weight: var(--type-card-desc-weight);
  line-height: var(--type-card-desc-lh);
  color: rgba(255, 255, 255, 0.86);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 54px;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  animation: brandLogoMarquee 58s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.brand-marquee:hover .brand-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track {
    animation: none;
    transform: none;
  }
}

.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  flex: 0 0 auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 64px;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  max-width: 142px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes brandLogoMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Company Info Bar */
.company-info-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.company-info-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding-right: 28px;
  border-right: 1px solid var(--color-border);
  color: var(--color-primary);
}

.company-info-bar__left strong {
  font-size: 16px;
  font-weight: 900;
}

.company-info-bar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}

.info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.info-value.accent {
  font-family: var(--font-family-en);
  font-weight: 900;
  color: var(--color-accent);
}

.info-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

/* ────── SERVICE FULLBLEED ────── */
.service-fullbleed-section {
  padding: var(--section-space-lg) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%),
    #f5f7fa;
}

.service-section-head {
  text-align: center;
}

.service-section-head__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  color: var(--color-accent);
  letter-spacing: var(--type-eyebrow-ls);
  text-transform: uppercase;
}

.service-section-head__title {
  margin: 0;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-section-title-weight);
  line-height: var(--type-section-title-lh);
  color: var(--color-text);
  letter-spacing: var(--type-section-title-ls);
}

.service-section-head__desc {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: var(--type-section-desc-size);
  font-weight: var(--type-section-desc-weight);
  line-height: var(--type-section-desc-lh);
  color: var(--color-muted);
}

.service-fullbleed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.service-fullbleed-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(10, 30, 61, 0.1);
}

.service-fullbleed-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-fullbleed-card:hover .service-fullbleed-card__image {
  transform: scale(1.05);
}

.service-fullbleed-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 38, 0.15) 0%, rgba(6, 18, 38, 0.78) 100%);
  z-index: 1;
}

.service-fullbleed-card__body {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 34px;
  z-index: 2;
  color: #ffffff;
}

.service-fullbleed-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.02em;
}

.service-fullbleed-card__title {
  margin: 0;
  font-family: var(--font-family-en);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-fullbleed-card__text {
  margin: 14px 0 0;
  font-size: var(--type-card-desc-size);
  font-weight: var(--type-card-desc-weight);
  line-height: var(--type-card-desc-lh);
  color: rgba(255, 255, 255, 0.82);
}

/* ────── PROCESS ────── */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.95) 0 13%, transparent 14%),
    linear-gradient(135deg, #f4f6f8 0%, #ffffff 48%, #eef3f7 100%);
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 24px solid rgba(10, 30, 61, 0.045);
  border-radius: 999px;
  transform: rotate(-34deg);
}

.process-section::before {
  width: 420px;
  height: 760px;
  top: -220px;
  right: -120px;
}

.process-section::after {
  width: 280px;
  height: 540px;
  right: 120px;
  bottom: -240px;
  opacity: 0.72;
}

.process-section__inner {
  position: relative;
  z-index: 1;
}

.process-section__head {
  text-align: center;
}

.process-section__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  color: var(--color-accent);
  letter-spacing: var(--type-eyebrow-ls);
  text-transform: uppercase;
}

.process-section__title {
  max-width: 820px;
  margin: 0 auto;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-section-title-weight);
  line-height: var(--type-section-title-lh);
  color: var(--color-text);
  letter-spacing: var(--type-section-title-ls);
}

.process-section__desc {
  max-width: 620px;
  margin: 16px auto 0;
  font-size: var(--type-section-desc-size);
  font-weight: var(--type-section-desc-weight);
  line-height: var(--type-section-desc-lh);
  color: var(--color-muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 68px auto 0;
}

.process-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 18px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(10, 30, 61, 0.06);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(10, 30, 61, 0.06);
  transition: box-shadow 0.45s ease, transform 0.45s ease, background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}

.process-card:hover {
  box-shadow: 0 24px 54px rgba(10, 30, 61, 0.12);
  transform: translateY(-8px);
}

.process-card--active {
  min-height: 250px;
  color: #ffffff;
  background: #205b99;
  border-color: rgba(32, 91, 153, 0.38);
  box-shadow: 0 22px 48px rgba(32, 91, 153, 0.28);
  transform: translateY(-10px);
}

.process-card__code {
  display: block;
  font-family: var(--font-family-en);
  font-size: 11px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.process-card__title {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
}

.process-card__text {
  margin: 10px auto 0;
  max-width: 150px;
  min-height: 42px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.5);
  line-height: 1.55;
}

.process-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-top: 26px;
  color: rgba(17, 24, 39, 0.38);
}

.process-card__icon i {
  display: block;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.process-card--active .process-card__code,
.process-card--active .process-card__title,
.process-card--active .process-card__text,
.process-card--active .process-card__icon {
  color: #ffffff;
}

.process-card--active .process-card__text,
.process-card--active .process-card__icon {
  opacity: 0.76;
}

/* ────── NEWS ────── */
.news-section {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.news-section .section-eyebrow {
  color: var(--color-accent-light);
}

.news-section .section-title {
  color: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.news-card {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.news-card:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.news-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__image {
  transform: scale(1.08);
}

.news-card__body {
  padding: 24px;
}

.news-card__title {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__badge,
.news-card__meta {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
}

.news-card__badge {
  color: var(--color-accent-light);
}

.news-card__text {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
}

.news-card__dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.news-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.news-card__dot.is-active {
  background: var(--color-accent);
}

/* ────── NEWS MARQUEE ────── */
.news-marquee-wrap {
  overflow: hidden;
  margin-top: 48px;
  width: 100%;
}

.news-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.news-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.news-card--marquee {
  width: 340px;
  flex-shrink: 0;
}

/* ────── CTA ────── */
.cta-section {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(10, 30, 61, 0.97) 0%, rgba(10, 30, 61, 0.94) 58%, rgba(26, 109, 204, 0.82) 100%),
    var(--color-primary);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 56px;
}

/* Left: Contact */
.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
}

.cta-subtitle {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-phone__label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.cta-phone__number {
  font-family: var(--font-family-en);
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.cta-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.cta-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-contact-line__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 26px;
  padding: 0 10px;
  font-family: var(--font-family-en);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.cta-contact-line a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.cta-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-action-btn:hover {
  transform: translateY(-2px);
}

.cta-action-btn--kakao {
  color: #3c1e1e;
  background: #fee500;
}

.cta-action-btn--kakao:hover {
  background: #ffd900;
}

.cta-action-btn--blog {
  color: #ffffff;
  background: #03c75a;
}

.cta-action-btn--blog:hover {
  background: #02b350;
}

/* Right: Booking Ticker */
.cta-right {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.booking-ticker {
  --booking-item-height: 56px;
  --booking-visible-items: 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.booking-ticker:focus-visible {
  outline: 3px solid var(--color-accent-light);
  outline-offset: 4px;
}

.booking-ticker__header {
  flex: 0 0 auto;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-ticker__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.booking-ticker__subtitle {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.booking-ticker__list-wrap {
  position: relative;
  flex: 0 0 calc(var(--booking-item-height) * var(--booking-visible-items));
  height: calc(var(--booking-item-height) * var(--booking-visible-items));
  min-height: 0;
  max-height: none;
  overflow: hidden;
}

.booking-ticker__list {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.booking-item {
  display: grid;
  grid-template-columns: 24px minmax(88px, 0.85fr) minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 12px;
  height: var(--booking-item-height);
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.booking-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.booking-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: 900;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 4px;
}

.booking-item__service {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-item__detail {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-item__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  white-space: nowrap;
}

/* ══════════════════════════════════
   SUBPAGE COMPONENTS
   ══════════════════════════════════ */

/* ────── Sub Hero ────── */
.sub-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 60px 0 48px;
  overflow: hidden;
}

.sub-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 61, 0.6);
}

.sub-hero__inner {
  position: relative;
  z-index: 1;
}

.sub-hero__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-family-en);
  font-size: var(--type-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.sub-hero__title {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
}

.sub-hero__breadcrumb {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ────── CEO Greeting ────── */
.greeting-content {
  max-width: 760px;
  margin: 48px auto 0;
}

.greeting-content--split {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.greeting-image {
  border-radius: 12px;
  overflow: hidden;
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* greeting-lead styles managed in pages.css */

.greeting-text p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-muted);
}

.greeting-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.greeting-signature__company {
  font-size: 14px;
  color: var(--color-muted);
}

.greeting-signature__name {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
}

/* ────── Overview Section ────── */
.about-overview-section {
  background: var(--color-section);
}

.overview-table-wrap {
  margin: 0;
}

.overview-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  background: #ffffff;
  padding: 44px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.overview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.overview-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
}

.overview-table th,
.overview-table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.overview-table th {
  width: 140px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(10, 30, 61, 0.03);
}

.overview-table td {
  color: var(--color-text);
}

.overview-table td a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ────── Certification Cards ────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 30, 61, 0.1);
}

.cert-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--color-accent);
  background: var(--color-navy-soft);
  border-radius: 12px;
}

.cert-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.cert-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
}

/* ────── Timeline ────── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}

.history-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.history-split .timeline {
  margin-top: 0;
  max-width: 100%;
}

.history-image {
  position: sticky;
  top: 100px;
  border-radius: 12px;
  overflow: hidden;
}

.history-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -34px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color-accent);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-family-en);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-body li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}

.timeline-body li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ────── Location ────── */
.location-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 0;
}

.location-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.location-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-accent);
  background: var(--color-navy-soft);
  border-radius: 10px;
}

.location-info__item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.location-info__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

.location-info__item a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ══════════════════════════════════
   QUOTE FORM
   ══════════════════════════════════ */
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  width: 100%;
  max-width: var(--container-width);
  margin-top: 64px;
  margin-right: auto;
  margin-left: auto;
}

.quote-layout > *,
.quote-form__section,
.quote-form__grid,
.quote-form__group {
  min-width: 0;
}

/* Quote Form Section Blocks - Spacious & Relaxed Visual Density */
.quote-form__section {
  padding: 0;
  margin-bottom: 56px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.quote-form__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.quote-form__group {
  display: flex;
  flex-direction: column;
}

.quote-form__group--full {
  margin-bottom: 24px;
}

.quote-form__group label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.quote-form__group label .required {
  color: #e74c3c;
  font-weight: 800;
}

.quote-form__group label span.sub-info {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted);
}

.quote-form__group input,
.quote-form__group select,
.quote-form__group textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-form__group input:focus,
.quote-form__group select:focus,
.quote-form__group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.quote-form__group input:focus-visible,
.quote-form__group select:focus-visible,
.quote-form__group textarea:focus-visible,
.quote-form__privacy-box:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.quote-form__group input[aria-invalid="true"],
.quote-form__group select[aria-invalid="true"],
.quote-form__group textarea[aria-invalid="true"] {
  border-color: #c2410c;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.14);
}

.quote-form__group textarea {
  resize: vertical;
  min-height: 140px;
}

/* File Uploader Zone */
.quote-file-uploader {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  font: inherit;
  color: inherit;
  background: #ffffff;
  border: 2px dashed var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.quote-file-uploader:hover:not(:disabled) {
  background: #f8fafc;
  border-color: var(--color-accent);
}

.quote-file-uploader:focus-visible {
  border-color: var(--color-accent);
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.quote-file-uploader__icon {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.quote-file-uploader__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.quote-file-uploader__subtext {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.quote-file-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.quote-file-preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.quote-file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-file-preview-item .remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.quote-file-preview-item .remove-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 1px;
}

/* Privacy Box */
.quote-form__privacy-box {
  height: 150px;
  padding: 20px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-muted);
}

.quote-form__privacy-box p {
  margin: 0 0 8px;
}

.quote-form__privacy-box strong {
  color: var(--color-primary);
}

.quote-form__privacy-agree {
  margin: 20px 0 32px;
}

.quote-form__privacy-agree label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.quote-form__privacy-agree input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
}

.quote-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  color: #ffffff;
  background: var(--color-accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.quote-form__submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.quote-form__submit:active {
  transform: translateY(0) scale(0.99);
}

.quote-form__submit:disabled {
  cursor: not-allowed;
  background: #64748b;
  box-shadow: none;
  transform: none;
}

.quote-form__status {
  min-height: 1.5em;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.quote-form__status[data-state="success"] {
  color: #166534;
}

.quote-form__status[data-state="error"] {
  color: #9a3412;
}

/* Quote Sidebar - Positioned Below Quote Form Horizontally */
.quote-sidebar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ══════════════════════════════════
   SUBPAGE LNB TAB BAR — GNB Category Tabs (components.css)
   ══════════════════════════════════ */
.sub-lnb {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 72px;
  z-index: 90;
}

.sub-lnb__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}

.sub-lnb__inner::-webkit-scrollbar {
  display: none;
}

.sub-lnb__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.sub-lnb__item {
  flex: 0 0 auto;
  text-align: center;
}

.sub-lnb__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

/* 하위 라인을 박스 전체가 아닌 텍스트 폭에 정확히 맞춤 */
.sub-lnb__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 48px);
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px 2px 0 0;
  transition: transform 0.2s ease, background-color 0.2s;
}

.sub-lnb__link:hover {
  color: var(--color-primary);
  background: #f8fafc;
}

.sub-lnb__link.active,
.sub-lnb__link[aria-current="page"] {
  color: var(--color-accent);
  font-weight: 800;
  background: #ffffff;
}

.sub-lnb__link.active::after,
.sub-lnb__link[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 768px) {
  .sub-lnb {
    top: 60px;
  }
  .sub-lnb__link {
    padding: 14px 18px;
    font-size: 14px;
  }
  .sub-lnb__link::after {
    width: calc(100% - 36px);
  }
}


.quote-sidebar__card {
  padding: 28px 24px;
  background: var(--color-section);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
}

.quote-sidebar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  color: var(--color-accent);
  background: var(--color-navy-soft);
  border-radius: 12px;
}

.quote-sidebar__card strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.quote-sidebar__card p {
  margin: 0 0 4px;
  font-size: 15px;
}

.quote-sidebar__card p a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
}

.quote-sidebar__card span {
  font-size: 12px;
  color: var(--color-muted);
}

/* ══════════════════════════════════
   GALLERY
   ══════════════════════════════════ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.gallery-filter__btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.gallery-filter__btn.is-active,
.gallery-filter__btn:hover:not(:disabled) {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.gallery-filter__btn:active:not(:disabled) {
  transform: scale(0.97);
}

.gallery-filter__btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.gallery-filter__btn:disabled {
  color: #64748b;
  background: #f1f5f9;
  border-color: #cbd5e1;
  cursor: not-allowed;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 30, 61, 0.12);
}

.gallery-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-card__img img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(10, 30, 61, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__badge {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  width: fit-content;
}

.gallery-card__overlay p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

.gallery-card__info {
  padding: 16px 20px;
}

.gallery-card__info h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.gallery-card__info span {
  font-size: 12px;
  color: var(--color-muted);
}

.gallery-cta__container {
  text-align: center;
}

.gallery-cta__button {
  gap: 8px;
  margin-top: 24px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 8px;
  text-decoration: none;
}

.gallery-cta__button:hover {
  background: #2563eb;
}

.policy-section {
  padding: 80px 0;
}

.policy-container {
  max-width: 800px;
}

.policy-head {
  margin-bottom: 40px;
}

.policy-content {
  padding: 40px;
  font-size: 15px;
  line-height: 1.8;
  color: #444444;
  background: #f8f9fa;
  border-radius: 12px;
}

.policy-content h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #111111;
}

.policy-content p {
  margin: 0 0 24px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}
