:root {
  --primary: #0B1F3A;
  --primary-light: #123C69;
  --accent: #C9A227;
  --background: #F7F9FC;
  --white: #FFFFFF;
  --text: #172033;
  --muted: #667085;
  --border: #E5E7EB;
  --shadow-soft: 0 24px 60px rgba(11, 31, 58, 0.08);
  --shadow-strong: 0 28px 80px rgba(11, 31, 58, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1280px;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  padding: 0.95rem 1rem;
}

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

input:focus,
select:focus,
textarea:focus,
a:focus,
button:focus,
summary:focus {
  outline: 3px solid rgba(18, 60, 105, 0.22);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.03), rgba(11, 31, 58, 0));
}

.section.dark {
  background: linear-gradient(135deg, #071527, #0B1F3A 55%, #123C69);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #e6c968);
  color: #081422;
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(11, 31, 58, 0.16);
}

.section.dark .button-secondary,
.hero-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--primary-light);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.utility-bar {
  background: #071527;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.utility-brand {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.utility-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  justify-content: flex-end;
}

.nav-shell {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand-text {
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
}

.nav-toggle,
.nav-button {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
  margin: 0;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.menu > li > a:hover,
.menu > li:hover > a,
.menu > li > a:focus {
  background: rgba(11, 31, 58, 0.06);
  color: var(--primary-light);
}

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 240px;
  padding: 0.75rem;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.dropdown a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  color: var(--muted);
}

.dropdown a:hover,
.dropdown a:focus {
  background: rgba(11, 31, 58, 0.05);
  color: var(--primary);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-home .nav-home,
.page-about .nav-about,
.page-loans .nav-loans,
.page-investments .nav-investments,
.page-bank .nav-bank,
.page-investor .nav-investor,
.page-contact .nav-contact {
  background: rgba(11, 31, 58, 0.08);
  color: var(--primary);
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #071527;
}

.hero-slider > input {
  position: absolute;
  opacity: 0;
}

.slides {
  position: relative;
  min-height: 680px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 21, 39, 0.9), rgba(7, 21, 39, 0.72) 46%, rgba(7, 21, 39, 0.48)),
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.18), transparent 28%);
}

.slide-content {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: min(720px, calc(100% - 2rem));
  margin: 0;
  margin-left: max(calc((100vw - var(--container)) / 2), 1rem);
  padding: 2rem 2.25rem;
  background: rgba(7, 21, 39, 0.5);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(7, 21, 39, 0.2);
  color: var(--white);
}

.slide-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@keyframes hero-slide-1 {
  0%, 30% {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  33%, 97% {
    opacity: 0;
    transform: scale(1.03);
    z-index: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
}

@keyframes hero-slide-2 {
  0%, 30% {
    opacity: 0;
    transform: scale(1.03);
    z-index: 0;
  }
  33%, 63% {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  66%, 100% {
    opacity: 0;
    transform: scale(1.03);
    z-index: 0;
  }
}

@keyframes hero-slide-3 {
  0%, 63% {
    opacity: 0;
    transform: scale(1.03);
    z-index: 0;
  }
  66%, 97% {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
    z-index: 0;
  }
}

@keyframes hero-dot-1 {
  0%, 30%, 100% {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.12);
  }
  33%, 97% {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

@keyframes hero-dot-2 {
  0%, 30% {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  33%, 63% {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.12);
  }
  66%, 100% {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

@keyframes hero-dot-3 {
  0%, 63% {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  66%, 97% {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.12);
  }
  100% {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

.hero-slider:not(:has(input:checked)) .slide-1 {
  animation: hero-slide-1 18s linear infinite;
}

.hero-slider:not(:has(input:checked)) .slide-2 {
  animation: hero-slide-2 18s linear infinite;
}

.hero-slider:not(:has(input:checked)) .slide-3 {
  animation: hero-slide-3 18s linear infinite;
}

#hero-1:checked ~ .slides .slide-1,
#hero-2:checked ~ .slides .slide-2,
#hero-3:checked ~ .slides .slide-3 {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 21, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.hero-arrow:hover {
  background: rgba(7, 21, 39, 0.8);
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-slider:not(:has(input:checked)) .hero-arrows-default,
#hero-1:checked ~ .hero-arrows-1,
#hero-2:checked ~ .hero-arrows-2,
#hero-3:checked ~ .hero-arrows-3 {
  display: block;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 4;
}

.hero-dots label {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.hero-slider:not(:has(input:checked)) .hero-dots label:nth-child(1) {
  animation: hero-dot-1 18s linear infinite;
}

.hero-slider:not(:has(input:checked)) .hero-dots label:nth-child(2) {
  animation: hero-dot-2 18s linear infinite;
}

.hero-slider:not(:has(input:checked)) .hero-dots label:nth-child(3) {
  animation: hero-dot-3 18s linear infinite;
}

#hero-1:checked ~ .hero-dots label[for="hero-1"],
#hero-2:checked ~ .hero-dots label[for="hero-2"],
#hero-3:checked ~ .hero-dots label[for="hero-3"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12);
}

.hero-slider:has(input:checked) .slide,
.hero-slider:has(input:checked) .hero-dots label {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider:not(:has(input:checked)) .slide,
  .hero-slider:not(:has(input:checked)) .hero-dots label {
    animation: none;
  }

  .hero-slider:not(:has(input:checked)) .slide-1 {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }

  .hero-slider:not(:has(input:checked)) .hero-dots label:nth-child(1) {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.12);
  }
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.panel,
.card,
.timeline-item,
.stat-card,
.feature-box,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.card,
.feature-box,
.timeline-item,
.contact-card,
.panel {
  padding: 1.8rem;
}

.card {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover,
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(11, 31, 58, 0.06);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.icon-chip {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.media-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 39, 0.12));
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.instrument-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.instrument-tags span {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.investment-grid .stat-card {
  padding: 1.4rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.investment-grid h3,
.investment-grid p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 0.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.5rem;
  align-items: center;
}

.timeline-item > div:last-child {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.timeline-text {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 344px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 21, 39, 0.9), rgba(7, 21, 39, 0.74), rgba(7, 21, 39, 0.48)),
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 26%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 6.4rem 0 4.8rem;
  color: var(--white);
}

.page-summary {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.content-stack {
  display: grid;
  gap: 1.5rem;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(18, 60, 105, 0.94));
  color: var(--white);
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.cta-banner p,
.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 4.8rem 0 3rem;
}

.site-footer {
  background: #071527;
  color: var(--white);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.3rem;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
  max-width: 100%;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer p,
.footer-links,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter-title {
  margin-bottom: 0.9rem;
}

.newsletter form {
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom-links a {
  font-size: 0.85rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs span::after {
  content: "/";
  margin-left: 0.55rem;
  color: rgba(102, 112, 133, 0.6);
}

.breadcrumbs span:last-child::after {
  display: none;
}

.two-column-list {
  columns: 2;
  column-gap: 2rem;
}

.quote-panel {
  position: relative;
  padding-left: 1.5rem;
}

.chairman-split {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: start;
}

.chairman-media-card {
  min-height: 520px;
}

.chairman-media-card::after {
  background: linear-gradient(180deg, transparent 38%, rgba(7, 21, 39, 0.2) 100%);
}

.chairman-identity-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 21, 39, 0.78), rgba(7, 21, 39, 0.94));
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 18px 36px rgba(7, 21, 39, 0.28);
}

.chairman-identity-overlay .eyebrow {
  margin-bottom: 0.35rem;
}

.chairman-identity-overlay h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1.4rem;
}

.chairman-identity-overlay p:last-child {
  margin-bottom: 0;
  color: rgba(243, 247, 251, 0.86);
}

.quote-panel::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-size: 4rem;
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
}

details.feature-box summary {
  list-style: none;
  cursor: pointer;
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

details.feature-box[open] {
  box-shadow: var(--shadow-strong);
}

details.feature-box p {
  margin-top: 1rem;
}

@media (max-width: 1120px) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .investment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .utility-inner,
  .footer-bottom-inner,
  .nav-inner,
  .site-nav {
    flex-wrap: wrap;
  }

  .nav-button {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(11, 31, 58, 0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 1rem;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
  }

  .menu > li > a {
    padding-inline: 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(11, 31, 58, 0.03);
    margin-top: 0.4rem;
    padding: 0.5rem;
    display: grid;
    gap: 0.25rem;
  }

  .split,
  .contact-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .investment-grid,
  .footer-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    columns: 1;
  }

  .hero-slider,
  .slides {
    min-height: 600px;
  }

  .slide-content {
    margin-left: 1rem;
    padding: 7rem 0 8rem;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .section {
    padding: 4.4rem 0;
  }

  .utility-meta {
    justify-content: flex-start;
  }

  .hero-slider,
  .slides {
    min-height: 560px;
  }

  .hero-dots {
    bottom: 1.4rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .hero-arrow-prev {
    left: 0.8rem;
  }

  .hero-arrow-next {
    right: 0.8rem;
  }

  .card,
  .feature-box,
  .timeline-item,
  .contact-card,
  .panel {
    padding: 1.35rem;
  }

  .media-card {
    min-height: 320px;
  }

  .chairman-media-card {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
