/* =========================================================================
   HOMEPAGE SECTIONS — Premium Redesign v2
   Replaces the old pinned scroll experience with 5 standalone sections
   ========================================================================= */

/* === SECTION: COUNTRIES (Dark, elegant card strip) === */
.countries-section {
  background: #1A1A1A;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 2rem var(--container-pad) 0;
}
.countries-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.countries-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(166,138,100,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.countries-section .section-header h2 { color: #fff; }
.countries-section .section-header p { color: rgba(255,255,255,0.5); }
.countries-section .tagline { color: var(--secondary); }

/* Country cards auto-scroll strip */
.countries-strip {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 1rem 0 0.5rem;
}
.countries-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: countriesScroll 35s linear infinite;
}
.countries-track:hover {
  animation-play-state: paused;
}
@keyframes countriesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.country-card-v2 {
  flex: 0 0 170px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.country-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(166,138,100,0.12) 0%, rgba(255,0,0,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.country-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(166,138,100,0.25);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.country-card-v2:hover::before { opacity: 1; }

.country-card-v2 img {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}
.country-card-v2 h4 {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* === DECORATIVE LONDON IMAGES === */
.testimonial-bg-art {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 55%;
  max-width: 650px;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.trust-bg-art {
  position: absolute;
  right: -8%;
  bottom: -15%;
  width: 45%;
  max-width: 550px;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.trust-section {
  position: relative;
  overflow: hidden;
}
.cta-bg-art {
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 50%;
  max-width: 500px;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .testimonial-bg-art,
  .trust-bg-art,
  .cta-bg-art {
    width: 70%;
    opacity: 0.05;
  }
}

/* Feather generated decorative canvases into their section backgrounds. */
.testimonial-bg-art,
.trust-bg-art,
.cta-bg-art {
  right: 0;
  mix-blend-mode: multiply;
  filter: saturate(0.82) contrast(1.04);
  -webkit-mask-image: radial-gradient(ellipse at 62% 58%, #000 0%, rgba(0, 0, 0, 0.92) 42%, rgba(0, 0, 0, 0.46) 68%, transparent 96%);
  mask-image: radial-gradient(ellipse at 62% 58%, #000 0%, rgba(0, 0, 0, 0.92) 42%, rgba(0, 0, 0, 0.46) 68%, transparent 96%);
}

.cta-bg-art {
  inset: -18% auto auto -4%;
  width: 54%;
  height: 138%;
  max-width: none;
}

@media (max-width: 768px) {
  .testimonial-bg-art,
  .trust-bg-art,
  .cta-bg-art {
    right: 0;
    opacity: 0.07;
  }

  .cta-bg-art {
    inset: -8% auto auto -16%;
    width: 92%;
    height: 116%;
  }
}

/* Minimal transparent cutouts: small edge accents rather than image fields. */
.testimonials-v2,
.trust-section,
.cta-banner {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.testimonials-v2 > .container,
.trust-section > .container,
.cta-banner > :not(.generated-paper-art) {
  position: relative;
  z-index: 1;
}

.testimonial-bg-art,
.trust-bg-art,
.cta-bg-art {
  bottom: auto;
  display: block !important;
  height: auto;
  left: auto;
  mask-image: none;
  -webkit-mask-image: none;
  mix-blend-mode: normal;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 0;
}

.testimonial-bg-art {
  max-width: 230px;
  opacity: 0.12;
  right: -1.5rem;
  top: 2.5rem;
  width: 18vw;
}

.trust-bg-art {
  bottom: -1.5rem;
  max-width: 270px;
  opacity: 0.18;
  right: -1.5rem;
  top: auto;
  width: 21vw;
}

.cta-bg-art {
  bottom: -2.5rem;
  height: auto;
  inset: auto -1.5rem -2.5rem auto;
  max-width: 250px;
  opacity: 0.22;
  width: 22vw;
}

@media (max-width: 768px) {
  .testimonial-bg-art,
  .trust-bg-art,
  .cta-bg-art {
    display: none !important;
  }
}

/* === SECTION: SERVICES (Bento Grid) === */
.services-bento {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.bento-card {
  background: #fff;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(17,17,17,0.08);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: transparent;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover .bento-icon { background: rgba(96,165,250,0.16); color: var(--support-blue); }
.bento-card:hover h3, .bento-card:hover p { color: #fff; }
.bento-card:hover p { color: rgba(255,255,255,0.7); }

.bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card--hero .bento-icon {
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
  border-radius: 22px;
}
.bento-card--hero h3 { font-size: 1.5rem; margin-top: 1.5rem; }
.bento-card--hero p { font-size: 1rem; margin-top: 0.75rem; max-width: 320px; }

.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-platinum);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}
.bento-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}
.bento-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.4s ease;
}
.bento-card .bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}
.bento-card:hover .bento-link { color: var(--support-blue); }
.bento-card .bento-link i { transition: transform 0.3s ease; }
.bento-card:hover .bento-link i { transform: translateX(4px); }

/* Bento stagger reveal */
.bento-grid .bento-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.bento-grid.active .bento-card { opacity: 1; transform: translateY(0); }
.bento-grid.active .bento-card:nth-child(1) { transition-delay: 0s; }
.bento-grid.active .bento-card:nth-child(2) { transition-delay: 0.08s; }
.bento-grid.active .bento-card:nth-child(3) { transition-delay: 0.16s; }
.bento-grid.active .bento-card:nth-child(4) { transition-delay: 0.24s; }
.bento-grid.active .bento-card:nth-child(5) { transition-delay: 0.32s; }
.bento-grid.active .bento-card:nth-child(6) { transition-delay: 0.40s; }

/* === SECTION: HOW IT WORKS (Timeline) === */
.hiw-section {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
}
.hiw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding: 2rem 0;
}
.hiw-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--support-blue);
  border-radius: 3px;
}
.hiw-step {
  text-align: center;
  position: relative;
  padding: 0 1.25rem;
}
.hiw-dot {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 4px solid var(--bg-platinum);
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hiw-dot-inner {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.hiw-step:hover .hiw-dot {
  border-color: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(255,0,0,0.08);
}
.hiw-step:hover .hiw-dot-inner {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255,0,0,0.4);
}
.hiw-step-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--support-blue);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.6rem;
}
.hiw-step h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.hiw-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* HIW stagger */
.hiw-timeline .hiw-step {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hiw-timeline.active .hiw-step { opacity: 1; transform: translateY(0); }
.hiw-timeline.active .hiw-step:nth-child(1) { transition-delay: 0.1s; }
.hiw-timeline.active .hiw-step:nth-child(2) { transition-delay: 0.25s; }
.hiw-timeline.active .hiw-step:nth-child(3) { transition-delay: 0.4s; }
.hiw-timeline.active .hiw-step:nth-child(4) { transition-delay: 0.55s; }

/* === SECTION: TESTIMONIALS (Stacked Cards) === */
.testimonials-v2 {
  padding: clamp(6rem, 11vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.testimonials-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(238,236,232,0.7) 0%, transparent 70%);
  z-index: -1;
}
.testimonials-layout.center-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.testimonial-meta .tagline { margin-bottom: 0.75rem; }
.testimonial-meta h2 {
  font-size: var(--text-h2);
  color: var(--dark);
  margin-bottom: 1.25rem;
  max-width: 560px;
  line-height: 1.05;
}
.testimonial-meta > p {
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.testimonial-big-quote {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(255,0,0,0.06);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: -10px;
  pointer-events: none;
  user-select: none;
}
.testimonial-author-block {
  margin-top: 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.testimonial-author-block .t-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author-block .t-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.5rem;
}
.testimonial-controls button {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-controls button:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: scale(1.08);
}
.testimonial-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.testimonial-stage {
  position: relative;
  width: 100%;
  padding: 0 34px 34px 0;
}

.testimonial-deck {
  position: relative;
  height: 460px;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.t-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #141414 0%, #242424 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
  opacity: 0;
  transform: translateX(90px) translateY(20px) scale(0.88);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Active card — front and center */
.t-card.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
  z-index: 5;
  box-shadow: 0 32px 70px rgba(0,0,0,0.20), 0 8px 24px rgba(0,0,0,0.10);
}

/* First card behind */
.t-card.behind-1 {
  opacity: 0.5;
  transform: translateX(18px) translateY(18px) scale(0.97);
  z-index: 4;
  box-shadow: 12px 18px 35px rgba(0,0,0,0.09);
}

/* Second card behind */
.t-card.behind-2 {
  opacity: 0.22;
  transform: translateX(34px) translateY(34px) scale(0.94);
  z-index: 3;
  box-shadow: 12px 20px 30px rgba(0,0,0,0.06);
}

/* Exiting card */
.t-card.exit-left {
  opacity: 0;
  transform: translateX(-110px) translateY(-8px) scale(0.94);
  z-index: 6;
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card.exit-right {
  opacity: 0;
  transform: translateX(110px) translateY(-8px) scale(0.94);
  z-index: 6;
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Internal Card Layout */
.t-quote-icon {
  font-size: 2rem;
  color: var(--support-blue);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.t-quote {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  color: #ffffff;
  line-height: 1.65;
  flex: 1;
  font-weight: 500;
}
.t-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.t-author-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.t-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.64);
  margin-top: 0.2rem;
}
.t-rating {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 6px;
}
.t-rating i {
  color: var(--support-blue);
}

/* === SECTION: WHY CHOOSE US (Trust Grid) === */
.trust-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.trust-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trust-item {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.trust-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,0,0,0.3), rgba(166,138,100,0.3), rgba(255,0,0,0.15));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.trust-item:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.trust-item:hover::after { opacity: 1; }

.trust-item-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-platinum);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.trust-item:hover .trust-item-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.trust-item h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.trust-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Trust stagger */
.trust-grid-v2 .trust-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.trust-grid-v2.active .trust-item { opacity: 1; transform: translateY(0); }
.trust-grid-v2.active .trust-item:nth-child(1) { transition-delay: 0s; }
.trust-grid-v2.active .trust-item:nth-child(2) { transition-delay: 0.07s; }
.trust-grid-v2.active .trust-item:nth-child(3) { transition-delay: 0.14s; }
.trust-grid-v2.active .trust-item:nth-child(4) { transition-delay: 0.21s; }
.trust-grid-v2.active .trust-item:nth-child(5) { transition-delay: 0.28s; }
.trust-grid-v2.active .trust-item:nth-child(6) { transition-delay: 0.35s; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--hero { grid-column: span 2; grid-row: span 1; }
  .bento-grid .bento-card:last-child { grid-column: 1 / -1; }
  .hiw-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hiw-timeline::before { display: none; }
  .testimonials-layout.center-layout {
    grid-template-columns: minmax(250px, 0.82fr) minmax(390px, 1.18fr);
    gap: 3rem;
  }
  .testimonial-deck { height: 420px; }
  .trust-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .countries-section { border-radius: 24px; margin: 1rem 1rem 0; }
  .country-card-v2 { flex: 0 0 155px; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--hero { grid-column: span 1; }
  .bento-grid .bento-card:last-child { grid-column: auto; }
  .hiw-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 45px;
  }
  .hiw-step { text-align: left; padding: 0 0 0 1.5rem; }
  .hiw-dot {
    position: absolute;
    left: -45px;
    top: 0;
    margin: 0;
    width: 36px;
    height: 36px;
  }
  .hiw-step p { max-width: 100%; margin: 0; }
  .testimonials-layout.center-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonial-stage { padding: 0 18px 22px 0; }
  .testimonial-deck { height: 460px; max-width: none; }
  .t-card { padding: 1.5rem; }
  .t-card .t-quote { font-size: 0.95rem; }
  .t-card.behind-1 { transform: translateX(9px) translateY(10px) scale(0.97); }
  .t-card.behind-2 { transform: translateX(18px) translateY(20px) scale(0.94); }
  .t-card.exit-left { transform: translateX(-80px) translateY(-5px) scale(0.9) rotate(-8deg); }
  .t-card.exit-right { transform: translateX(80px) translateY(-5px) scale(0.9) rotate(8deg); }
  .testimonial-controls { justify-content: flex-start; }
  .trust-grid-v2 { grid-template-columns: 1fr; }
  .countries-section { border-radius: 20px; margin: 0.5rem 0.5rem 0; }
  .country-card-v2 { flex: 0 0 140px; padding: 1.25rem 1rem; }
  .country-card-v2 img { width: 48px; height: 34px; }
}
