/* --- Global Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #040c17;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Background satin/metallic sheen with radial light source --- */
body {
  background: 
    radial-gradient(circle at 12% 18%, rgba(28, 56, 96, 0.28) 0%, rgba(4, 12, 23, 0) 55%),
    radial-gradient(circle at 60% 50%, rgba(20, 42, 72, 0.18) 0%, rgba(4, 12, 23, 0) 65%),
    linear-gradient(115deg, #030811 0%, #061122 25%, #0e223d 44%, #142e54 49%, #0e223d 54%, #061122 75%, #02060b 100%);
  position: relative;
}

/* Gray-blue background transition layer for Section 3 (Contact) */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; /* Behind the grid container (z-index: 1) */
  background: 
    radial-gradient(circle at 12% 18%, rgba(65, 80, 100, 0.25) 0%, rgba(20, 24, 30, 0) 55%),
    radial-gradient(circle at 60% 50%, rgba(55, 68, 85, 0.15) 0%, rgba(20, 24, 30, 0) 65%),
    linear-gradient(115deg, #0b0e14 0%, #151a22 25%, #252e3b 44%, #2e3b4d 49%, #252e3b 54%, #151a22 75%, #0b0e14 100%);
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

body.active-contact-section::after {
  opacity: 1;
}

/* --- 24-Column Grid Background Panel Overlay (Fixed) --- */
.grid-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.028);
}

.grid-panel {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.028);
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle premium interactive response when user sweeps cursor across columns */
.grid-panel:hover,
.grid-panel.js-hover {
  background-color: rgba(255, 255, 255, 0.012);
  transition: background-color 0.1s ease;
}

/* --- Scroll Container (Snap Enabled) --- */
.scroll-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  position: relative;
  z-index: 2;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.page-section {
  scroll-snap-align: start;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* --- Content Layer Layout --- */
.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 6.5vh 4.166vw 6vh 4.166vw; /* Exact 1-column margin left and right (100/24 = 4.166) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* --- Header Section --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.08);
  color: #ffffff;
}

.copyright-info {
  text-align: right;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  font-weight: 400;
}

.company-name {
  margin-bottom: 2px;
}

.rights-text {
  opacity: 0.9;
}

/* --- Hero Typography Section (Section 1) --- */
.hero-section {
  display: grid;
  grid-template-columns: repeat(22, 1fr); /* Matching the internal 22 columns */
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 5vh;
}

.hero-title {
  grid-column: 1 / 14;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #ffffff;
  user-select: none;
  white-space: nowrap;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.hero-description {
  grid-column: 15 / 23;
  font-size: clamp(1.2rem, 2.1vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.015em;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  transition-delay: 0.15s;
}

.hero-description p {
  margin-bottom: 4px;
}

.hero-description p:last-child {
  margin-bottom: 0;
}

.active .hero-title,
.active .hero-description {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer Logo Bar (Section 1) --- */
.footer {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  align-items: center;
  width: 100%;
  
  /* Entrance animation */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  transition-delay: 0.3s;
}

.active .footer {
  opacity: 1;
  transform: translateY(0);
}

.footer-label {
  grid-column: 1 / span 4;
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: default;
  transition: color 0.3s ease, opacity 0.3s ease;
  user-select: none;
}

.partner-logo:hover {
  color: #ffffff;
}

.partner-logo.sequoia {
  grid-column: 5 / span 2;
  justify-self: center;
  font-weight: 800;
  font-size: clamp(0.8rem, 1vw, 1.05rem);
  letter-spacing: 0.08em;
  gap: 5px;
}

.sequoia-tree {
  width: 12px;
  height: 12px;
  opacity: 0.85;
}

.partner-logo.carlyle {
  grid-column: 7 / span 3;
  justify-self: center;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 10px;
  transition: border-color 0.3s ease;
}

.partner-logo.carlyle:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.partner-logo.kkr {
  grid-column: 10 / span 2;
  justify-self: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  letter-spacing: -0.01em;
}

.partner-logo.temasek {
  grid-column: 12 / span 3;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.temasek-title {
  font-weight: 800;
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  letter-spacing: 0.05em;
}

.temasek-sub {
  font-weight: 300;
  font-size: clamp(0.42rem, 0.5vw, 0.52rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.partner-logo.blackrock {
  grid-column: 15 / span 3;
  justify-self: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 900;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  letter-spacing: -0.03em;
}

.partner-logo.blackrock .trademark {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 400;
  margin-left: 1px;
}

/* --- Detail Typography Layout (Section 2) --- */
.about-body {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 5vh;
}

.about-hero {
  grid-column: 1 / 20;
  font-size: clamp(1.6rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  
  /* Reveal transition */
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.5s ease;
}

.about-hero .highlight {
  color: rgba(255, 255, 255, 0.4);
}

.active .about-hero {
  opacity: 1;
  transform: translateY(0);
}

/* --- Detail Cards Layout (Section 2) --- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  width: 100%;
}

.card {
  border-left: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.8vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  /* Slide Up transition */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease, border-color 0.4s ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.card-title {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.card-text {
  font-size: clamp(0.8rem, 1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.card:hover .card-text {
  color: rgba(255, 255, 255, 0.85);
}

.card-1 {
  grid-column: 1 / span 6;
  transition-delay: 0.35s;
}

.card-2 {
  grid-column: 8 / span 6;
  transition-delay: 0.5s;
}

.card-3 {
  grid-column: 15 / span 6;
  transition-delay: 0.65s;
}

.active .card {
  opacity: 1;
  transform: translateY(0);
}

/* --- Watermark Logo Background (Section 2) --- */
.about-watermark {
  position: absolute;
  right: -8vw;
  top: 5vh;
  width: 60vw;
  height: 90vh;
  z-index: 1;
  color: rgba(255, 255, 255, 0.012);
  pointer-events: none;
  
  /* Zoom & Spin Entrance */
  transform: scale(0.82) rotate(-10deg);
  opacity: 0;
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.2s ease;
}

.about-watermark svg {
  width: 100%;
  height: 100%;
}

.active .about-watermark {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* --- Sectors Timeline Section (Section 3) --- */
.sectors-hero {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  align-items: flex-end;
  margin-top: 2vh;
  margin-bottom: 4vh;
}

.sectors-title {
  grid-column: 1 / 13;
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #ffffff;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.sectors-lead {
  grid-column: 15 / 23;
  font-size: clamp(1.1rem, 1.8vw, 1.9rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.015em;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  transition-delay: 0.15s;
}

.active .sectors-title,
.active .sectors-lead {
  opacity: 1;
  transform: translateY(0);
}

.timeline-container {
  position: relative;
  width: 100%;
  height: 50vh;
  margin-top: auto;
  margin-bottom: auto;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active .timeline-line {
  transform: translateY(-50%) scaleX(1);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  grid-template-rows: 1fr 1fr;
  height: 100%;
  position: relative;
}

.timeline-block {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.6vw;
  transition: border-color 0.4s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
  opacity: 0;
}

.timeline-block:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

/* Row alignments to position cards above/below centerline and have borders touch the line */
.timeline-grid .block-1,
.timeline-grid .block-3 {
  grid-row: 1;
  align-self: end;
  padding-bottom: 2.5vh; /* vertical line length below text to centerline */
  transform: translateY(-35px);
}

.timeline-grid .block-2,
.timeline-grid .block-4 {
  grid-row: 2;
  align-self: start;
  padding-top: 2.5vh; /* vertical line length above text from centerline */
  transform: translateY(35px);
}

/* Staggered grid column positions to match background grid with 1-col gaps */
.timeline-grid .block-1 {
  grid-column: 1 / span 5;
}

.timeline-grid .block-2 {
  grid-column: 7 / span 5;
}

.timeline-grid .block-3 {
  grid-column: 13 / span 5;
}

.timeline-grid .block-4 {
  grid-column: 19 / span 4;
}

/* Active animation state triggers */
.active .timeline-block {
  opacity: 1;
  transform: translateY(0);
}

.active .block-1 { transition-delay: 0.3s; }
.active .block-2 { transition-delay: 0.5s; }
.active .block-3 { transition-delay: 0.7s; }
.active .block-4 { transition-delay: 0.9s; }

.block-header {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.block-number {
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  font-weight: 300;
  line-height: 0.8;
  color: #ffffff;
}

.block-title {
  font-size: clamp(0.95rem, 1.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.block-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.75rem;
}

.block-subtitle {
  display: block;
  font-size: clamp(0.85rem, 1vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.block-details {
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.timeline-block:hover .block-subtitle {
  color: #ffffff;
}

.timeline-block:hover .block-details {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Contact Grid Layout (Section 3) --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 5vh;
  position: relative;
  z-index: 2;
}

.contact-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-column.col-1 {
  grid-column: 1 / span 6;
}

.contact-column.col-2 {
  grid-column: 8 / span 6;
}

.contact-column.col-3 {
  grid-column: 15 / span 6;
}

.contact-title {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 5vh;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
}

.contact-lead-text {
  font-size: clamp(1.2rem, 2.1vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.015em;
  margin-bottom: 5vh;
  
  /* Slide Up animation */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
}

.col-2 .contact-lead-text {
  transition-delay: 0.15s;
}

.col-3 .contact-lead-text {
  transition-delay: 0.3s;
}

.active .contact-title,
.active .contact-lead-text {
  opacity: 1;
  transform: translateY(0);
}

/* --- Contact Info Cards (Section 3) --- */
.contact-card {
  border-left: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.8vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  /* Slide Up transition */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease, border-color 0.4s ease;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.col-1 .contact-card {
  transition-delay: 0.45s;
}

.col-2 .contact-card {
  transition-delay: 0.6s;
}

.col-3 .contact-card:first-of-type {
  transition-delay: 0.75s;
}

.col-3 .contact-card.margin-top-card {
  margin-top: 1.8rem;
  transition-delay: 0.9s;
}

.active .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.card-label {
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.person-name {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  color: #ffffff;
}

.person-role {
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
}

.card-value {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 400;
  color: #ffffff;
}

.card-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  transition: border-color 0.3s ease;
}

.card-value a:hover {
  border-bottom-color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }

  .scroll-container {
    scroll-snap-type: none; /* Disable scroll snapping on mobile for natural momentum */
    overflow-y: visible;
    height: auto;
  }
  
  /* Prevent elements from remaining invisible/untriggered during free scroll on mobile */
  .hero-title,
  .hero-description,
  .footer,
  .about-hero,
  .card,
  .sectors-title,
  .sectors-lead,
  .timeline-block,
  .contact-title,
  .contact-lead-text,
  .contact-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .about-watermark {
    opacity: 0.15 !important; /* give watermark a subtle visible opacity on mobile */
    transform: none !important;
  }
  
  .page-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 8vh;
  }

  .content-wrapper {
    height: auto;
    min-height: 100vh;
    gap: 8vh;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    gap: 4vh;
  }
  .hero-title {
    grid-column: 1 / -1;
    white-space: normal;
  }
  .hero-description {
    grid-column: 1 / -1;
  }
  
  .footer {
    display: flex;
    flex-wrap: wrap;
    gap: 4vh 4vw;
  }
  
  .partner-logo {
    justify-self: flex-start !important;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-column: 1 / -1;
  }

  .about-cards {
    display: flex;
    flex-direction: column;
    gap: 4vh;
  }

  .card {
    padding-left: 4vw;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
  }
  
  .about-watermark {
    width: 90vw;
    right: -10vw;
    top: 25vh;
  }

  /* Timeline mobile adjustments */
  .sectors-hero {
    grid-template-columns: 1fr;
    gap: 2vh;
    margin-top: 4vh;
    margin-bottom: 4vh;
  }

  .sectors-title {
    grid-column: 1 / -1;
  }

  .sectors-lead {
    grid-column: 1 / -1;
  }

  .timeline-container {
    height: auto;
    margin-top: 4vh;
    margin-bottom: 0;
  }
  
  .timeline-line {
    display: none; /* Hide centerline on mobile */
  }
  
  .timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    height: auto;
  }
  
  .timeline-block {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    padding-left: 5vw !important;
    border-left: 2px solid rgba(255, 255, 255, 0.15) !important;
  }
  
  .block-header {
    gap: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .block-number {
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 6vh;
    margin-top: 6vh;
  }
  
  .contact-column {
    justify-content: flex-start;
  }
  
  .contact-card {
    padding-left: 4vw;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 4vh 6vw;
  }
  
  .grid-container {
    grid-template-columns: repeat(12, 1fr); /* Simpler grid on tablets/mobile */
  }
  
  .header {
    align-items: center;
  }
  
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vh;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 5vh 5vw 4vh 5vw;
    gap: 5vh;
  }
  
  .page-section {
    padding-bottom: 5vh;
  }

  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .copyright-info {
    text-align: right;
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .about-hero {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .about-cards {
    gap: 3vh;
  }

  .card {
    padding-left: 5vw;
  }

  .sectors-title {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .sectors-lead {
    font-size: 1rem;
    line-height: 1.35;
  }

  .timeline-grid {
    gap: 3.5vh;
  }

  .timeline-block {
    padding-left: 6vw !important;
  }

  .block-number {
    font-size: 2.2rem;
  }

  .block-title {
    font-size: 1.05rem;
  }

  .contact-title {
    font-size: 1.55rem;
    margin-bottom: 2.5vh;
  }

  .contact-lead-text {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 2.5vh;
  }

  .contact-card {
    padding-left: 5vw;
  }

  .contact-card.margin-top-card {
    margin-top: 1.2rem;
  }
  
  .card-value {
    font-size: 0.95rem;
  }
}
