  :root {
    --navy: #1B3A6B;
    --navy-dark: #122850;
    --navy-light: #234d8a;
    --green: #6aaa4b;
    --green-dark: #4f8a34;
    --green-light: #82c05e;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #eef1f6;
    --text: #1a2540;
    --text-muted: #5a6a85;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(27,58,107,0.08); box-shadow: 0 2px 20px rgba(27,58,107,0.07); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 110px; width: auto; padding-top: 4px;}
  .nav-brand { display: flex; flex-direction: column; line-height: 2.15; }
  .nav-brand-name { font-family: 'Montserrat', serif; font-size: 15px; font-weight: 700; color: var(--navy); }
  .nav-brand-sub { font-size: 10px; font-weight: 500; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 15.5px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta { background: var(--navy); color: var(--white) !important; padding: 9px 22px; border-radius: 6px; font-weight: 600 !important; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--green) !important; }
  .nav-cta::after { display: none !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
  .mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light-gray); padding: 20px 5%; z-index: 99; flex-direction: column; box-shadow: 0 8px 24px rgba(27,58,107,0.1); }
  .mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--light-gray); text-decoration: none; font-size: 15px; font-weight: 500; color: var(--text); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu.open { display: flex; }

  /* HERO — centered, clean */

  #home { 
  min-height: 100vh; 
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e4d8c 100%); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
  overflow: hidden; 
  padding: 120px 5% 140px; 
  text-align: center; 
}

/* HERO CAROUSEL */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,47,0.68), rgba(10,25,47,0.72));
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('img/banner-image-1.webp'); }
.hero-slide-2 { background-image: url('img/banner-image-2.webp'); }
.hero-slide-3 { background-image: url('img/banner-image-3.webp'); }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--green); width: 28px; border-radius: 5px; }

/* Carousel arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white); width: 36px; height: 36px;
  border-radius: 50%; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
  .hero-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 60px 60px; }
  .hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
  .hero-inner p {font-size: 18px; color:white; margin-top:18px;}
  .hero-words-wrap { min-height: 32px; margin-top: 18px; }
  .hero-words { font-size: 18px; color: white; margin: 0; line-height: 1.6; }
  .hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-18px);
    animation: wordReveal 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes wordReveal {
    to { opacity: 1; transform: translateX(0); }
  }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(106,170,75,0.35); color: var(--light-gray); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 28px; }
  .hero-badge span { width: 6px; height: 6px; background: var(--light-gray); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero-headline { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 6vw, 44px); font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 0; }
  .hero-headline em { font-style: normal; color: var(--green-light); display: block; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
  .btn-primary { background: #3d6626; color: var(--white); padding: 16px 38px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(106,170,75,0.3); }

.btn-primary:hover { background: #2e4e1c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(106,170,75,0.4); }
  /*.btn-primary { background: #3d6626; color: var(--white); padding: 16px 38px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(106,170,75,0.3); }*/
  /*.btn-primary:hover { background: #2e4e1c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(106,170,75,0.4); }*/
  .btn-outline { background: transparent; color: var(--white); padding: 16px 38px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); transition: all 0.2s; }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  /* MISSION/VISION — floating cards overlapping hero bottom */
  .mv-section { padding: 0 5%; margin-top: -72px; position: relative; z-index: 10; }
  .mv-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .mv-card { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: 0 16px 52px rgba(27,58,107,0.15); display: flex; align-items: flex-start; gap: 20px; transition: transform 0.25s, box-shadow 0.25s; }
  .mv-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(27,58,107,0.2); }
  .mv-icon { width: 58px; height: 58px; flex-shrink: 0; border-radius: 14px; background: rgba(106,170,75,0.1); border: 1.5px solid rgba(106,170,75,0.2); display: flex; align-items: center; justify-content: center; font-size: 28px; }
  .mv-card h2 { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .mv-card p { font-size: 16px; text-align: justify; color: var(--text-muted); line-height: 1.78; }

  /* SHARED */
  section { padding: 90px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-dark); background: rgba(106,170,75,0.1); border: 1px solid rgba(106,170,75,0.25); padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
  .section-title { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
  .section-desc { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 1200px; text-align:justify}

  /* ABOUT 
  #about { background: var(--white); padding-top: 120px; }
  .about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
  .about-visual { position: relative; }
  .about-panel { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; padding: 36px; min-height: 380px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
  .about-panel::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(106,170,75,0.13); }
  .about-panel::after { content: ''; position: absolute; top: -20px; left: -20px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.04); }
  */.about-badge { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); padding: 12px 26px; border-radius: 30px; font-size: 13px; font-weight: 700; white-space: nowrap; box-shadow: 0 6px 24px rgba(106,170,75,0.4); }
  .about-text p { font-size: 15.5px; text-align: justify; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
  .about-text strong { color: var(--navy); font-weight: 600; }
  .about-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; margin-top: 10px; transition: background 0.2s, transform 0.15s; }
  .about-cta:hover { background: var(--green); transform: translateY(-2px); }

  /* Container & Grid Setup */


.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.05fr; /* Keeps image on left, text on right */
  gap: 80px; 
  align-items: center; 
}

/* Image Panel Styling */
.about-panel { 
  /* Background Image Controls */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Layout & Shape */
  border-radius: 20px; 
  min-height: 480px; /* Increased height for better visual impact */
  display: flex; 
  flex-direction: column; 
  position: relative; 
  overflow: hidden; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Optional: Overlay to make sure text is readable if you add icons inside */
.about-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, rgba(0,33,71,0.4) 0%, rgba(0,33,71,0.1) 100%);
  z-index: 1;
}


  /* SERVICES */
  #services { background: var(--off-white); }
  .services-header { margin-bottom: 44px; }
  .services-tabs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
  .tab-btn { padding: 15px 25px; border-radius: 30px; border: 1.5px solid var(--light-gray); background: var(--white); color: var(--text-muted); font-size: 20.5px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .tab-btn.active, .tab-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .tab-content { display: none; }
  .tab-content.active { display: block; }

  /* Service card — image top */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .svc-card { position: relative; background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--light-gray); box-shadow: 0 2px 12px rgba(27,58,107,0.05); transition: all 0.25s; }
  .svc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(27,58,107,0.13); }
  .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 384 / 155; }
  .svc-img { height: 155px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .svc-img-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px); background-size: 18px 18px; }
  .svc-img-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.07) 1px,transparent 1px); background-size: 28px 28px; }
  .svc-ico { font-size: 54px; position: relative; z-index: 1; }
  .svc-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 7px 14px; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
  .svc-top-bar { position: absolute; height: 3px; background: linear-gradient(90deg, var(--navy), var(--green)); z-index: 5; }
  .svc-body { padding: 22px 22px 26px; }
  .svc-body h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
  .svc-body p { font-size: 15.5px; text-align: justify; color: var(--text-muted); line-height: 1.65; }

  /* bg colors */
  .bg1{background:linear-gradient(135deg,#1B3A6B,#2a5ab0)} .bg2{background:linear-gradient(135deg,#14503d,#1f8060)} .bg3{background:linear-gradient(135deg,#3b1f6b,#6b38b5)} .bg4{background:linear-gradient(135deg,#6b3a14,#b56526)} .bg5{background:linear-gradient(135deg,#154b6b,#1e7aad)} .bg6{background:linear-gradient(135deg,#1b6540,#2aaa68)} .bg7{background:linear-gradient(135deg,#4a1b6b,#7e2eaa)} .bg8{background:linear-gradient(135deg,#6b1b3c,#aa2a5e)}

  /* PRO grid — redesigned */
  .pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .pro-card {
    background: var(--white);
    border-radius: 18px;
    padding: 0;
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    cursor: default;
  }
  .pro-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(27,58,107,0.14); border-color: transparent; }
  .pro-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--green));
  }
  .pro-card-inner { padding: 24px 24px 22px; }
  .pro-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.3s;
    box-shadow: 0 4px 16px rgba(27,58,107,0.2);
  }
  .pro-card:hover .pro-card-icon { transform: scale(1.1) rotate(-4deg); }
  .pro-card h4 {
    font-size: 15px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
    line-height: 1.3;
  }
  .pro-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
  .pro-card-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(106,170,75,0.1);
    border: 1px solid rgba(106,170,75,0.25);
    padding: 4px 10px; border-radius: 20px;
  }
  .pro-card-num {
    position: absolute; top: 16px; right: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px; font-weight: 900;
    color: rgba(27,58,107,0.05);
    line-height: 1;
    user-select: none;
    transition: color 0.3s;
  }
  .pro-card:hover .pro-card-num { color: rgba(106,170,75,0.1); }

  /* PRO category label */
  .pro-category {
    display: flex; align-items: center; gap: 12px;
    margin: 32px 0 18px;
  }
  .pro-category-line { flex: 1; height: 1px; background: var(--light-gray); }
  .pro-category-label {
    font-size: 20px; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--navy);
    white-space: nowrap;
  }

  /* VALUES — flip card slider */
  #values { background: var(--navy); }
  #values .section-tag { color: var(--white); background: rgba(106,170,75,0.15); border-color: rgba(106,170,75,0.3); }
  #values .section-title { color: var(--white); }
  #values .section-desc { color: rgba(255,255,255,0.65); }

  .values-slider-wrap { position: relative; margin-top: 48px; }
  .values-slider { overflow: hidden; width: 100%; }
  .values-track { display: flex; gap: 24px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
  .card-icon {
  width: 65px;       /* Adjust width as needed */
  height: 65px;      /* Adjust height as needed */
  object-fit: contain; /* Keeps the image from stretching */
}

  /* flip card — JS sets exact width via --card-w */
  .flip-card { flex: 0 0 var(--card-w, 220px); width: var(--card-w, 220px); height: 280px; perspective: 1000px; cursor: pointer; }
  .flip-card-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
  .flip-card.flipped .flip-card-inner, .flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
  .flip-front, .flip-back { position: absolute; inset: 0; border-radius: 16px; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 20px; text-align: center; }
  .flip-front { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
  .flip-back { background: var(--green); border: 1px solid var(--green-dark); transform: rotateY(180deg); }
  .flip-front-icon { font-size: 40px; margin-bottom: 14px; }
  .flip-front h3 { font-size: 19px; font-weight: 700; color: var(--white); line-height: 1.3; }
  .flip-front span { font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 10px; letter-spacing: 0.05em; }
  .flip-back p { font-size: 15.5px; color: var(--light-gray); line-height: 1.75; }
  .flip-back .flip-back-title { font-family: 'montserrat', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }

  /* slider controls */
  .slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
  .slider-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.07); color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
  .slider-btn:hover { background: var(--green); border-color: var(--green); }
  .slider-btn:disabled { opacity: 0.3; cursor: default; }
  .slider-dots { display: flex; gap: 8px; }
  .slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; border: none; padding: 10px; background-clip: content-box; margin: 0 4px; }
  .slider-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

  /* WHY */
  #why { background: var(--off-white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: 12px; padding: 18px 20px; border: 1px solid var(--light-gray); transition: all 0.2s; }
  .why-item:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(27,58,107,0.08); }
 
  /* WHY CHOOSE US cards */
  
#why { background: var(--off-white); }
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wcu-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(27,58,107,0.05);
}
.wcu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(27,58,107,0.13);
  border-color: var(--green);
}
.wcu-card:hover .wcu-num { color: rgba(106,170,75,0.15); }
.wcu-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900;
  color: rgba(27,58,107,0.07);
  line-height: 1;
  transition: color 0.25s;
  user-select: none;
}
.wcu-icon {

  width: 55px; 
  height: 55px;
  border-radius: 5px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;       /* Slightly reduced for optimal icon sizing */
  margin-bottom: 14px;
  color: var(--white);
}
.wcu-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.3;
}
.wcu-card p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
} 
  .why-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .why-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
  .why-panel { background: var(--navy); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
  .why-panel::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(106,170,75,0.15); }
  .why-panel-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-light); margin-bottom: 10px; }
  .why-panel h3 { font-family: 'Montserrat', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
  .why-panel p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
  .why-bullets { display: flex; flex-direction: column; gap: 12px; }
  .why-bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
  .why-bullet::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: var(--green); font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  /* FAQ */

.faq-section {
  background: #eef1f6;
  padding: 100px 5%;
  position: relative;
}
.faq-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 56px;
}
.faq-header .section-title {
  white-space: nowrap;
}
.faq-header .section-desc {
  white-space: nowrap;
  max-width: 100%;
}
.faq-grid {
  display: flex;
  gap: 28px;
  max-width: 1100px;
  margin: 0;
  align-items: flex-start;
}
.faq-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(27, 58, 107, 0.04);
}
.faq-item:hover {
  border-color: rgba(106, 170, 75, 0.35);
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.08);
}
.faq-item.open {
  border-color: rgba(106, 170, 75, 0.4);
  background: #f7fbf4;
  box-shadow: 0 8px 24px rgba(106, 170, 75, 0.12);
}
.faq-item.open .faq-q {
  border-left: 4px solid var(--green, #6aaa4b);
  padding-left: 20px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy-dark, #1b3a6b);
  line-height: 1.5;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--green, #6aaa4b);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-a p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #5a6472;
}
@media (max-width: 900px) {
  .faq-header .section-title,
  .faq-header .section-desc {
    white-space: normal;
  }
  .faq-grid {
    flex-direction: column;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 14.5px;
  }
  .faq-item.open .faq-a {
    padding: 0 20px 20px;
  }
}
  /* CONTACT */
  #contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .contact-info h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px,3vw,38px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
  .contact-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
  .contact-details { display: flex; flex-direction: column; gap: 18px; }
  .contact-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text); }
  .contact-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(27,58,107,0.07); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .c-form { background: var(--off-white); border-radius: 16px; padding: 36px; border: 1px solid var(--light-gray); }
  .c-form h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 24px; }
  .fg { margin-bottom: 18px; }
  .fg label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
  .fg input, .fg select, .fg textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--light-gray); border-radius: 8px; font-family: 'DM Sans',sans-serif; font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,0.08); }
  .fg textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .btn-submit { width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 8px; font-family: 'DM Sans',sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s,transform 0.15s; }
  .btn-submit:hover { background: var(--green); transform: translateY(-1px); }
  .btn-submit:disabled { background: var(--text-muted); cursor: not-allowed; transform: none; }
  .field-err { display: block; font-size: 12px; color: #e53935; margin-top: 5px; min-height: 16px; }
  .fg input.invalid, .fg select.invalid, .fg textarea.invalid { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,0.1); }

  /* FOOTER */
  footer {
    position: relative;
    background:
      radial-gradient(600px 300px at 12% 0%, rgba(106,170,75,0.10), transparent 60%),
      radial-gradient(500px 260px at 100% 100%, rgba(130,192,94,0.07), transparent 60%),
      linear-gradient(180deg, var(--navy-dark) 0%, #0d1f3f 100%);
    padding: 58px 5% 26px;
    overflow: hidden;
  }
  footer::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--navy), var(--green), var(--navy)); }
  .footer-inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
  .footer-brand img { height: 118px; margin-bottom: 14px; display: block; }
  .footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 280px; margin-bottom: 22px; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 4px; background: transparent; border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white); font-size: 13px; text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  
  .footer-social a:hover, 
  .footer-social a:active,
  .footer-social a:focus { background: var(--green); border-color: var(--green); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(106,170,75,0.35); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--green-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
  .footer-col h4::after { content:''; position:absolute; left:0; bottom:0; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s, padding-left 0.2s; }
  .footer-col ul a:hover { color: var(--white); padding-left: 4px; }
  .footer-contact-col { display: flex; flex-direction: column; }
  .footer-contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; font-size: 14.5px; color: #c3cbdb; line-height: 1.6; }
  .footer-contact-item i { width: 26px; flex-shrink: 0; text-align: center; background: none; border: none; color: var(--green-light); font-size: 20px; }
  .footer-contact-item span, .footer-contact-item a { color: #c3cbdb; text-decoration: none; transition: color 0.2s; }
  .footer-contact-item a:hover { color: var(--green-light); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: #eef1f6; flex-wrap: wrap; gap: 10px; }
  .footer-bottom span:last-child { color: rgba(255,255,255,0.45); }


  /* ── CHATBOT WIDGET ── */
  #msk-launcher {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(27,58,107,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  }
  #msk-launcher:hover { transform: scale(1.12); }
  #msk-launcher svg { width: 30px; height: 30px; fill: var(--white); }

  .launcher-badge {
    position: absolute;
    top: 2px; right: 2px;
    width: 18px; height: 18px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: launcherPulse 2s infinite;
  }
  @keyframes launcherPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(106,170,75,.6); }
    50%      { box-shadow: 0 0 0 8px rgba(106,170,75,0); }
  }

  #msk-widget {
    position: fixed;
    bottom: 104px;
    right: 28px;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 620px;
    max-height: calc(100vh - 130px);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(27,58,107,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    transform: translateY(20px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    font-family: 'DM Sans', sans-serif;
  }
  #msk-widget.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
  }

  .msk-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .msk-header-avatar {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.25);
  }
  .msk-header-avatar svg { width: 24px; height: 24px; fill: var(--white); }
  .msk-header-info { flex: 1; }
  .msk-header-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: .3px;
  }
  .msk-header-status {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
  }
  .msk-header-status::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
  }
  .msk-close-btn {
    background: rgba(255,255,255,.12);
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s;
    display: flex;
  }
  .msk-close-btn:hover { background: rgba(255,255,255,.22); }
  .msk-close-btn svg { width: 18px; height: 18px; fill: var(--white); }

  .msk-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
  }
  .msk-body::-webkit-scrollbar { width: 4px; }
  .msk-body::-webkit-scrollbar-thumb { background: #d0d7e8; border-radius: 4px; }

  .msg { display: flex; align-items: flex-end; gap: 8px; animation: msgIn .3s ease; }
  @keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .msg.bot { flex-direction: row; }
  .msg.user { flex-direction: row-reverse; }

  .msg-avatar {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .msg-avatar svg { width: 14px; height: 14px; fill: var(--white); }

  .msg-bubble {
    max-width: 78%;
    padding: 12px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
  }
  .msg.bot .msg-bubble {
    background: var(--off-white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    border: 1px solid #e4e9f2;
  }
  .msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    border-bottom-right-radius: 4px;
  }

  .btn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    animation: msgIn .35s ease;
    padding-left: 38px;
  }
  .chat-btn {
    background: var(--white);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    border-radius: 24px;
    padding: 7px 14px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
  }
  .chat-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
  }
  .chat-btn.green {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
  }
  .chat-btn.green:hover { background: var(--green-dark); border-color: var(--green-dark); }
  .chat-btn.whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
    display: flex; align-items: center; gap: 6px;
  }
  .chat-btn.whatsapp:hover { background: #128c4a; border-color: #128c4a; }
  .chat-btn.skip {
    background: #f0f3fa;
    border-color: #c0c8d8;
    color: #6b7a99;
  }
  .chat-btn.skip:hover { background: #e2e8f5; }

  .msk-input-wrap {
    padding: 14px 16px;
    border-top: 1px solid #e4e9f2;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--white);
    flex-shrink: 0;
  }
  .msk-input {
    flex: 1;
    border: 1.5px solid #d0d7e8;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    background: var(--off-white);
  }
  .msk-input:focus { border-color: var(--navy); }
  .msk-input::placeholder { color: #a0a8b8; }
  .msk-send-btn {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
  }
  .msk-send-btn:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(27,58,107,.4); }
  .msk-send-btn svg { width: 18px; height: 18px; fill: var(--white); }

  .typing-dots { display: flex; gap: 4px; padding: 4px 2px; }
  .typing-dots span {
    width: 7px; height: 7px;
    background: #b0b8cc;
    border-radius: 50%;
    animation: dot 1.2s infinite;
  }
  .typing-dots span:nth-child(2) { animation-delay: .2s; }
  .typing-dots span:nth-child(3) { animation-delay: .4s; }
  @keyframes dot {
    0%,80%,100% { transform: translateY(0); opacity: .6; }
    40%          { transform: translateY(-5px); opacity: 1; }
  }

  .input-error {
    font-size: 12px;
    color: #c0392b;
    padding: 4px 16px 0 16px;
    animation: msgIn .2s ease;
  }

  .file-upload-area {
    border: 2px dashed #c0c8d8;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    margin-left: 38px;
    margin-top: 4px;
    transition: border-color .2s, background .2s;
    animation: msgIn .3s ease;
  }
  .file-upload-area:hover { border-color: var(--navy); background: #f0f4fb; }
  .file-upload-area p { font-size: 13px; color: #6b7a99; margin-top: 6px; }
  .file-upload-area svg { width: 28px; height: 28px; fill: #a0a8c0; }
  #msk-file-input { display: none; }
  .uploaded-files-list { padding-left: 38px; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
  .uploaded-file-tag {
    background: #e8f4e0;
    border: 1px solid #b4d89a;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 12px;
    color: #2d6a1a;
    display: flex; align-items: center; gap: 5px;
  }
  .uploaded-file-tag svg { width: 12px; height: 12px; fill: #4f8a34; }

  .success-screen {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: msgIn .4s ease;
  }
  .success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(106,170,75,.35);
  }
  .success-icon svg { width: 36px; height: 36px; fill: var(--white); }
  .success-screen h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--navy-dark);
  }
  .success-screen p { font-size: 14px; color: #5a6580; line-height: 1.6; }

  .msk-progress {
    height: 3px;
    background: #e4e9f2;
    flex-shrink: 0;
  }
  .msk-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--navy));
    transition: width .5s ease;
    border-radius: 2px;
  }

  .step-label {
    text-align: center;
    font-size: 11px;
    color: #8899b8;
    padding: 6px 0 2px;
    letter-spacing: .5px;
    text-transform: uppercase;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
  }

  /* ── ANIMATIONS ── */

  /* Page load: body fade-in */
  body { animation: bodyFadeIn 0.5s ease forwards; }
  @keyframes bodyFadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* Scroll-reveal variants */
  .fade-up   { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
  .fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
  .fade-right{ opacity: 0; transform: translateX(32px);  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
  .fade-scale{ opacity: 0; transform: scale(0.92);       transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
  .fade-up.visible, .fade-left.visible, .fade-right.visible, .fade-scale.visible { opacity: 1; transform: none; }

  /* Stagger delays */
  .delay-1 { transition-delay: 0.10s; }
  .delay-2 { transition-delay: 0.20s; }
  .delay-3 { transition-delay: 0.30s; }
  .delay-4 { transition-delay: 0.40s; }
  .delay-5 { transition-delay: 0.50s; }

  /* Hero text entrance */
  .hero-badge   { animation: heroSlideDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
  .hero-headline{ animation: heroSlideUp   0.8s cubic-bezier(0.22,1,0.36,1) 0.4s  both; }
  .hero-btns    { animation: heroSlideUp   0.8s cubic-bezier(0.22,1,0.36,1) 0.58s both; }
  @keyframes heroSlideDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }
  @keyframes heroSlideUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:none; } }

  /* Section tag pop */
  .section-tag { animation: none; }
  .section-tag.visible { animation: tagPop 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
  @keyframes tagPop { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }

  /* Nav link hover underline already exists; add letter-spacing on hover */
  .nav-links a { transition: color 0.2s, letter-spacing 0.2s; }
  .nav-links a:hover { letter-spacing: 0.02em; }

  /* Card hover shimmer overlay */
  .svc-card::before, .mv-card::before, .wcu-card::before, .pro-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
  }
  .svc-card:hover::before, .mv-card:hover::before, .wcu-card:hover::before, .pro-card:hover::before {
    transform: translateX(100%);
  }

  /* Count-up numbers glow */
  .stat-num { display: inline-block; }

  /* Section divider animated line */
  .section-line {
    display: block; width: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--navy));
    border-radius: 2px; margin: 14px 0 28px;
    transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
  }
  .section-line.visible { width: 64px; }

  /* Floating animation for MV cards */
  .mv-card { animation: none; }
  .mv-card:nth-child(1) { animation: floatA 6s ease-in-out infinite; }
  .mv-card:nth-child(2) { animation: floatB 6s ease-in-out infinite; }
  @keyframes floatA { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
  @keyframes floatB { 0%,100%{ transform:translateY(-6px); } 50%{ transform:translateY(0); } }
  /* Pause float on hover */
  .mv-card:hover { animation-play-state: paused; }

  /* Scroll progress bar at top */
  #scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--green), var(--navy));
    z-index: 9999; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(106,170,75,0.5);
  }

  /* Why-item icon bounce on hover */
  .wcu-icon { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.2s; }
  .wcu-card:hover .wcu-icon { transform: scale(1.15) rotate(-6deg); background: var(--green); }

  /* RESPONSIVE */
  @media(max-width:1024px){ .values-grid{grid-template-columns:repeat(2,1fr)} .pro-grid{grid-template-columns:repeat(2,1fr)} .services-grid{grid-template-columns:repeat(2,1fr)} .footer-top{grid-template-columns:1fr 1fr;gap:32px} }
  @media(max-width:768px){
    .nav-links{display:none} .hamburger{display:flex}
    .about-grid,.why-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
    .mv-inner{grid-template-columns:1fr}
    .services-grid{grid-template-columns:1fr}
    .values-grid{grid-template-columns:1fr 1fr}
    .footer-top{grid-template-columns:1fr;gap:32px}
    .footer-bottom{flex-direction:column;gap:8px;text-align:center}
    .form-row{grid-template-columns:1fr}
    section{padding:64px 5%}
    #about{padding-top:100px}
    .wcu-grid{grid-template-columns:1fr 1fr!important;gap:16px!important}
    .mv-card p,.about-text p,.wcu-card p{text-align:justify}
    .about-text{order:-1} .about-visual{order:1}
    .pro-grid{grid-template-columns:1fr!important}
    .hero-arrow{width:36px;height:36px;font-size:16px}
    .hero-arrow.prev{left:10px} .hero-arrow.next{right:10px}
  }
  @media(max-width:480px){ .pro-grid{grid-template-columns:1fr} .values-grid{grid-template-columns:1fr} .wcu-grid{grid-template-columns:1fr!important} }
  @media(max-width:768px){ .cred-grid{ grid-template-columns:1fr !important; gap:40px !important; } .cred-divider{ display:none !important; } }