    /* ============================
       VARIABLES & RESET
    ============================ */
    :root {
      --black:       #0a0a0a;
      --black-soft:  #111111;
      --black-mid:   #1a1a1a;
      --black-card:  #141414;
      --orange:      #e85d04;
      --orange-light:#f48c06;
      --orange-pale: rgba(232,93,4,0.12);
      --white:       #ffffff;
      --white-dim:   rgba(255,255,255,0.75);
      --white-faint: rgba(255,255,255,0.06);
      --gray:        #888888;
      --gray-light:  #cccccc;
      --border:      rgba(255,255,255,0.08);
      --font-display:'Playfair Display', serif;
      --font-body:   'DM Sans', sans-serif;
      --transition:  0.35s ease;
      --radius:      4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }
    a { text-decoration: none; color: inherit; transition: color var(--transition); }
    img { max-width: 100%; display: block; }
    section { position: relative; }

    /* ============================
       UTILITIES
    ============================ */
    .text-orange  { color: var(--orange); }
    .text-dim     { color: var(--white-dim); }
    .text-gray    { color: var(--gray); }

    .section-tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.9rem;
    }
    .section-heading {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
    }
    .divider-line {
      width: 48px;
      height: 3px;
      background: var(--orange);
      margin: 1.2rem 0;
    }
    .divider-line.center { margin: 1.2rem auto; }

    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 0.78rem 2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--orange);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
      cursor: pointer;
    }
    .btn-orange:hover { background: transparent; color: var(--orange); }

    .btn-outline-orange {
      background: transparent;
      color: var(--orange);
      padding: 0.78rem 2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--orange);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
    }
    .btn-outline-orange:hover { background: var(--orange); color: var(--white); }

    /* ============================
       NAVBAR
    ============================ */
    #mainNav {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0.85rem 0;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--white);
    }
    .navbar-brand span { color: var(--orange); }
    .nav-link {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--white-dim) !important;
      padding: 0.5rem 0.9rem !important;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0.9rem;
      width: 0; height: 2px;
      background: var(--orange);
      transition: width var(--transition);
    }
    .nav-link:hover { color: var(--white) !important; }
    .nav-link:hover::after { width: calc(100% - 1.8rem); }
    .nav-link.active-page { color: var(--white) !important; }
    .nav-link.active-page::after { width: calc(100% - 1.8rem); }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.45rem 1.2rem !important;
      border-radius: var(--radius);
      font-size: 0.75rem;
    }
    .nav-cta:hover { background: var(--orange-light) !important; }
    .nav-cta::after { display: none; }
    .navbar-toggler { border: 1px solid var(--border); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ============================
       PAGE BANNER (small)
    ============================ */
    .page-banner {
      position: relative;
      height: 320px;
      display: flex;
      align-items: center;
/*       margin-top: 62px;  */
		
		/* nav height offset */
		padding-top: 60px;
      overflow: hidden;
    }
    .page-banner-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1800&q=80');
      background-size: cover;
      background-position: center 40%;
      filter: brightness(0.35);
    }
    .page-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(10,10,10,0.88) 45%, rgba(10,10,10,0.4) 100%);
    }
    /* decorative orange stripe on left */
    .page-banner::before {
      content: '';
      position: absolute;
      left: 0; top: 0;
      width: 5px;
      height: 100%;
      background: var(--orange);
      z-index: 3;
    }
    .page-banner-content {
      position: relative;
      z-index: 2;
    }
    .page-banner-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.9rem;
    }
    .page-banner-eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--orange);
      display: inline-block;
    }
    .page-banner-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.05;
    }
    .page-banner-title em { font-style: normal; color: var(--orange); }
    /* breadcrumb */
    .breadcrumb-wrap {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.2rem;
      font-size: 0.76rem;
      color: var(--gray);
    }
    .breadcrumb-wrap a { color: var(--gray); transition: color var(--transition); }
    .breadcrumb-wrap a:hover { color: var(--orange); }
    .breadcrumb-wrap .sep {
      color: var(--orange);
      font-size: 0.6rem;
    }
    .breadcrumb-wrap .current { color: var(--white-dim); }
    /* corner badge on banner */
    .page-banner-badge {
      position: absolute;
      right: 0; bottom: 0;
      background: var(--orange);
      padding: 1.4rem 2.5rem;
      z-index: 4;
      text-align: center;
    }
    .page-banner-badge-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .page-banner-badge-lbl {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-top: 0.1rem;
    }

    /* ============================
       ABOUT INTRO
    ============================ */
    .about-intro { padding: 5.5rem 0; background: var(--black); }

    .intro-img-col { position: relative; }
    .intro-img-main {
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: var(--radius);
    }
    /* small floating accent card */
    .intro-img-card {
      position: absolute;
      bottom: -1.8rem;
      right: -1.8rem;
      background: var(--orange);
      padding: 1.4rem 1.8rem;
      border-radius: var(--radius);
      text-align: center;
    }
    .intro-img-card-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .intro-img-card-lbl {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-top: 0.2rem;
    }
    /* small photo stacked behind */
    .intro-img-stack {
      position: absolute;
      top: -1.8rem;
      left: -1.8rem;
      width: 140px;
      height: 140px;
      object-fit: cover;
      border: 4px solid var(--black);
      border-radius: var(--radius);
      opacity: 0.85;
    }

    .intro-text { padding-left: 1rem; }
    .intro-lead {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      color: var(--white-dim);
      line-height: 1.6;
      margin-bottom: 1.4rem;
      border-left: 3px solid var(--orange);
      padding-left: 1.2rem;
    }
    .intro-body {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .intro-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .pillar-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--orange);
      margin-top: 0.52rem;
      flex-shrink: 0;
    }
    .pillar-title { font-size: 0.85rem; font-weight: 600; color: var(--white); }
    .pillar-desc  { font-size: 0.76rem; color: var(--gray); line-height: 1.5; }

    /* ============================
       FULL-WIDTH INTERIOR IMAGE
       with corner orange text box
    ============================ */
    .interior-fullwidth {
      position: relative;
      width: 100%;
      height: 85vh;
      min-height: 520px;
      overflow: hidden;
    }
    .interior-fullwidth-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transform: scale(1.03);
      transition: transform 8s ease;
    }
    .interior-fullwidth:hover .interior-fullwidth-img { transform: scale(1); }

    /* dark vignette overlay */
    .interior-fullwidth-vignette {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top,    rgba(10,10,10,0.55) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, transparent 30%);
    }

    /* orange text box — bottom-right corner (desktop) */
    .interior-corner-box {
      position: absolute;
      bottom: 0;
      right: 0;
      background: var(--orange);
      padding: 2.8rem 3.2rem;
      max-width: 420px;
      z-index: 3;
    }
    .interior-corner-box::before {
      content: '';
      position: absolute;
      top: -16px; left: 0;
      width: 0; height: 0;
      border-right: 40px solid var(--orange);
      border-top: 16px solid transparent;
    }

    /* inner grid — single col on desktop, 2-col on ≤991px */
    .corner-box-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }
    .corner-box-left  { /* title + tag */ }
    .corner-box-right { /* text + btn */ }

    .corner-box-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-bottom: 0.7rem;
    }
    .corner-box-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 2.1rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 0.9rem;
    }
    /* separator line between title and body — visible on desktop stacked layout */
    .corner-box-divider {
      width: 36px;
      height: 2px;
      background: rgba(255,255,255,0.4);
      margin-bottom: 1rem;
    }
    .corner-box-text {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }
    .corner-box-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--white);
      color: var(--orange);
      padding: 0.65rem 1.5rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border-radius: var(--radius);
      transition: all var(--transition);
      font-family: var(--font-body);
    }
    .corner-box-btn:hover { background: var(--black); color: var(--white); }

    /* ---- TABLET & MOBILE: 2-column corner box ---- */
    @media (max-width: 991px) {
      /* pull the box out of absolute positioning — sit below the image */
      .interior-fullwidth {
        height: auto;
        min-height: unset;
        display: flex;
        flex-direction: column;
      }
      .interior-fullwidth-img {
        height: 55vw;
        min-height: 300px;
        transform: none;
      }
      .interior-fullwidth:hover .interior-fullwidth-img { transform: none; }
      .interior-fullwidth-vignette {
        /* only cover the image portion */
        height: 55vw;
        min-height: 300px;
        position: absolute;
        bottom: auto; top: 0;
      }
      .interior-corner-box {
        position: relative;
        bottom: auto; right: auto;
        max-width: 100%;
        padding: 2.2rem 2rem;
      }
      .interior-corner-box::before { display: none; }

      /* switch inner grid to 2 columns */
      .corner-box-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
        align-items: start;
      }
      /* vertical divider between the two columns */
      .corner-box-left {
        border-right: 1px solid rgba(255,255,255,0.25);
        padding-right: 2rem;
      }
      .corner-box-right { padding-left: 0; }
      /* hide the horizontal divider line in 2-col mode */
      .corner-box-divider { display: none; }
      /* no bottom margin on title inside left col */
      .corner-box-title { margin-bottom: 0; }
    }

    @media (max-width: 575px) {
      /* stack back to single column on small phones */
      .corner-box-grid { grid-template-columns: 1fr; gap: 1.2rem 0; }
      .corner-box-left { border-right: none; padding-right: 0; }
      .corner-box-divider { display: block; }
      .corner-box-title { margin-bottom: 0.9rem; }
      .interior-fullwidth-img { height: 65vw; }
      .interior-fullwidth-vignette { height: 65vw; }
    }

    /* floating top-left label on the image */
    .interior-top-label {
      position: absolute;
      top: 2.5rem;
      left: 2.5rem;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .interior-top-label-line {
      width: 36px; height: 2px;
      background: var(--orange);
    }
    .interior-top-label-text {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }

    /* ============================
       VALUES / PILLARS STRIP
    ============================ */
    .values-strip {
      background: var(--black-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 4rem 0;
    }
    .value-item {
      padding: 1.5rem;
      text-align: center;
      border-right: 1px solid var(--border);
      transition: background var(--transition);
    }
    .value-item:last-child { border-right: none; }
    .value-item:hover { background: var(--orange-pale); }
    .value-icon {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: var(--orange-pale);
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 1.3rem;
      margin: 0 auto 1rem;
      transition: background var(--transition), color var(--transition);
    }
    .value-item:hover .value-icon { background: var(--orange); color: var(--white); }
    .value-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .value-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

    /* ============================
       STORY TIMELINE
    ============================ */
    .story-section { padding: 6rem 0; background: var(--black); }
    .timeline { position: relative; padding-left: 2rem; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(to bottom, var(--orange), transparent);
    }
    .timeline-item {
      position: relative;
      padding-left: 2.5rem;
      padding-bottom: 3rem;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -2.38rem;
      top: 0.2rem;
      width: 14px; height: 14px;
      border-radius: 50%;
      background: var(--orange);
      border: 3px solid var(--black);
      box-shadow: 0 0 0 2px var(--orange);
    }
    .timeline-year {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }
    .timeline-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .timeline-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

    /* ============================
       TEAM SECTION
    ============================ */
    .team-section { padding: 6rem 0; background: var(--black-soft); }

    .team-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--black-card);
      border: 1px solid var(--border);
      transition: border-color var(--transition), transform var(--transition);
    }
    .team-card:hover { border-color: var(--orange); transform: translateY(-5px); }

    .team-card-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .team-card-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.55s ease;
      filter: grayscale(30%);
    }
    .team-card:hover .team-card-img { transform: scale(1.06); filter: grayscale(0%); }

    /* social links that slide up on hover */
    .team-card-socials {
      position: absolute;
      bottom: -60px;
      left: 0; right: 0;
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      padding: 1rem;
      background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
      transition: bottom 0.4s ease;
    }
    .team-card:hover .team-card-socials { bottom: 0; }
    .team-social-link {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--orange);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      transition: background var(--transition), transform var(--transition);
    }
    .team-social-link:hover { background: var(--white); color: var(--orange); transform: scale(1.1); }

    /* orange corner tag on image */
    .team-card-role-badge {
      position: absolute;
      top: 1rem; left: 0;
      background: var(--orange);
      padding: 0.35rem 0.9rem;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      border-radius: 0 var(--radius) var(--radius) 0;
    }

    .team-card-body { padding: 1.4rem; }
    .team-card-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.2rem;
    }
    .team-card-title { font-size: 0.76rem; color: var(--orange); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.7rem; }
    .team-card-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

    /* ============================
       AWARDS / CERTIFICATIONS
    ============================ */
    .awards-section { padding: 5rem 0; background: var(--black-mid); }
    .award-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.4rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--black-card);
      transition: border-color var(--transition);
      height: 100%;
    }
    .award-item:hover { border-color: var(--orange); }
    .award-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--orange-pale);
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .award-year { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.2rem; }
    .award-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
    .award-body  { font-size: 0.78rem; color: var(--gray); }

    /* ============================
       CTA STRIP
    ============================ */
    .cta-strip {
      padding: 4.5rem 0;
      background: var(--orange);
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 300px; height: 300px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
    }
    .cta-strip-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }
    .cta-strip-sub { font-size: 0.92rem; color: rgba(255,255,255,0.82); margin-top: 0.6rem; }
    .btn-white {
      background: var(--white);
      color: var(--orange);
      padding: 0.82rem 2.2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--white);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
    }
    .btn-white:hover { background: transparent; color: var(--white); }

    /* ============================
       FOOTER
    ============================ */
    footer {
      background: var(--black-soft);
      border-top: 1px solid var(--border);
      padding: 2.5rem 0 1.2rem;
    }
    .footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
    .footer-logo span { color: var(--orange); }
    .footer-tagline { font-size: 0.74rem; color: var(--gray); margin-top: 0.25rem; }
    .footer-body { font-size: 0.76rem; color: var(--gray); margin-top: 0.65rem; line-height: 1.6; }
    .footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.4rem; }
    .footer-links a { font-size: 0.8rem; color: var(--gray); transition: color var(--transition); }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      margin-top: 1.75rem; padding-top: 1.1rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-copy { font-size: 0.72rem; color: var(--gray); }
    .footer-social { display: flex; gap: 0.5rem; }
    .footer-social a {
      width: 30px; height: 30px;
      border: 1px solid var(--border); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); font-size: 0.78rem;
      transition: all var(--transition);
    }
    .footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

    /* ============================
       FLOATING ELEMENTS
    ============================ */
    #backToTop {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 42px; height: 42px;
      background: var(--orange);
      color: var(--white);
      border: none; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; cursor: pointer;
      opacity: 0; pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
      z-index: 999;
      box-shadow: 0 4px 18px rgba(232,93,4,0.4);
    }
    #backToTop.show { opacity: 1; pointer-events: all; }
    #backToTop:hover { transform: translateY(-3px); }

    .whatsapp-float {
      position: fixed;
      bottom: 5.3rem; right: 2rem;
      z-index: 999;
    }
    .whatsapp-float a {
      width: 42px; height: 42px;
      background: #25D366; color: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.4);
      transition: transform var(--transition);
    }
    .whatsapp-float a:hover { transform: scale(1.1); }

    /* ============================
       SCROLL ANIMATIONS
    ============================ */
    .fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 991px) {
      .intro-img-stack, .intro-img-card { display: none; }
      .intro-text { padding-left: 0; }
      .interior-top-label { top: 1.2rem; left: 1.2rem; }
      .value-item { border-right: none; border-bottom: 1px solid var(--border); }
      .value-item:last-child { border-bottom: none; }
    }
    @media (max-width: 767px) {
      .page-banner { height: 260px; }
      .page-banner-badge { display: none; }
      .intro-pillars { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
  