    :root {
      --primary:       #002a56;
      --primary-hover: #0d3570;
      --primary-soft:  rgba(10,42,86,0.07);
      --primary-mid:   rgba(10,42,86,0.15);
      --accent:        #1a6bff;
      --white:         #ffffff;
      --off:           #f5f7fb;
      --border:        #e2e8f0;
      --text:          #1e293b;
      --muted:         #64748b;
      --green:         #25D366;
      --red-soft:      #fff5f5;
      --red-border:    #fecaca;
      --green-soft:    #f0fdf4;
      --green-border:  #bbf7d0;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes slideLeft {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.90); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0 rgba(10,42,86,0.25); }
      70%  { box-shadow: 0 0 0 14px rgba(10,42,86,0); }
      100% { box-shadow: 0 0 0 0 rgba(10,42,86,0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .animate-fade-up    { opacity: 0; }
    .animate-fade-in    { opacity: 0; }
    .animate-slide-left { opacity: 0; }
    .animate-slide-right{ opacity: 0; }
    .animate-scale-in   { opacity: 0; }

    .animated.animate-fade-up    { animation: fadeUp    0.7s ease forwards; }
    .animated.animate-fade-in    { animation: fadeIn    0.6s ease forwards; }
    .animated.animate-slide-left { animation: slideLeft 0.7s ease forwards; }
    .animated.animate-slide-right{ animation: slideRight 0.7s ease forwards; }
    .animated.animate-scale-in   { animation: scaleIn   0.6s ease forwards; }

    .delay-1 { animation-delay: 0.1s !important; }
    .delay-2 { animation-delay: 0.2s !important; }
    .delay-3 { animation-delay: 0.3s !important; }
    .delay-4 { animation-delay: 0.4s !important; }
    .delay-5 { animation-delay: 0.5s !important; }
    .delay-6 { animation-delay: 0.6s !important; }


    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #061a38 0%, #0a2a56 55%, #0d3570 100%);
      padding: 85px 0 85px;
      position: relative; overflow: hidden;
    }
    .hero h1 {
      font-size: clamp(26px, 4vw, 46px);
      font-weight: 800; color: white;
      line-height: 1.15; letter-spacing: -0.5px;
    }
    .hero h1 span { color: #eaa13f; }
    .hero-desc { font-size: 14px; color: #94a8c7; line-height: 1.85; max-width: 480px; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      color: #b0c4de; font-size: 14px; font-weight: 500;
      padding: 5px 12px; border-radius: 5px;
    }

    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 16px; padding: 26px;
      backdrop-filter: blur(12px);
    }
    .hero-card-title {
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: #5a7aa8; margin-bottom: 16px;
    }
    .hero-stat {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 9px; padding: 13px 14px;
      transition: background 0.2s, border-color 0.2s;
    }
    .hero-stat:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(26,107,255,0.3);
    }
    .hero-stat-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(26,107,255,0.18);
      border: 1px solid rgba(26,107,255,0.25);
      display: flex; align-items: center; justify-content: center;
      color: #ffffff; font-size: 16px; flex-shrink: 0;
    }
    .hero-stat-strong { display: block; color: white; font-size: 16px; font-weight: 600; }
    .hero-stat-sub    { font-size: 16px; color: #7a96b8; line-height: 1.3; }

    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--white);
      background: rgba(26,107,255,0.08);
      border: 1px solid rgba(26,107,255,0.18);
      padding: 5px 14px; border-radius: 20px;
      margin-bottom: 14px;
    }
    .sec-label {
      font-size: 13px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: #eaa13f; margin-bottom: 8px;
    }
    .sec-title {
      font-size: clamp(20px, 2.8vw, 29px);
      font-weight: 800; color: var(--primary);
      line-height: 1.22; margin-bottom: 12px; letter-spacing: -0.3px;
    }
    .sec-body { font-size: 16px; color: var(--muted); line-height: 1.9; max-width: 600px; }

    /* ── SECTION SPACING ── */
    .section { padding: 80px 0; }
    .section-alt { background: var(--off); }

    /* ── OVERVIEW ── */
    .overview-img-wrap {
      border-radius: 14px; overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(10,42,86,0.08);
      background: var(--off);
    }
    .overview-img-wrap img {
      width: 100%; height: 280px;
      object-fit: contain; padding: 28px;
    }
    .chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--primary-soft);
      border: 1px solid var(--primary-mid);
      border-radius: 7px; padding: 7px 13px;
      font-size: 12px; font-weight: 600; color: var(--primary);
    }

    /* ── CHALLENGE ── */
    .challenge-item {
      display: flex; gap: 13px; align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 11px; padding: 18px;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .challenge-item:hover {
      border-color: #002a56;
      box-shadow: 0 6px 20px rgba(239,68,68,0.08);
      transform: translateY(-3px);
    }
    .ch-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: var(--red-soft); border: 1px solid var(--red-border);
      display: flex; align-items: center; justify-content: center;
      color: #002a56; font-size: 16px; flex-shrink: 0;
    }
    .ch-title { font-size: 18px; font-weight: 700; color: #002a56; margin-bottom: 3px; }
    .ch-desc  { font-size: 15px; color: var(--muted); line-height: 1.65; }

    /* ── WHAT WE DID ── */
    .wwd-row {
      padding: 40px 0;
      border-bottom: 1px solid var(--border);
    }
    .wwd-row:last-child { border-bottom: none; }
    .wwd-img-box {
      border-radius: 13px; overflow: hidden;
      border: 1px solid var(--border); background: var(--off);
      transition: box-shadow 0.3s;
    }
    .wwd-img-box:hover { box-shadow: 0 10px 40px rgba(10,42,86,0.10); }
    .wwd-img-box img { width: 100%; height: auto; object-fit: cover; }
    .wwd-placeholder {
      height: 230px; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #94a3b8; font-size: 12px; gap: 10px;
    }
    .wwd-placeholder i { font-size: 36px; color: #cbd5e1; }
    .wwd-number {
      font-size: 13px; font-weight: 700;
      letter-spacing: 2px; color: #eaa13f;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .wwd-title { font-size: 25px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
    .wwd-desc  { font-size: 17px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
    .wwd-benefit {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--green-soft);
      border: 1px solid var(--green-border);
      border-radius: 7px; padding: 7px 14px;
      font-size: 12px; font-weight: 600; color: #166534;
    }

    /* ── RESULTS ── */
    .result-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 14px; padding: 28px 18px; text-align: center;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
      height: 100%;
    }
    .result-card:hover {
      box-shadow: 0 8px 28px rgba(10,42,86,0.12);
      border-color: #93c5fd;
      transform: translateY(-4px);
    }
    .result-icon {
      width: 52px; height: 52px; border-radius: 13px;
      background: var(--primary-soft);
      border: 1px solid var(--primary-mid);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: var(--primary);
      margin: 0 auto 14px;
    }
    .result-num   { font-size: 34px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
    .result-label { font-size: 12px; color: var(--muted); line-height: 1.5; }

    /* ── BVA ── */
    .bva-card { border-radius: 13px; padding: 26px 22px; height: 100%; }
    .bva-before { background: var(--red-soft); border: 1px solid var(--red-border); }
    .bva-after  { background: var(--green-soft); border: 1px solid var(--green-border); }
    .bva-head   { font-size: 22px; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 7px; }
    .bva-before .bva-head { color: #b91c1c; }
    .bva-after  .bva-head { color: #166534; }
    .bva-list   { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
    .bva-list li { font-size: 16px; line-height: 1.6; display: flex; gap: 9px; align-items: flex-start; }
    .bva-before .bva-list li { color: #7f1d1d; }
    .bva-after  .bva-list li { color: #14532d; }
    .bva-before .bva-list li i { color: #ef4444; flex-shrink: 0; margin-top: 2px; }
    .bva-after  .bva-list li i { color: #22c55e; flex-shrink: 0; margin-top: 2px; }

    /* ── PROOF ── */
    .proof-card {
      border: 1px solid var(--border); border-radius: 13px;
      overflow: hidden; background: var(--white);
      transition: box-shadow 0.25s, transform 0.25s;
      height: 100%;
    }
    .proof-card:hover { box-shadow: 0 8px 28px rgba(10,42,86,0.10); transform: translateY(-3px); }
    .proof-img   { width: 100%; height: 200px; object-fit: cover; }
    .proof-placeholder {
      width: 100%; height: 200px; background: var(--off);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #94a3b8; font-size: 12px; gap: 9px; text-align: center; padding: 18px;
    }
    .proof-placeholder i { font-size: 32px; color: #cbd5e1; }
    .proof-cap   { padding: 14px 16px; font-size: 21px; font-weight: 700; color: #002a56; border-top: 1px solid var(--border); }
    .proof-sub   { font-size: 16px; color: var(--muted); font-weight: 400; margin-top: 2px; }

    /* ── TESTIMONIAL ── */
    .testimonial-wrap {
      background: var(--primary);
      border-radius: 18px; padding: 44px 40px;
      position: relative; overflow: hidden;
    }
    .testimonial-wrap::before {
      content: '\201C';
      position: absolute; top: 10px; right: 28px;
      font-size: 130px; font-weight: 900; line-height: 1;
     color: rgb(255 255 255 / 56%);
      font-family: Georgia, serif; pointer-events: none;
    }
    .t-text {
      font-size: 19px; font-style: italic;
      color: #b8cde8; line-height: 1.9;
      /* max-width: 580px;  */
      margin-bottom: 26px;
      padding-top: 27px;
    }
    .t-placeholder { font-size: 13px; color: #5a7aa8; font-style: italic; margin-top: 8px; }
    .t-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 2px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: white; font-weight: 700; flex-shrink: 0;
    }
    .t-name { font-size: 19px; font-weight: 700; color: white; }
    .t-role { 
      font-size: 16px;
      color: #7da8e7;
  }

    /* ── ADDRESS ── */
    .address-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 13px; padding: 22px 20px;
      display: flex; gap: 14px; align-items: flex-start;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
      height: 100%;
    }
    .address-card:hover {
      box-shadow: 0 6px 22px rgba(10,42,86,0.08);
      border-color: #93c5fd; transform: translateY(-2px);
    }
    .addr-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--primary-soft); border: 1px solid var(--primary-mid);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--primary); flex-shrink: 0;
    }
    .addr-label {
      font-size: 16px; font-weight: 700;
      letter-spacing: 1.8px; text-transform: uppercase;
      color: #eaa13f; margin-bottom: 5px;
    }
    .addr-strong { display: block; color: #002a56; font-weight: 600; font-size: 21px; margin-bottom: 3px; }
    .addr-text   { font-size: 16px; color: var(--muted); line-height: 1.75; }

    /* ── CTA ── */
    .cta-section-2 {
      background: #f5f7fb;
      border-top: 1px solid #e2e8f0;
      padding: 88px 0; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(10,42,86,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-section-2 h2 {
      font-size: clamp(22px, 3.5vw, 36px);
      font-weight: 800; color: var(--primary);
      margin: 14px 0; line-height: 1.22; letter-spacing: -0.4px;
    }
    .cta-section-2 p { font-size: 17px; color: var(--muted); line-height: 1.85; }
    .btn-wa-2{
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green); color: white;
      font-size: 14px; font-weight: 700;
      padding: 13px 26px; border-radius: 9px;
      transition: opacity 0.2s, transform 0.2s;
      animation: pulse-ring 2.5s infinite;
    }
    .btn-wa:hover { opacity: 0.88; transform: translateY(-2px); color: white; }
    .btn-outline-primary-custom {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--primary);
      font-size: 14px; font-weight: 600;
      padding: 13px 26px; border-radius: 9px;
      border: 1.5px solid var(--primary-mid);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .btn-outline-primary-custom:hover {
      background: var(--primary-soft); border-color: var(--primary);
      transform: translateY(-2px); color: var(--primary);
    }

    /* ── DIVIDER ── */
    .section-divider {
      height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0;
    }
    
    /* ---------case study cca-------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── Navbar ── */

/* ── Hero ── */
.sm-hero-2 {
  background: #f8fafb;
  padding: 64px 0 56px;
  border-bottom: 1px solid #e5e7eb;
}

.sm-hero-2 .breadcrumb-line {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sm-hero-2 .breadcrumb-line a {
  color: #6b7280;
  text-decoration: none;
}

.sm-hero-2 .breadcrumb-line a:hover {
  color: #002a56;
}

.sm-hero-2 .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.tag-gray {
  background: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.tag-green {
  background: #f0fdf4;
  color: #002a56;
  border: 1px solid #bbf7d0;
}

.sm-hero-2 h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #002a56;
  margin: 16px 0 12px;
  line-height: 1.2;
}

.sm-hero-2 .subheadline {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.check-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #002a56;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 20px;
}

.rank-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.rank-card .big-num {
  font-size: 72px;
  font-weight: 700;
  color: #002a56;
  line-height: 1;
  margin: 0;
}

.rank-card .rank-label {
  font-size: 19px;
  color: #374151;
  margin: 8px 0 4px;
  font-weight: 500;
}

.rank-card .rank-keyword {
  font-size: 14px;
  color: #9ca3af;
}

/* ── Sections ── */
.sm-section-2 {
  padding: 56px 0;
}

.sm-section-2+.sm-section-2 {
  border-top: 1px solid #f3f4f6;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eaa13f;
  margin-bottom: 8px;
}

.section-heading {
  font-size: clamp(20px, 3vw, 26px);
  /* font-weight: 700; */
  color: #002a56;
  margin: 0 0 16px;
  line-height: 1.3;
}

.section-body {
  /* font-size: 15px; */
  color: #4b5563;
  line-height: 1.8;
  /* max-width: 640px; */
}

/* ── Challenge cards ── */
.pain-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  transition: box-shadow 0.2s;
}

.pain-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pain-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon i {
  font-size: 20px;
  color: #002a56;
}

.pain-title {
  font-size: 20px;
  font-weight: 600;
  color: #002a56;
  margin: 0 0 14px;
}

.pain-body {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* ── Steps ── */
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #002a56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-title {
  font-size: 19px;
  font-weight: 600;
  color: #002a56;
  margin: 0 0 4px;
}

.step-body {
  font-size: 15px;
  color: #002a56;
  margin: 0;
  line-height: 1.6;
}

/* ── Metrics ── */
.metric-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.metric-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #002a56;
  line-height: 1;
  margin: 0;
}

.metric-label {
  font-size: 12px;
  color: #4b5563;
  margin: 8px 0 0;
  font-weight: 500;
}

/* ── Proof grid ── */
.proof-placeholder {
  background: #f0fdf4;
  border: 1.5px dashed #86efac;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.proof-placeholder:hover {
  background: #dcfce7;
}

.proof-placeholder i {
  font-size: 28px;
  color: #002a56;
}

.proof-placeholder p {
  font-size: 12px;
  color: #15803d;
  margin: 0;
  font-weight: 500;
}

/* ── Proof image ── */
.proof-img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ── Featured proof image ── */
.proof-featured {
  border-radius: 14px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.proof-featured-placeholder {
  background: #f0fdf4;
  border: 2px dashed #86efac;
  border-radius: 14px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.proof-featured-placeholder i {
  font-size: 40px;
  color: #002a56;
}

.proof-featured-placeholder p {
  font-size: 13px;
  color: #15803d;
  margin: 0;
  font-weight: 500;
}

/* ── Video Section ── */
.video-section {
  padding: 56px 0;
  background: #f8fafb;
}

/* ── Proof card hover ── */
.proof-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.proof-card-label {
  font-size: 16px;
  font-weight: 600;
  color: #002a56;
  padding: 10px 14px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-card-label i {
  color: #002a56;
  font-size: 14px;
}

/* ── Scroll reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Testimonial ── */
.testimonial-block {
  background: #f8fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 36px;
  border-left: 4px solid #002a56;
}

.quote-mark {
  font-size: 48px;
  color: #002a56;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 16px;
  color: #1f2937;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #002a56;
  flex-shrink: 0;
}

.quote-name {
  font-size: 14px;
  font-weight: 600;
  color: #002a56;
  margin: 0;
}

.quote-role {
  font-size: 12px;
  color: #6b7280;
  margin: 2px 0 0;
}

/* ── CTA ── */
.cta-block {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 40px 36px;
}

.cta-block h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #0f1117;
  margin: 0 0 8px;
}

.cta-block p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.7;
}

.sm-btn {
  display: inline-block;
  background: #002a56;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.sm-btn:hover {
  background: #002a56;
  color: #fff;
  transform: translateY(-1px);
}

.sm-btn-outline {
  display: inline-block;
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 9px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.sm-btn-outline:hover {
  border-color: #002a56;
  color: #002a56;
}

.approach {
  position: relative;
}

.sm-approach {
  position: sticky;
  top: 60px;
  align-self: flex-start;
}

@media (max-width:991px) {
  .sm-approach {
    position: static;
  }
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .sm-hero-2 {
    padding: 40px 0 36px;
  }

  .rank-card {
    margin-top: 32px;
  }

  .sm-section-2 {
    padding: 40px 0;
  }

  .testimonial-block {
    padding: 24px;
  }

  .cta-block {
    padding: 28px 20px;
  }

  .nav-links-wrap,
  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 480px) {
  .metric-card {
    padding: 18px 10px;
  }
}
/* ---------case study cca end-------------- */