/* START OUR STORY SECTION STYLE */

#story-section *, #story-section *::before, #story-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens (same brand family as the rest of the site) ── */
#story-section {
  --story-bg: #f7f5fb;
  --story-heading: #2d1b45;
  --story-purple: #4a1a7a;
  --story-accent: #c89fff;
  --story-text: #4a4560;
  --story-muted: #726c87;
  --story-card-bg: #ffffff;
  --story-border: #e6e1f2;
  --story-font-display: 'Playfair Display', Georgia, serif;
  --story-font-body: 'Inter', sans-serif;

  width: 100%;
  max-width: 100%;
  background: var(--story-bg);
  font-family: var(--story-font-body);
  padding: clamp(56px, 8vw, 100px) 24px;
  overflow: hidden;
}

#story-section .story-inner {
  max-width: 880px;
  margin: 0 auto;
  padding-right: 28px;
}

/* ── Header ── */
#story-section .story-header {
  text-align: center;
  margin-bottom: 36px;
}

#story-section .story-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--story-purple);
  margin-bottom: 12px;
}

#story-section .story-title {
  font-family: var(--story-font-display);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  color: var(--story-heading);
}

/* Running-stitch rule — the section's signature motif */
#story-section .story-rule {
  width: 72px;
  height: 2px;
  margin: 20px auto 0;
  background-image: repeating-linear-gradient(90deg, var(--story-accent) 0 8px, transparent 8px 14px);
}

/* ── Intro copy ── */
#story-section .story-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

#story-section .story-lede {
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--story-text);
  margin-bottom: 22px;
}

#story-section .story-welcome {
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.7;
  color: var(--story-muted);
}

/* ── Timeline ── */
#story-section .story-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-left: 46px;
}

/* Running-stitch vertical connector */
#story-section .story-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-image: repeating-linear-gradient(180deg, var(--story-purple) 0 9px, transparent 9px 16px);
}

#story-section .story-gen {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#story-section .story-gen.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bead marker at each generation node */
#story-section .story-gen-marker {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--story-accent);
  box-shadow: 0 0 0 4px var(--story-bg), 0 0 0 6px var(--story-purple);
}

#story-section .story-gen-card {
  background: var(--story-card-bg);
  border: 1px solid var(--story-border);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 4px 18px rgba(45, 27, 69, 0.06);
}

#story-section .story-gen-tag {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--story-purple);
  margin-bottom: 10px;
}

#story-section .story-gen-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--story-text);
}

#story-section .story-gen-text strong {
  color: var(--story-heading);
  font-weight: 700;
}

/* ── Divider ── */
#story-section .story-divider {
  height: 1px;
  background: var(--story-border);
  max-width: 700px;
  margin: clamp(44px, 6vw, 64px) auto;
}

/* ── Badge strip ── */
#story-section .story-badge-strip {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--story-card-bg);
  border: 1px solid var(--story-border);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 4px 18px rgba(45, 27, 69, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#story-section .story-badge-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#story-section .story-badge-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,159,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--story-purple);
}

#story-section .story-badge-icon svg {
  width: 24px;
  height: 24px;
}

#story-section .story-badge-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--story-text);
}

#story-section .story-badge-text strong {
  color: var(--story-heading);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px
   Tablet  : 577–1024px
   Mobile  : ≤ 576px
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  #story-section .story-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #story-section {
    padding: 44px 18px;
  }

  #story-section .story-timeline {
    padding-left: 34px;
    gap: 26px;
  }

  #story-section .story-timeline::before {
    left: 8px;
  }

  #story-section .story-gen-marker {
    left: -30px;
    width: 12px;
    height: 12px;
  }

  #story-section .story-gen-card {
    padding: 20px 20px;
  }

  #story-section .story-badge-strip {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
    gap: 14px;
  }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #story-section .story-gen,
  #story-section .story-badge-strip {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* END OUR STORY SECTION STYLE */


/* START LEADERSHIP SECTION STYLE */

#leadership-section, #leadership-section *, #leadership-section *::before, #leadership-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#leadership-section {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

/* Fallback container — works even if .container isn't already
   defined globally elsewhere on the site */
#leadership-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

#leadership-section .leadership-title {
    text-align: center;
    font-size: 2.2rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

#leadership-section .story-line {
    width: 50px;
    height: 4px;
    margin: 0 auto 20px;
    border-radius: 5px;
}

#leadership-section .leadership-title span {
    color: #2b47f0; /* Blue accent color */
    font-weight: 600;
}

#leadership-section .director-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#leadership-section .director-card:hover {
    transform: translateY(-5px);
}

/* Profile Side
   min-width:0 added: without it, flex children with a fixed flex-basis
   can refuse to shrink below their content size at certain viewport
   widths — the same bug that forced a horizontal scrollbar on the
   navbar earlier in this project. */
#leadership-section .director-profile {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 30px;
    text-align: center;
    border-right: 1px solid #eee;
}

#leadership-section .director-profile img {
    width: 180px;
    height: 180px;
    max-width: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #486b8b;
    margin-bottom: 15px;
    background-color: #DEEBE1;
}

#leadership-section .director-profile h3 {
    font-size: 1.4rem;
    line-height: normal;
    color: #222;
    margin-bottom: 6px; /* restores the gap the browser's default h3 margin used to provide before the full reset */
}

#leadership-section .director-profile .designation {
    font-weight: bold;
    color: #555;
}

/* Message Side */
#leadership-section .director-message {
    flex: 2;
    min-width: 0; /* same overflow-safety fix as .director-profile above */
    background: #486b8b;
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#leadership-section .director-message h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-decoration: underline;
}

#leadership-section .director-message p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: justify;
    overflow-wrap: break-word; /* safety net for any very long unbroken word/URL */
}

/* Alternating Layout for Desktop */
#leadership-section .reverse {
    flex-direction: row-reverse;
}

#leadership-section .reverse .director-profile {
    border-right: none;
    border-left: 1px solid #eee;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → side-by-side
   Tablet  : 577–1024px → side-by-side, smaller photo
   Mobile  : ≤ 576px → stacked
══════════════════════════════════════════ */

@media (max-width: 1024px) {
    #leadership-section .director-profile img {
        width: 150px;
        height: 150px;
    }

    #leadership-section .director-message {
        padding: 32px;
    }
}

@media (max-width: 576px) {
    #leadership-section {
        padding: 30px 0;
    }

    #leadership-section .director-card,
    #leadership-section .director-card.reverse {
        flex-direction: column;
    }

    #leadership-section .director-profile {
        border: none;
        padding: 24px 20px;
    }

    #leadership-section .reverse .director-profile {
        border: none;
    }

    #leadership-section .director-profile img {
        width: 130px;
        height: 130px;
    }

    #leadership-section .director-message {
        padding: 26px 22px;
    }

    #leadership-section .leadership-title {
        font-size: 24px;
    }

    #leadership-section .director-message p {
        text-align: left; /* justify + narrow mobile width creates uneven word-gaps */
    }
}

/* END LEADERSHIP SECTION STYLE */


/* START CORE VALUES SECTION STYLE */

#core-values-section, #core-values-section *, #core-values-section *::before, #core-values-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Container & Layout */
#core-values-section.core-values-section {
    width: 100%;
    max-width: 100%;
    padding: 80px 20px;
    background-color: #f9fcfe; /* Very light blue tint for contrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

#core-values-section .values-container {
    max-width: 1200px;
    margin: 0 auto;
}

#core-values-section .values-title {
    font-size: 2rem;
    color: #1a237e; /* Navy blue from provided sample */
    margin-bottom: 60px;
    text-align: left;
    font-weight: 700;
}

/* The Grid */
#core-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- THE FLOATING CARD --- */
#core-values-section .core-values-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;

    /* Subtle initial shadow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    /* Smooth transition for float effect */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Hover Effect for Floating */
#core-values-section .core-values-card:hover {
    transform: translateY(-15px); /* Lift the card */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Deeper shadow when higher */
}

/* Image Icon Styling */
#core-values-section .value-image-wrapper {
    width: 100px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#core-values-section .value-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps the handshake image ratio perfect */
    transition: transform 0.4s ease;
}

/* Zoom effect on the icon when card is hovered */
#core-values-section .core-values-card:hover .value-img {
    transform: scale(1.1);
}

#core-values-section .core-values-card h3 {
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 15px;
}

#core-values-section .about-us-paragraph {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    overflow-wrap: break-word; /* safety net for any long unbroken word */
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → 3 columns
   Tablet  : 577–1024px → 2 columns
   Mobile  : ≤ 576px → 1 column
══════════════════════════════════════════ */

@media (max-width: 1024px) {
    #core-values-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    #core-values-section.core-values-section {
        padding: 50px 15px;
    }
    #core-values-section .values-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    #core-values-section .values-grid {
        grid-template-columns: 1fr; /* Stacks cards */
    }
    #core-values-section .core-values-card {
        text-align: center; /* Better readability on small screens */
        padding: 32px 24px;
    }
    #core-values-section .value-image-wrapper {
        margin: 0 auto 20px auto;
    }
}

/* END CORE VALUES SECTION STYLE */
/* START MISSION & VISION SECTION STYLE */

#mission-vision-section, #mission-vision-section *, #mission-vision-section *::before, #mission-vision-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Section Base */
#mission-vision-section.mission-vision-section {
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    padding-bottom: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* Header Split */
#mission-vision-section .mission-vision-header {
    display: flex;
    height: 180px;
}

#mission-vision-section .header-box {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

#mission-vision-section .header-box h2 {
    color: white;
    font-size: clamp(1.3rem, 2.6vw, 2.5rem);
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
}

#mission-vision-section .strength-bg { background-color: #3d3d3d; } /* Charcoal */
#mission-vision-section .mission-bg { background-color: #80ced6; }  /* Light Teal */
#mission-vision-section .vision-bg { background-color: #2b47f0; }   /* Deep Blue */

/* Content Container */
#mission-vision-section .mission-vision-container {
    max-width: 1200px;
    margin: -60px auto 0; /* Overlaps the header slightly */
    display: flex;
    gap: 32px;
    padding: 0 20px;
}

#mission-vision-section .mv-card {
    flex: 1;
    min-width: 0; /* prevents this card from refusing to shrink below its content+padding width — the same overflow cause fixed on the navbar */
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#mission-vision-section .mv-card:hover {
    transform: translateY(-15px); /* Lift the card */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
#mission-vision-section .mv-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mission-vision-section .strength-border {
    border: 3px solid #3d3d3d;
}
#mission-vision-section .mission-border {
    border: 3px solid #80ced6;
}
#mission-vision-section .vision-border {
    border: 3px solid #2b47f0;
}

#mission-vision-section .mv-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Text & Lines */
#mission-vision-section .strength-text { color: #b8752a; }
#mission-vision-section .mission-text { color: #23c1d1; }
#mission-vision-section .vision-text { color: #2b47f0; }

#mission-vision-section .mv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

#mission-vision-section .mv-line {
    width: 40px;
    height: 3px;
    margin: 0 auto 16px;
}

#mission-vision-section .strength-line { background-color: #b8752a; }
#mission-vision-section .mission-line { background-color: #2b47f0; }
#mission-vision-section .vision-line { background-color: #1a1a1a; }

/* Stat callout — pulls the production-capacity figure out of the
   paragraph into its own visual anchor, reusing the existing
   strength-text/mission-text/vision-text color classes */
#mission-vision-section .mv-stat {
    margin: 2px 0 16px;
}

#mission-vision-section .mv-stat-number {
    display: block;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
}

#mission-vision-section .mv-stat-unit {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 6px;
}

#mission-vision-section .mv-stat-annual {
    display: block;
    font-size: 0.76rem;
    color: #999;
    margin-top: 3px;
}

#mission-vision-section .about-us-paragraph {
    color: #666;
    line-height: 1.65;
    font-size: 0.92rem;
    text-align: left; /* long paragraphs read better left-aligned than centered */
    overflow-wrap: break-word;
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → split header + overlapping cards
   Tablet  : 577–1024px → shorter header, smaller heading, tighter cards
   Mobile  : ≤ 576px → header hidden, cards stacked
══════════════════════════════════════════ */

@media (max-width: 1024px) {
    #mission-vision-section .mission-vision-header {
        height: 140px;
    }

    #mission-vision-section .mission-vision-container {
        gap: 20px;
    }

    #mission-vision-section .mv-card {
        padding: 30px 24px;
    }

    #mission-vision-section .mv-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    #mission-vision-section .mv-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    #mission-vision-section .mission-vision-header {
        display: none; /* Hide split header on mobile for cleaner look */
    }

    #mission-vision-section .mission-vision-container {
        flex-direction: column;
        margin-top: 50px;
    }

    #mission-vision-section .mv-card {
        padding: 30px 20px;
    }

    #mission-vision-section .mv-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    #mission-vision-section .mv-icon {
        width: 100px;
        height: 100px;
    }
}

/* END MISSION & VISION SECTION STYLE */


/* START HOW WE WORK SECTION STYLE */

#process-section *, #process-section *::before, #process-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Root tokens (same brand family as the rest of the site) ── */
#process-section {
  --proc-bg: #f7f5fb;
  --proc-heading: #2d1b45;
  --proc-purple: #4a1a7a;
  --proc-purple-deep: #2d0c4b;
  --proc-accent: #c89fff;
  --proc-text: #4a4560;
  --proc-muted: #726c87;
  --proc-card-bg: #ffffff;
  --proc-border: #e6e1f2;
  --proc-font-display: 'Playfair Display', Georgia, serif;
  --proc-font-body: 'Inter', sans-serif;

  width: 100%;
  max-width: 100%;
  background: var(--proc-bg);
  font-family: var(--proc-font-body);
  padding: clamp(56px, 8vw, 96px) 24px;
  overflow: hidden;
}

#process-section .proc-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Header ── */
#process-section .proc-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

#process-section .proc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--proc-purple);
  margin-bottom: 12px;
}

#process-section .proc-title {
  font-family: var(--proc-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--proc-heading);
}

/* Running-stitch rule — same signature motif used across the site */
#process-section .proc-rule {
  width: 64px;
  height: 2px;
  margin: 18px auto 0;
  background-image: repeating-linear-gradient(90deg, var(--proc-accent) 0 8px, transparent 8px 14px);
}

/* ── Grid ── */
#process-section .proc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ── Card ── */
#process-section .proc-card {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--proc-card-bg);
  border: 1px solid var(--proc-border);
  border-radius: 16px;
  padding: 26px 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}

#process-section .proc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#process-section .proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(45, 27, 69, 0.10);
}

/* Quiet step numeral — real sequence info, kept low-key rather than a loud circle badge */
#process-section .proc-step {
  position: absolute;
  top: 6px;
  right: 16px;
  font-family: var(--proc-font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--proc-purple);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

/* ── Icon badge ── */
#process-section .proc-icon-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200,159,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--proc-purple);
}

#process-section .proc-icon-badge .proc-icon-img {
  width: 75%;
  height: 100%;
}

/* If swapping in your own raster image instead of the SVG,
   use <img class="proc-icon-img"> — sizing matches automatically */
#process-section .proc-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
}

/* ── Content ── */
#process-section .proc-content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

#process-section .proc-card-title {
  font-family: var(--proc-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--proc-heading);
  margin-bottom: 8px;
}

#process-section .proc-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--proc-text);
}

#process-section .proc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#process-section .proc-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--proc-text);
}

#process-section .proc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 2px;
  background: var(--proc-accent);
}

/* ── ERP band — deliberately distinct: it's the system underneath
   every step above, not a peer step in the client's journey ── */
#process-section .proc-band {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--proc-purple-deep) 0%, var(--proc-purple) 100%);
  border-radius: 18px;
  padding: 32px 34px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#process-section .proc-band.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#process-section .proc-band-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--proc-accent);
}

#process-section .proc-band-icon svg {
  width: 32px;
  height: 32px;
}

#process-section .proc-band-title {
  font-family: var(--proc-font-display);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

#process-section .proc-band-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

/* ══════════════════════════════════════════
   RESPONSIVE — 3 device tiers
   Desktop : > 1024px → 2 columns
   Tablet  : 577–1024px → 2 columns, tighter spacing
   Mobile  : ≤ 576px → 1 column, band stacks icon above text
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  #process-section .proc-grid {
    gap: 18px;
  }

  #process-section .proc-card {
    padding: 22px 20px;
  }
}

@media (max-width: 576px) {
  #process-section {
    padding: 44px 16px;
  }

  #process-section .proc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-right: 25px;
  }

  #process-section .proc-card {
    padding: 20px 18px;
  }

  #process-section .proc-icon-badge {
    width: 62px;
    height: 62px;
  }

  #process-section .proc-icon-badge .proc-icon-img {
    width: 48px;
    height: 62px;
  }

  #process-section .proc-step {
    font-size: 30px;
    top: 4px;
    right: 12px;
  }

  #process-section .proc-band {
    flex-direction: column;
    text-align: center;
    padding: 26px 22px;
    gap: 14px;
  }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #process-section .proc-card,
  #process-section .proc-band {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* END HOW WE WORK SECTION STYLE */