/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --color-ink: #0c1e2e;
  --color-navy: #0e2a3f;
  --color-navy-deep: #0a1d2c;
  --color-primary: #ed690e;
  --color-primary-dark: #ea580e;
  --color-body: #4a5560;
  --color-muted: #7a8792;
  --color-border: #e6e9ec;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f6f8;
  --color-bg-soft-2: #eef1f3;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 2px 10px rgba(12, 30, 46, 0.06);
  --shadow-card-hover: 0 14px 30px rgba(12, 30, 46, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.container-xl {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

img {
  max-width: 100%;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 28px;
}

.section-lead {
  max-width: 720px;
  font-size: 15px;
  color: var(--color-body);
  margin: -14px 0 32px;
}

.section-lead--tight {
  margin: 8px 0 0;
  max-width: 560px;
}

/* ==========================================================================
   Header Layout
   ========================================================================== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s var(--ease);
  width: 100%;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(12, 30, 46, 0.08);
}

.site-header__top {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 0;
  /* Align brand logo with the left edge of container */
}

/* ==========================================================================
   Brand Logo
   ========================================================================== */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}

.brand .logo {
  max-width: 200px
}

.brand:hover {
  background: var(--color-primary-dark);
}

.brand__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  line-height: 1;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: inline-block;
}

/* ==========================================================================
   Pill Search Bar
   ========================================================================== */
.topbar__search {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 480px;
  background: #f2f4f6;
  border-radius: 99px;
  padding: 10px 24px;
  margin: 0 40px;
  position: relative;
  transition: box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}

.topbar__search:focus-within {
  background: #ebedf0;
  box-shadow: 0 0 0 3px rgba(15, 94, 168, 0.1);
}

.topbar__search input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-ink);
  font-size: 14px;
  padding: 0 24px 0 0;
  outline: none;
}

.topbar__search input::placeholder {
  color: #8c9ba5;
  font-weight: 400;
}

.topbar__search-clear {
  background: none;
  border: none;
  color: #8c9ba5;
  font-size: 13px;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s var(--ease);
}

.topbar__search-clear:hover {
  color: var(--color-ink);
}

/* Mobile search toggle (hidden on desktop) */
.topbar__search-toggle {
  background: none;
  border: none;
  color: var(--color-ink);
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}

.topbar__search-toggle:hover {
  background: var(--color-bg-soft);
}

/* ==========================================================================
   Action Buttons (EN, Login)
   ========================================================================== */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.site-header__action:hover {
  opacity: 0.8;
}

.site-header__action .action-icon {
  font-size: 20px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__action--lang .action-icon {
  color: var(--color-primary);
  /* Blue language icon matching image */
}

.site-header__action--login .action-icon {
  color: var(--color-ink);
  /* Standard dark person icon */
}

.site-header__action .action-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 4px;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

/* ==========================================================================
   Bottom Navigation Row
   ========================================================================== */
.site-header__bottom {
  background: #f5f6f8;
  /* Light-grey background */
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  display: flex;
  align-items: center;
}

.site-header__bottom-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-nav {
  height: 100%;
}

.main-nav__list {
  display: flex;
  gap: 34px;
  height: 100%;
  align-items: center;
}

.main-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  padding: 18px 0;
  position: relative;
  transition: color 0.2s var(--ease);
  display: block;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  /* Align with bottom border of the bottom row */
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav__link:hover,
.main-nav__link.active {
  color: var(--color-primary);
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  transform: scaleX(1);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--color-bg-soft);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 30, 0.5) 0%, rgba(10, 20, 30, 0.25) 45%, rgba(10, 20, 30, 0.7) 100%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 80px;
  color: #fff;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: #ed690e;
  /* Corporate blue */
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-hero:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.hero__footer {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.hero__badge {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
  padding-left: max(32px, calc((100vw - var(--container-max)) / 2 + 32px));
}

.hero__personas-block {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 24px 32px;
  padding-right: max(32px, calc((100vw - var(--container-max)) / 2 + 32px));
}

.hero__persona {
  color: #0c1e2e;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s var(--ease);
}

.hero__persona:hover {
  color: var(--color-primary);
}

.hero__persona-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f2f5;
  color: #0c1e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero__persona:hover .hero__persona-arrow {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateX(2px);
}

/* ==========================================================================
   Section spacing rhythm
   ========================================================================== */
.configurator-section,
.category-section,
.systems-section,
.projects-types-section,
.reference-section,
.solutions-section,
.help-section {
  padding: 72px 0;
}

.category-section,
.solutions-section {
  background: var(--color-bg-soft);
}

.systems-section {
  background: var(--color-bg-soft-2);
}

/* ==========================================================================
   Configurator cards
   ========================================================================== */
.configurator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.configurator-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 26px 30px;
  min-height: 130px;
  position: relative;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.configurator-card--ghost {
  background: var(--color-bg-soft);
  border-color: transparent;
}

.configurator-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.configurator-card__eyebrow {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

.configurator-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-ink);
  max-width: 85%;
}

.configurator-card__icon {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  font-size: 13px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.configurator-card:hover .configurator-card__icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   Category section
   ========================================================================== */
.category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.category-sidebar ul {
  border-top: 1px solid var(--color-border);
}

.category-sidebar li {
  padding: 13px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.category-sidebar li:hover,
.category-sidebar li.active {
  color: var(--color-primary);
  font-weight: 700;
}

.category-sidebar li i {
  font-size: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.category-card__img {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.category-card__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-ink);
}

.category-card--more {
  align-items: center;
  justify-content: center;
  min-height: 148px;
  background: var(--color-bg-soft);
  border-style: dashed;
}

.category-card__more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ==========================================================================
   Systems section
   ========================================================================== */
.systems-subtitle {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.system-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.system-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.system-card__img {
  height: 130px;
  overflow: hidden;
}

.system-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.system-card:hover .system-card__img img {
  transform: scale(1.06);
}

.system-card__title {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.system-card--all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px dashed var(--color-border);
}

.system-card--all span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Further project types
   ========================================================================== */
.project-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-type-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-type-card__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
}

.project-type-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

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

.project-type-card__eyebrow {
  font-size: 12.5px;
  color: var(--color-muted);
}

.project-type-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-type-card__title i {
  font-size: 14px;
  transition: transform 0.2s var(--ease);
  color: var(--color-primary);
}

.project-type-card:hover .project-type-card__title i {
  transform: translateX(4px);
}

/* ==========================================================================
   Reference projects
   ========================================================================== */
.reference-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 999px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-primary-pill:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.reference-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reference-card__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}

.reference-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

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

.reference-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
}

/* ==========================================================================
   Our railing solutions (slider)
   ========================================================================== */
.solutions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.solutions-nav {
  display: flex;
  gap: 10px;
}

.solutions-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.solutions-nav__btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.solutions-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: hidden;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-card__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 230px;
}

.solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
}

.solution-card__desc {
  font-size: 13.5px;
  color: var(--color-muted);
}

.solutions-progress {
  margin-top: 30px;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.solutions-progress span {
  display: block;
  height: 100%;
  width: 33.33%;
  background: var(--color-primary);
  transition: width 0.3s var(--ease);
}

/* ==========================================================================
   Need Help
   ========================================================================== */
.help-card {
  background: var(--color-bg-soft-2);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.help-card__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.help-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-card__body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 6px;
}

.help-card__body p {
  font-size: 14px;
  color: var(--color-body);
  margin: 0;
  max-width: 420px;
}

.help-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-card__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-card__contact-label {
  font-size: 12px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-card__contact a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-ink);
  transition: color 0.2s var(--ease);
}

.help-card__contact a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-section {
  padding: 80px 0;
  text-align: center;
  background: var(--color-bg-soft-2);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 10px;
}

.newsletter-lead {
  font-size: 14.5px;
  margin: 0 0 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
}

.newsletter-disclaimer {
  max-width: 480px;
  margin: 0 auto;
  font-size: 11.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.brand--footer .brand__mark {
  border-color: #fff;
  color: #fff;
}

.brand--footer .brand__name {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.4fr;
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4,
.footer-col--office h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col--office address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.footer-col--office p {
  font-size: 14px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-region {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.footer-region:hover {
  border-color: #fff;
}

.footer-region__sep {
  opacity: 0.5;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12.5px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
  color: #fff;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  margin-bottom: 30px;
}

.about-main-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 580px;
  transition: transform 0.6s var(--ease);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--color-primary-dark);
  transition: transform 0.4s var(--ease);
}

.about-image-wrapper:hover .about-badge {
  transform: translateY(-8px);
}

.about-badge-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
}

.about-badge-text {
  display: flex;
  flex-direction: column;
}

.about-badge-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-badge-label {
  font-size: 15px;
  color: var(--color-muted);
  font-weight: 500;
  margin-top: 2px;
}

.about-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 24px;
}

.about-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.about-description {
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-feature:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(12, 30, 46, 0.08);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.about-feature:hover .about-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-primary-dark);
}

.about-feature-text h4 {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}

.about-feature-text p {
  font-size: 14.5px;
  color: var(--color-body);
  margin: 0;
  line-height: 1.5;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-learn-more:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-badge {
    left: 20px;
    bottom: -20px;
  }

  .about-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .about-main-img {
    height: 400px;
  }

  .about-badge {
    padding: 16px 20px;
  }

  .about-badge-value {
    font-size: 24px;
  }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background: var(--color-bg-soft);
}

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

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.gallery-card__img {
  height: 280px;
  width: 100%;
}

.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}

.gallery-card:hover .gallery-card__img img {
  transform: scale(1.08);
  opacity: 0.6;
}

.gallery-card__caption {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

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

.gallery-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.gallery-card:hover .gallery-card__title {
  transform: translateY(0);
}

.gallery-card__icon {
  font-size: 20px;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease) 0.05s;
}

.gallery-card:hover .gallery-card__icon {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card__img {
    height: 240px;
  }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease);
}

.gallery-lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 96px 0;
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.testimonials-nav {
  display: flex;
  gap: 12px;
}

.testimonials-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 8px rgba(12, 30, 46, 0.04);
}

.testimonials-nav__btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 94, 168, 0.25);
}

.testimonials-nav__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(230, 233, 236, 0.8);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(15, 94, 168, 0.2);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-card__quote-icon {
  font-size: 28px;
  color: rgba(15, 94, 168, 0.15);
  line-height: 1;
}

.testimonial-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-ink);
  margin-bottom: 28px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 2px;
}

.testimonials-progress {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-top: 36px;
  overflow: hidden;
  position: relative;
}

.testimonials-progress span {
  display: block;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  width: 33.333%;
  transition: width 0.4s var(--ease);
}