/* ==========================================================================
   Andrew Nangoy - 3-Page Editorial Magazine Theme
   ========================================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9fb;
  --bg-card: #ffffff;
  --text-dark: #111215;
  --text-body: #3c4049;
  --text-muted: #7b8190;
  --text-light-gray: #a6abb7;
  --border-subtle: #e6e8ec;
  --border-hover: #111215;
  --accent-gold: #c59b27;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #d0d4dc;
  border-radius: 3px;
}

/* ==========================================================================
   RIGHT CORNER / EDGE VERTICAL PAGE INDICATOR (COMPACT & UNINTRUSIVE)
   ========================================================================== */
.corner-pagination {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  z-index: 100;
}

.page-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.indicator-num {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
}

.indicator-bar {
  width: 12px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 1px;
  transition: width 0.3s var(--easing);
}

.page-indicator:hover,
.page-indicator.active {
  opacity: 1;
  transform: translateX(-3px);
}

.page-indicator:hover .indicator-bar,
.page-indicator.active .indicator-bar {
  width: 24px;
}

/* ==========================================================================
   SLIDE / PRESENTATION CONTAINER (FULL SCREEN EDGE-TO-EDGE)
   ========================================================================== */
.slides-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.slide {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ==========================================================================
   PAGE 01: EDITORIAL SPLIT GRID (PHOTO LEFT, ARTICLE RIGHT)
   ========================================================================== */
.editorial-grid {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
}

/* Left Photo Column (100% Full Bleed, Perfectly Centered) */
.editorial-photo-column {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f2f2f4;
}

.photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.editorial-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(104%) brightness(101%);
  transition: transform 0.8s var(--easing);
}

.photo-wrapper:hover .editorial-portrait-img {
  transform: scale(1.02);
}

/* Right Content Column */
.editorial-content-column {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3.5rem 5.5rem 3.5rem 4.5rem;
  overflow-y: auto;
  background-color: var(--bg-primary);
}

.article-scroll-wrapper {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

/* Kicker Name Box */
.article-kicker-box {
  margin-bottom: 0.8rem;
}

.kicker-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* Main Headline */
.article-headline {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* Article Lead Paragraph */
.article-lead {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.editorial-inline-link {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.editorial-inline-link:hover {
  opacity: 0.7;
}

/* Body Text */
.article-body {
  font-size: 0.94rem;
  line-height: 1.85;
  color: #4b515d;
  margin-bottom: 1.1rem;
}

/* Editorial Pullquote (Italic Callout Quote) */
.editorial-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 1.2rem 0 1.4rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--text-dark);
}

/* Brand Signature Logo Box */
.brand-signature-box {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s var(--easing), opacity 0.3s ease;
}

.brand-logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

.boostech-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: contrast(120%);
}

/* ==========================================================================
   PAGE 02: BEYOND THE CODE (IMAGE 1 TECH-CARD INSPIRED LAYOUT)
   ========================================================================== */
.editorial-fullpage-view {
  width: 100%;
  max-width: 1240px;
  height: 100vh;
  margin: 0 auto;
  padding: 3.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-top-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.2rem auto;
}

.page-main-headline {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.page-main-subtext {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* 4 Tall Tech / Architecture Cards Grid */
.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid #dbe0e8;
  border-radius: 8px;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--easing), box-shadow 0.3s ease;
}

.tech-card:hover {
  border-color: var(--text-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.tech-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.tech-card-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* 3x3 Dot Matrix Icon */
.dot-matrix-icon {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 2.5px;
  margin-top: 2px;
}

.dot-matrix-icon span {
  width: 3px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 50%;
  display: block;
}

.tech-card-body {
  margin-bottom: 0.75rem;
}

.tech-card-subtitle {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.tech-card-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* Technical Blueprint Wireframe Illustration */
.tech-card-graphic {
  background: #fafbfc;
  border: 1px solid #ebedf2;
  border-radius: 4px;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0.75rem;
  min-height: 95px;
}

.blueprint-svg {
  width: 100%;
  height: auto;
  max-height: 90px;
}

.tech-card-footer {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-top: 1px solid #edf0f5;
  padding-top: 0.55rem;
}

/* ==========================================================================
   PAGE 03: THE JOURNEY (CAREER TIMELINE) & KONTAK SAYA
   ========================================================================== */
.editorial-page-container.journey-contact-container {
  width: 100%;
  max-width: 1240px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4.5rem;
  position: relative;
  z-index: 2;
}

.section-header-compact {
  margin-bottom: 2rem;
  max-width: 780px;
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE 03: CONNECTED TIMELINE STEPPER & DELIVERED PRODUCTS
   ========================================================================== */
.timeline-stepper-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  width: 100%;
  margin-bottom: 2rem;
}

.timeline-track-line {
  position: absolute;
  top: 11px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #e2e5eb;
  z-index: 1;
}

.timeline-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #111215;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.step-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111215;
}

.timeline-step-node.active-step .step-dot {
  background: #111215;
}

.timeline-step-node.active-step .step-dot span {
  background: #ffffff;
}

.step-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 1.1rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s var(--easing);
}

.timeline-step-node:hover .step-content {
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.step-period {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.step-period.highlight {
  color: var(--text-dark);
  background: #e8eaef;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

.step-company {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.step-role {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-body);
}

/* Dedicated Delivered Products Showcase */
.delivered-products-section {
  margin-top: 0.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.products-section-header {
  margin-bottom: 0.8rem;
}

.products-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.delivered-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.delivered-product-card {
  background: #ffffff;
  border: 1px solid #dbe0e8;
  border-radius: 6px;
  padding: 1.15rem 1.1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s var(--easing), box-shadow 0.3s ease;
}

.delivered-product-card:hover {
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-ext-icon {
  width: 15px;
  height: 15px;
  stroke: var(--text-muted);
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.delivered-product-card:hover .product-ext-icon {
  stroke: var(--text-dark);
  transform: translate(2px, -2px);
}

.product-tagline {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.product-domain {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   PAGE 04: CONTACT (CLEAN EDITORIAL CONTACT CARDS - ELEGANT GRAY CLOSING)
   ========================================================================== */
#slide-4 {
  background-color: #e8ecf3;
  position: relative;
  border-top: 1px solid #d6dce7;
}

.editorial-page-container.contact-clean-container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  position: relative;
  z-index: 2;
}

.contact-header-center {
  margin-bottom: 2.8rem;
  text-align: left;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid #d5dce8;
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  box-shadow: 0 6px 20px rgba(17, 18, 21, 0.05);
  transition: transform 0.25s var(--easing), border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--text-dark);
  box-shadow: 0 16px 36px rgba(17, 18, 21, 0.12);
}

.contact-card-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8ecf3;
  border: 1px solid #d5dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-card-box:hover .contact-card-icon-circle {
  background: #111215;
  border-color: #111215;
  transform: scale(1.05);
}

.contact-card-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: #111215;
  transition: stroke 0.2s ease;
}

.contact-card-box:hover .contact-card-icon-circle svg {
  stroke: #ffffff;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.contact-card-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.contact-card-email-link {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.contact-card-email-link:hover {
  text-decoration: underline;
  color: #000000;
}

.contact-card-action {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.3rem;
  transition: color 0.2s ease;
}

.contact-card-box:hover .contact-card-action {
  color: var(--text-dark);
}

.contact-card-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.contact-footer-signature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.5rem;
  border-top: 1px solid #dbe0eb;
  width: 100%;
}

/* ==========================================================================
   ANIMATIONS & SLIDE TRANSITIONS
   ========================================================================== */
.slide .photo-wrapper,
.slide .article-scroll-wrapper,
.slide .editorial-fullpage-view,
.slide .journey-contact-container,
.slide .contact-clean-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

.slide.active .photo-wrapper,
.slide.active .editorial-fullpage-view,
.slide.active .journey-contact-container,
.slide.active .contact-clean-container {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.slide.active .article-scroll-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE COMPLETE FIX)
   ========================================================================== */
@media (max-width: 1024px) {
  html, body {
    height: auto;
    min-height: 100vh;
    scroll-snap-type: none;
    overflow-y: auto;
  }

  /* Floating Mini Stepper on Tablet & Mobile */
  .corner-pagination {
    display: flex !important;
    position: fixed;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 0.55rem 0.4rem;
    gap: 0.7rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .page-indicator {
    padding: 2px 0;
    opacity: 0.35;
    gap: 0.25rem;
  }

  .indicator-num {
    font-size: 0.64rem;
    font-weight: 700;
  }

  .indicator-bar {
    width: 6px;
    height: 2px;
  }

  .page-indicator.active {
    opacity: 1;
    transform: none;
  }

  .page-indicator.active .indicator-bar {
    width: 14px;
    background-color: var(--text-dark);
  }

  .slides-container {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  /* Force ALL slide animations to be fully visible immediately on tablet/mobile */
  .slide .photo-wrapper,
  .slide .article-scroll-wrapper,
  .slide .editorial-fullpage-view,
  .slide .journey-contact-container,
  .slide .contact-clean-container {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .slide {
    height: auto;
    min-height: 100vh;
    padding: 3.5rem 2rem;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: none;
  }

  #slide-1 {
    padding: 0 !important;
    align-items: stretch;
  }

  .editorial-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .editorial-photo-column {
    width: 100%;
    height: 50vh;
    min-height: 340px;
    max-height: 480px;
    overflow: hidden;
    background-color: #f2f2f4;
  }

  .photo-wrapper {
    width: 100%;
    height: 100%;
    opacity: 1 !important;
  }

  .editorial-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }

  .editorial-content-column {
    width: 100%;
    height: auto;
    padding: 3rem 2.2rem;
    overflow: visible;
  }

  .article-scroll-wrapper {
    max-width: 100%;
    opacity: 1 !important;
  }

  .editorial-fullpage-view,
  .editorial-page-container.journey-contact-container,
  .editorial-page-container.contact-clean-container {
    padding: 2.5rem 1.2rem;
    height: auto;
    max-width: 100%;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .timeline-stepper-container {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 2.5rem;
    gap: 1.4rem;
  }

  .timeline-track-line {
    display: block !important;
    position: absolute;
    top: 14px;
    bottom: 30px;
    left: 11px;
    right: auto;
    width: 2px;
    height: auto;
    background: #d4d8e2;
    z-index: 1;
  }

  .timeline-step-node {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .timeline-step-node .step-dot {
    position: absolute;
    left: -2.5rem;
    top: 12px;
    margin-bottom: 0;
    z-index: 3;
    background: #ffffff;
  }

  .timeline-step-node.active-step .step-dot {
    background: #111215;
  }

  .delivered-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .article-headline,
  .page-main-headline,
  .section-title-serif {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .corner-pagination {
    right: 0.35rem;
    padding: 0.45rem 0.3rem;
    gap: 0.55rem;
  }

  .indicator-num {
    font-size: 0.58rem;
  }

  .indicator-bar {
    width: 5px;
  }

  .page-indicator.active .indicator-bar {
    width: 11px;
  }

  .slide {
    padding: 2.5rem 1.2rem;
  }

  #slide-1 {
    padding: 0 !important;
  }

  .editorial-photo-column {
    height: 45vh;
    min-height: 300px;
  }

  .editorial-content-column {
    padding: 2.2rem 1.2rem;
  }

  .tech-cards-grid,
  .delivered-products-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .timeline-stepper-container {
    padding-left: 2.2rem;
    gap: 1.2rem;
  }

  .timeline-track-line {
    left: 10px;
    top: 14px;
    bottom: 24px;
  }

  .timeline-step-node .step-dot {
    left: -2.2rem;
    top: 10px;
    width: 22px;
    height: 22px;
  }

  .timeline-step-node .step-dot span {
    width: 7px;
    height: 7px;
  }

  .contact-card-box {
    padding: 1.6rem 1.3rem;
  }

  .article-headline,
  .page-main-headline,
  .section-title-serif {
    font-size: 1.95rem;
  }

  .editorial-portrait-img {
    object-position: center 15%;
  }
}
