:root {
  --green-950: #02120d;
  --green-900: #041c12;
  --green-800: #09472e;
  --green-700: #0f6c44;
  --green-600: #1ba063;
  --green-500: #22c55e;
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  
  --shadow-sm: 0 4px 12px rgba(15, 108, 68, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 108, 68, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 108, 68, 0.16);
  --shadow-glow: 0 0 20px rgba(34, 197, 94, 0.4);
  --shadow: var(--shadow-lg);
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(24px);
  
  --radius: 12px;
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  zoom: 0.8;
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 7% 18%, rgba(21, 122, 67, 0.05), transparent 18%),
    radial-gradient(ellipse at 94% 38%, rgba(184, 132, 24, 0.05), transparent 18%);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
}

body::before {
  top: 120px;
  left: 18px;
  width: 120px;
  height: 180px;
  background:
    radial-gradient(ellipse at 35% 20%, rgba(12, 90, 52, 0.13) 0 13px, transparent 14px),
    radial-gradient(ellipse at 65% 35%, rgba(12, 90, 52, 0.1) 0 12px, transparent 13px),
    radial-gradient(ellipse at 28% 56%, rgba(12, 90, 52, 0.09) 0 11px, transparent 12px),
    linear-gradient(115deg, transparent 46%, rgba(12, 90, 52, 0.18) 47% 50%, transparent 51%);
  transform: rotate(-18deg);
}

body::after {
  right: 0;
  bottom: 120px;
  width: 160px;
  height: 220px;
  background:
    radial-gradient(ellipse at 60% 18%, rgba(12, 90, 52, 0.12) 0 15px, transparent 16px),
    radial-gradient(ellipse at 38% 39%, rgba(12, 90, 52, 0.1) 0 13px, transparent 14px),
    radial-gradient(ellipse at 70% 58%, rgba(12, 90, 52, 0.08) 0 12px, transparent 13px),
    linear-gradient(65deg, transparent 46%, rgba(12, 90, 52, 0.16) 47% 50%, transparent 51%);
  transform: rotate(18deg);
}

img,
video {
  display: block;
  max-width: 100%;
}

.highlight-olive {
  color: var(--green-700);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 17.5px max(25px, calc((100vw - var(--max)) / 2));
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
}

.brand img {
  width: 315px;
  height: 87.5px;
  object-fit: cover;
  object-position: left center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32.5px;
  font-size: 17.5px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: #1f2923;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--green-700);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid var(--green-800);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  min-height: 57.5px;
  padding: 0 27.5px;
  border-radius: 8.75px;
  font-size: 17.5px;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  box-shadow: 0 12px 24px rgba(12, 90, 52, 0.2);
}

.btn.secondary {
  color: var(--green-800);
  background: var(--white);
}

.btn.secondary.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 1.04;
  color: var(--green-950);
}

h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background:
    radial-gradient(circle at 92% 12%, rgba(212, 165, 53, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f9fbf8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 42px;
  border-bottom: 5px solid rgba(184, 132, 24, 0.55);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.hero-copy p {
  max-width: 570px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 38px;
}

.hero-proof span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof strong {
  display: block;
  color: var(--green-800);
  font-size: 1.25rem;
}

.hero-carousel {
  position: relative;
  border-radius: 8px;
  background: transparent;
}

.hero-story-carousel {
  overflow: visible;
}

.hero-story-carousel .carousel-viewport {
  display: grid;
  min-height: 650px;
}

.hero-story-slide {
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
  display: grid;
  align-items: center;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
  padding: 8px 0 54px;
}

.hero-slide-copy {
  position: relative;
  z-index: 2;
}

.hero-slide-copy h1 {
  max-width: 680px;
  font-size: clamp(4rem, 6.7vw, 6.35rem);
}

.voucher-story-slide .hero-slide-copy h1 {
  font-size: clamp(2.75rem, 3.6vw, 3.7rem);
  line-height: 1.02;
}

.hero-kicker {
  margin: 0 0 16px !important;
  color: var(--green-700) !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: darken;
}

.voucher-deck-visual {
  display: grid;
  place-items: center;
  background: transparent;
}

.voucher-deck-visual .cards-container {
  height: 590px;
  margin-top: 0;
}

@keyframes heroHeadingDrop {
  from {
    opacity: 0;
    transform: translateY(-52px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-story-slide .hero-slide-copy > * {
  opacity: 0;
}

.hero-story-slide.active.is-entering .hero-slide-copy h1 {
  animation: heroHeadingDrop 0.78s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-story-slide .hero-slide-copy > .hero-kicker {
  opacity: 1;
}

.hero-story-slide.active.is-entering .hero-slide-copy > p:not(.hero-kicker) {
  animation: heroContentRise 0.58s 0.18s ease-out forwards;
}

.hero-story-slide.active.is-entering .hero-actions {
  animation: heroContentRise 0.58s 0.3s ease-out forwards;
}

.hero-story-slide.active.is-entering .hero-proof {
  animation: heroContentRise 0.62s 0.4s ease-out forwards;
}

.hero-story-slide .hero-visual {
  opacity: 0;
  transform: translateX(36px) scale(0.98);
}

.hero-story-slide.active.is-entering .hero-visual {
  animation: heroVisualIn 0.8s 0.08s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroVisualIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.model-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

@keyframes fallIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat-chip {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  max-width: 235px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(5, 32, 20, 0.18);
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0;
  animation: none;
}

.hero-story-slide.active.is-entering .hero-stat-chip {
  animation: fallIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-story-carousel .carousel-btn {
  top: 50%;
  transform: translateY(-50%);
}

.hero-story-carousel .carousel-btn.prev {
  left: -18px;
}

.hero-story-carousel .carousel-btn.next {
  right: -18px;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-stat-chip span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f3ec;
  color: var(--green-700);
}

.hero-stat-chip strong {
  display: block;
  color: var(--green-800);
  font-size: 1.18rem;
  line-height: 1;
}

.chip-one {
  top: 34px;
  left: 34px;
  animation-delay: 0.1s;
}

.chip-two {
  top: 92px;
  right: 28px;
  animation-delay: 0.3s;
}

.chip-three {
  left: 28px;
  bottom: 84px;
  animation-delay: 0.5s;
}

.chip-four {
  right: 30px;
  bottom: 40px;
  animation-delay: 0.7s;
}

.voucher-hero .hero-visual {
  height: 500px;
  perspective: 1000px;
}

/* Freedom Banner */
.freedom-banner {
  background: #eaf1ed;
  padding: 80px 20px;
  text-align: center;
  border-top: 6px solid var(--green-700);
}

.freedom-banner h2 {
  color: var(--green-950);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.freedom-banner p {
  color: var(--green-800);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  margin: 0;
}

.compact-caption {
  max-width: 360px;
}

.logo-rail-section {
  padding: 60px 0 0;
  overflow: hidden;
  background: var(--white);
}

.logo-rail-section h2 {
  text-align: center;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.marquee {
  --speed: 32s;
  margin-top: 18px;
  padding: 10px 0 18px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  gap: 14px;
  animation: marquee var(--speed) linear infinite;
}

.marquee.reverse .marquee-track {
  animation-direction: reverse;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 145px;
  min-height: 58px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(5, 32, 20, 0.06);
  font-weight: 800;
  color: var(--green-800);
}

.marquee img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.marquee.image-only span {
  padding: 0;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 80px;
  overflow: hidden;
}

.marquee.image-only img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Using contain so logos aren't cropped */
  border-radius: 8px;
}

.partner-rail {
  padding-top: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.split-heading p,
.center-heading p {
  max-width: 690px;
  margin-top: 12px;
  font-size: 1rem;
}

.text-link {
  flex: none;
  color: var(--green-700);
  font-weight: 800;
}

.media-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.carousel-viewport {
  position: relative;
  min-height: 560px;
}

.media-carousel .carousel-viewport {
  min-height: auto;
  aspect-ratio: 16 / 9;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.media-carousel .carousel-slide img,
.media-carousel .carousel-slide video {
  min-height: auto;
}

.slide-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 440px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(5, 32, 20, 0.18);
}

.slide-caption p {
  margin-top: 6px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 32, 20, 0.2);
  font-size: 30px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 36, 23, 0.28);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 26px;
  background: var(--green-700);
}

.solutions-preview {
  background: var(--soft);
}

.solution-grid,
.deep-card-grid,
.category-grid,
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card,
.category-grid article,
.occasion-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 32, 20, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.solution-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--green-800);
  background: linear-gradient(135deg, #e8f3ec 0%, #cde5d7 100%);
  box-shadow: 0 6px 16px rgba(21, 122, 67, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card .icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.solution-card:hover .icon {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  color: var(--white);
  transform: scale(1.08) translateY(-4px) rotate(4deg);
  box-shadow: 0 12px 24px rgba(21, 122, 67, 0.3);
}

.solution-card p,
.category-grid p,
.occasion-grid p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.gifting-template {
  background:
    radial-gradient(circle at 10% 10%, rgba(21, 122, 67, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, var(--soft));
}

.gifting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

a.gifting-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  text-decoration: none;
  display: block;
  color: inherit;
}

.gifting-card {
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(0,0,0,0.02);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gifting-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.gifting-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-weight: 900;
  transition: all 0.3s ease;
}

.gifting-card:hover span {
  background: #e8f3ec;
  color: var(--green-800);
  transform: scale(1.1);
}

.featured-gifting:hover span {
  background: var(--white);
  color: var(--green-800);
}

.gifting-card p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.featured-gifting {
  grid-column: span 2;
  color: var(--white);
  background: var(--green-700);
}

.featured-gifting h3,
.featured-gifting p {
  color: var(--white);
}

.featured-gifting p {
  opacity: 0.9;
}

.impact-section {
  padding: 74px 0;
  background: var(--white);
}

.impact-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 165, 53, 0.22), transparent 26%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.impact-card h2,
.impact-card p {
  color: var(--white);
}

.impact-card p {
  opacity: 0.82;
  margin-top: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.stat {
  padding: 10px 0 10px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.stat strong {
  display: block;
  color: #ffe4a3;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.testimonials {
  position: relative;
  background: radial-gradient(circle at top right, rgba(21, 122, 67, 0.04), transparent 50%), var(--white);
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: Georgia, serif;
  font-size: 400px;
  color: rgba(21, 122, 67, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials h2,
.center-heading {
  text-align: center;
}

.center-heading {
  margin-bottom: 40px;
}

.testimonials h2 {
  margin-bottom: 28px;
}

.testimonial-carousel {
  position: relative;
  padding: 0 60px 50px;
}

.testimonial-carousel .carousel-dots {
  bottom: 0;
}

.testimonial-carousel .carousel-btn {
  transform: translateY(-50%);
  top: calc(50% - 10px);
}

.testimonial-viewport {
  display: grid;
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 20px 10px 40px; /* space for shadows */
  margin: 0 -10px;
}

.testimonial-carousel .carousel-slide {
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-carousel .carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f9fdfa);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(5, 32, 20, 0.1);
  border-color: rgba(21, 122, 67, 0.2);
  z-index: 2;
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #28332d;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-card p::before {
  content: "\201C";
  display: block;
  color: var(--green-700);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.6;
  margin-bottom: 10px;
  opacity: 0.2;
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--green-950);
}

.testimonial-card span {
  display: block;
  color: var(--green-800);
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.cta-band {
  padding: 52px 0;
  background: var(--green-900);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin-top: 10px;
  opacity: 0.86;
}

.footer-contact-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(21, 122, 67, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, #f8faf6);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.footer-contact-grid > div:first-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-contact-image {
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: top;
  margin-top: 30px;
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.footer-contact-grid p {
  max-width: 620px;
  margin-top: 14px;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 800;
  font-size: 0.9rem;
}

.footer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.footer-form label:has(textarea),
.footer-form button {
  grid-column: 1 / -1;
}

.faq-section {
  padding: 72px 0 84px;
  background: #fbfcfb;
}

.faq-heading {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-column {
  display: grid;
  gap: 10px;
}

.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(5, 32, 20, 0.05);
  overflow: hidden;
}

.faq-section summary {
  position: relative;
  display: block;
  padding: 18px 52px 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "\2304";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--green-700);
  font-size: 1.1rem;
  transform: translateY(-55%);
  transition: transform 0.2s ease;
}

.faq-section details[open] summary::after {
  transform: translateY(-45%) rotate(180deg);
}

.faq-section details p {
  padding: 0 22px 20px;
  font-size: 0.95rem;
}

.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 74px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 165, 53, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f9fbf7 100%);
}

.solutions-hero::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 34px;
  width: 180px;
  height: 240px;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 48% 18%, rgba(12, 90, 52, 0.15) 0 15px, transparent 16px),
    radial-gradient(ellipse at 28% 43%, rgba(12, 90, 52, 0.11) 0 12px, transparent 13px),
    radial-gradient(ellipse at 66% 62%, rgba(12, 90, 52, 0.11) 0 13px, transparent 14px),
    linear-gradient(58deg, transparent 46%, rgba(12, 90, 52, 0.18) 47% 50%, transparent 51%);
  transform: rotate(17deg);
}

.solutions-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.solutions-hero-copy h1 {
  margin-top: 8px;
  color: var(--green-800);
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  line-height: 0.92;
}

.solutions-hero-copy h2 {
  max-width: 560px;
  margin-top: 24px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.32rem, 2.2vw, 2.1rem);
  line-height: 1.28;
}

.solutions-hero-copy p:not(.breadcrumb) {
  max-width: 610px;
  margin-top: 18px;
  color: #334039;
}

.solutions-hero-art {
  position: relative;
}

.solutions-hero-art img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(5, 32, 20, 0.13);
}

.solutions-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.25), transparent 38%);
  pointer-events: none;
}

.brand-card {
  position: absolute;
  z-index: 2;
  min-width: 112px;
  padding: 11px 16px;
  border-radius: 24px;
  background: var(--white);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transform: rotate(-4deg);
}

.card-amazon {
  top: 18px;
  left: 10%;
  color: var(--white);
  background: #0d0f0f;
}

.card-lifestyle {
  top: 38px;
  left: 36%;
}

.card-myntra {
  top: 26px;
  right: 7%;
}

.card-swigi {
  top: 42%;
  right: -2%;
  color: var(--white);
  background: #f37b20;
  transform: rotate(5deg);
}

.card-zomato {
  left: 5%;
  bottom: 16%;
  color: var(--white);
  background: #d72128;
  transform: rotate(3deg);
}

.solutions-catalog {
  background: #fff;
}

.solutions-catalog .center-heading {
  margin-bottom: 34px;
}

.solutions-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.02);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 90, 52, 0.24);
  box-shadow: 0 24px 52px rgba(5, 32, 20, 0.11);
}

.solution-icon,
.process-icon,
.why-strip article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
}

.solution-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green-700);
}

.solution-img-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.solution-icon.gold,
.process-icon.gold {
  background: var(--gold-500);
}

.solution-card h3 {
  min-height: auto;
  color: var(--green-950);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.solution-card p {
  margin: 0 0 16px;
  color: #48524d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.know-more {
  margin-top: auto;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 900;
}

.solutions-why {
  padding: 34px 0 58px;
  background: #fff;
}

.compact-heading {
  margin-bottom: 22px;
}

.why-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-strip article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: 12px;
  border-left: 6px solid var(--green-700);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.why-content {
  text-align: left;
}

.why-strip h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}

.why-strip p {
  margin: 6px 0 0;
  color: #56615b;
  font-size: 0.85rem;
  line-height: 1.4;
}

.solutions-process {
  padding: 50px 0 66px;
  background: #fff;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 28px;
}

.process-flow article {
  position: relative;
  padding-top: 12px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  transform: translate(-45px, -1px);
}

.process-icon {
  width: 58px;
  height: 58px;
  margin: 10px auto 14px;
  color: var(--green-800);
  background: #eef6ef;
  box-shadow: inset 0 0 0 1px rgba(12, 90, 52, 0.11);
}

.process-icon.gold {
  color: #fff;
}

.process-flow h3 {
  font-size: 0.98rem;
  line-height: 1.35;
}

.process-flow p {
  max-width: 190px;
  margin: 8px auto 0;
  color: #5b665f;
  font-size: 0.82rem;
  line-height: 1.65;
}

.flow-arrow {
  margin-top: 46px;
  color: var(--green-700);
  font-weight: 900;
  opacity: 0.5;
}

.page-hero {
  padding: 72px 0;
  overflow: hidden;
  background: var(--soft);
}

.dark-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 24, 17, 0.96), rgba(3, 24, 17, 0.64)),
    url("assets/images/gift-exchange.jpeg") center/cover;
}

.voucher-hero {
  background: linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
}

.gifting-hero,
.about-hero,
.contact-hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 165, 53, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6f8f4 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

@media (min-width: 992px) {
  .page-hero-grid {
    align-items: center;
  }
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 0.86rem;
  font-weight: 800;
}

.dark-hero .breadcrumb,
.dark-hero h1,
.dark-hero p {
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(3.4rem, 5.6vw, 6.2rem);
}

.page-hero p:not(.breadcrumb) {
  max-width: 690px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.page-hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gifting-hero .page-hero-img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

/* About Hero – 3D Man Pop-out */
.about-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
}

.about-hero-green-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 240px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(7, 63, 37, 0.35);
}

.about-hero-man {
  position: relative;
  z-index: 2;
  width: auto;
  height: 480px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .about-hero-visual {
    min-height: 380px;
  }
  .about-hero-green-box {
    width: 90%;
    height: 190px;
  }
  .about-hero-man {
    height: 380px;
  }
}


.deep-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deep-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 220px;
  border: 1px solid rgba(0,0,0,0.02);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.deep-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deep-card div {
  padding: 26px;
}

.deep-card p {
  margin: 10px 0 18px;
}

.deep-card a,
.category-grid article span {
  color: var(--green-700);
  font-weight: 800;
}

.process-section {
  padding: 80px 0;
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.process-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
}

.category-grid article span {
  display: block;
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.feature-band {
  padding: 78px 0;
  background: var(--soft);
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.feature-band img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-band p {
  margin-top: 16px;
}

.gift-showcase-section,
.voucher-choice-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(21, 122, 67, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
}

.gift-showcase-grid,
.voucher-choice-grid,
.gift-kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.gift-showcase-copy h2,
.voucher-choice-copy h2,
.gift-kit-copy h2 {
  margin-top: 8px;
}

.gift-showcase-copy p,
.voucher-choice-copy p,
.gift-kit-copy p {
  max-width: 650px;
  margin-top: 16px;
}

.gift-proof-row,
.voucher-choice-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gift-proof-row span,
.voucher-choice-stats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(5, 32, 20, 0.06);
}

.gift-proof-row strong,
.voucher-choice-stats strong {
  color: var(--green-800);
  font-size: 1.24rem;
}

.gift-showcase-media,
.voucher-choice-visual,
.gift-kit-media {
  position: relative;
}

.gift-showcase-media img,
.gift-kit-media img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Ensure the images are fully visible and uncropped */
.gift-kit-media img,
.gift-showcase-media img {
  aspect-ratio: auto;
  object-fit: contain;
  max-height: 800px;
}

.gift-showcase-media::before,
.voucher-choice-visual::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 42px;
  z-index: 0;
  border-radius: 44% 56% 48% 52%;
  background: rgba(12, 90, 52, 0.1);
}

.gift-showcase-media img,
.voucher-choice-visual img,
.gift-kit-media img {
  position: relative;
  z-index: 1;
}

.gift-float-card {
  position: absolute;
  right: -14px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  max-width: 280px;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.02);
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.gift-float-card strong {
  color: var(--green-800);
}

.gift-float-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.corporate-occasion-section,
.voucher-category-section,
.voucher-usecase-section,
.about-choice-section {
  background: #fff;
}

.enhanced-occasion-grid article {
  position: relative;
  min-height: 210px;
}

.enhanced-occasion-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.88rem;
  font-weight: 900;
}

.enhanced-occasion-grid article:nth-child(even) > span {
  background: var(--gold-500);
}

.gift-kit-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(212, 165, 53, 0.13), transparent 22%),
    linear-gradient(180deg, #f8fbf6 0%, #fff 100%);
}

.kit-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.kit-list article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.kit-list strong {
  color: var(--green-800);
}

.kit-list span {
  color: var(--muted);
}

.gift-management-band,
.voucher-delivery-band {
  background:
    radial-gradient(circle at 12% 10%, rgba(21, 122, 67, 0.08), transparent 24%),
    var(--soft);
}

.gift-management-band .section-eyebrow,
.voucher-delivery-band .section-eyebrow {
  margin-bottom: 6px;
}

.corporate-process-section {
  padding: 78px 0 86px;
  background: #fff;
}

.corporate-process-grid,
.voucher-usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.corporate-process-grid article,
.voucher-usecase-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 32, 20, 0.06);
}

.corporate-process-grid span,
.voucher-usecase-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-weight: 900;
}

.corporate-process-grid p,
.voucher-usecase-grid p {
  margin-top: 10px;
}

.voucher-choice-section {
  padding-bottom: 76px;
}

.voucher-choice-visual {
  min-height: 520px;
}

.voucher-choice-visual img {
  width: min(74%, 430px);
  height: 520px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 48% 52% 44% 56% / 38% 44% 56% 62%;
  box-shadow: 0 28px 74px rgba(5, 32, 20, 0.16);
}

.voucher-mini-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  padding: 13px 16px;
  border-radius: 24px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.mini-card-one {
  left: 8%;
  top: 18%;
}

.mini-card-two {
  right: 10%;
  top: 34%;
}

.mini-card-three {
  left: 18%;
  bottom: 18%;
}

.voucher-network-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 165, 53, 0.1), transparent 22%),
    #f8fbf6;
}

.voucher-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.voucher-logo-grid article {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 120px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 32, 20, 0.055);
}

.voucher-logo-grid img {
  max-width: 112px;
  max-height: 54px;
  object-fit: contain;
}

.voucher-logo-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.voucher-process-section {
  padding: 74px 0;
  background: #fff;
}

.voucher-process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 96% 12%, rgba(212, 165, 53, 0.26), transparent 23%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: 0 24px 70px rgba(5, 32, 20, 0.16);
}

.voucher-process-panel h2,
.voucher-process-panel .section-eyebrow {
  color: var(--white);
}

.voucher-process-panel .section-eyebrow {
  color: #d9c173;
}

.voucher-process-list {
  display: grid;
  gap: 12px;
}

.voucher-process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.voucher-process-list strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--white);
}

.voucher-process-list span {
  color: rgba(255, 255, 255, 0.86);
}

.about-story-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 8% 8%, rgba(21, 122, 67, 0.08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.about-shape-visual {
  position: relative;
  min-height: 520px;
}

.about-blob {
  position: absolute;
  pointer-events: none;
}

.about-blob-one {
  inset: 36px 34px 28px 10px;
  border-radius: 44% 56% 45% 55%;
  background: rgba(12, 90, 52, 0.12);
}

.about-blob-two {
  right: 0;
  bottom: 18px;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: rgba(212, 165, 53, 0.18);
}

.about-story-img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 456px;
  margin: 26px auto 0;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 46% 54% 45% 55% / 55% 38% 62% 45%;
  box-shadow: 0 28px 74px rgba(5, 32, 20, 0.14);
}

.about-proof-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 164px;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,0.02);
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.about-proof-card strong {
  color: var(--green-800);
  font-size: 1.6rem;
  line-height: 1;
}

.about-proof-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.proof-card-one {
  top: 58px;
  left: 0;
}

.proof-card-two {
  right: 12px;
  bottom: 56px;
}

.about-story-copy h2,
.about-vision-card h2,
.about-challenge-copy h2 {
  margin-top: 8px;
}

.about-story-copy p,
.about-vision-card p,
.about-challenge-copy p {
  margin-top: 18px;
  color: #435049;
}

.about-vision-section {
  padding: 34px 0 76px;
  background: #f8fbf6;
}

.about-vision-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 96% 8%, rgba(212, 165, 53, 0.26), transparent 24%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.about-vision-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.about-vision-card .section-eyebrow,
.about-vision-card h2,
.about-vision-card p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.about-vision-card .section-eyebrow {
  color: #d9c173;
}

.about-vision-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.about-vision-card p {
  opacity: 0.88;
}

.about-pillars-section {
  background: #fff;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-pillar-card,
.about-choice-grid article,
.about-solution-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 32, 20, 0.055);
}

.about-pillar-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 30px;
}

.about-pillar-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 24px;
}

.about-pillar-card p,
.about-choice-grid p,
.about-solution-list p {
  margin-top: 10px;
  color: #56615b;
}

.about-challenge-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(212, 165, 53, 0.11), transparent 24%),
    linear-gradient(180deg, #f8fbf6 0%, #fff 100%);
}

.about-challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.about-solution-list {
  display: grid;
  gap: 16px;
}

.about-solution-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 22px;
}

.about-solution-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-700);
  font-weight: 900;
}

.about-solution-list h3,
.about-solution-list p {
  grid-column: 2;
}

.about-choice-section {
  background: #fff;
}

.about-choice-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.about-choice-grid article {
  min-height: 188px;
  padding: 22px 18px;
}

.about-choice-grid span {
  display: inline-flex;
  min-width: 54px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--green-800);
  background: #eaf4ed;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-700);
}

.occasion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about-grid p {
  margin-top: 16px;
}

.contact-card,
.contact-info,
.enquiry-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  display: grid;
  gap: 14px;
}

.contact-card a,
.contact-list a {
  color: var(--green-700);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.compact-impact {
  padding-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.contact-info p {
  margin-top: 12px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-list a > div {
  display: grid;
  gap: 3px;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.enquiry-form {
  display: grid;
  gap: 18px;
}

.form-note {
  margin-top: -8px;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dfe5dc;
  border-radius: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: 500 0.95rem "Manrope", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 122, 67, 0.16);
  border-color: var(--green-600);
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--green-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.site-footer img {
  width: 255px;
  height: 72px;
  object-fit: cover;
  object-position: left center;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 300px;
  color: var(--ink);
  opacity: 0.85;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--green-900);
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: var(--ink);
  opacity: 0.85;
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* --- Global Slow Animations --- */
.anim-element {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-slide-right {
  transform: translateX(-40px);
}

.anim-fade-up {
  transform: translateY(30px);
}

.anim-zoom {
  transform: scale(0.95);
}

.anim-element.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Staggered Hero Entrances */
.page-hero h1,
.solutions-hero h1,
.page-hero h2,
.solutions-hero h2,
.page-hero p,
.solutions-hero p,
.page-hero .hero-actions,
.solutions-hero .hero-actions,
.page-hero-img,
.about-hero-img-container,
.solutions-hero-art,
.voucher-tree-container {
  opacity: 0;
  animation-fill-mode: both !important;
  transition: none !important;
}

.page-hero h1,
.solutions-hero h1 {
  animation: pageHeroHeadingSlideRight 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both !important;
}

.page-hero h2,
.solutions-hero h2 {
  animation: pageHeroHeadingSlideRight 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both !important;
}

.page-hero p,
.solutions-hero p {
  animation: pageHeroContentRise 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both !important;
}

.page-hero .hero-actions,
.solutions-hero .hero-actions {
  animation: pageHeroContentRise 3.0s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both !important;
}

.page-hero-img,
.about-hero-img-container,
.solutions-hero-art,
.voucher-tree-container {
  animation: pageHeroVisualZoom 3.0s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both !important;
}

@keyframes pageHeroHeadingSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pageHeroContentRise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageHeroVisualZoom {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 210px;
    height: 60px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    z-index: 1001; /* Ensure button stays on top of full-screen menu */
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 46, 30, 0.88); /* Deep green tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    animation: fadeInMenu 0.3s forwards ease-in-out;
  }

  @keyframes fadeInMenu {
    to { opacity: 1; }
  }

  .site-header.nav-open .site-nav a {
    padding: 16px 0;
    border-bottom: none;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpLink 0.4s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-header.nav-open .site-nav a:nth-child(1) { animation-delay: 0.1s; }
  .site-header.nav-open .site-nav a:nth-child(2) { animation-delay: 0.15s; }
  .site-header.nav-open .site-nav a:nth-child(3) { animation-delay: 0.2s; }
  .site-header.nav-open .site-nav a:nth-child(4) { animation-delay: 0.25s; }
  .site-header.nav-open .site-nav a:nth-child(5) { animation-delay: 0.3s; }
  .site-header.nav-open .site-nav a:nth-child(6) { animation-delay: 0.35s; }

  @keyframes slideUpLink {
    to { transform: translateY(0); opacity: 1; }
  }

  .hero-grid,
  .hero-slide-grid,
  .solutions-hero-grid,
  .page-hero-grid,
  .feature-band-grid,
  .gift-showcase-grid,
  .voucher-choice-grid,
  .gift-kit-grid,
  .voucher-process-panel,
  .impact-card,
  .about-story-grid,
  .about-vision-card,
  .about-challenge-grid,
  .about-grid,
  .contact-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    transform: none;
  }

  .hero-slide-grid {
    gap: 28px;
    min-height: 1100px;
    align-content: start;
  }

  .hero-story-carousel .carousel-viewport {
    min-height: 1100px;
  }

  .hero-slide-copy {
    max-width: 760px;
  }

  .hero-story-carousel .carousel-btn.prev {
    left: -8px;
  }

  .hero-story-carousel .carousel-btn.next {
    right: -8px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* 2 columns maintained at tablet size */

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-arrow {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gifting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corporate-process-grid,
  .voucher-usecase-grid,
  .voucher-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.5rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 38px;
  }

  .site-header {
    padding: 12px 14px;
    gap: 14px;
  }

  .brand img {
    width: 168px;
    height: 50px;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    flex: none;
    position: relative;
    z-index: 2;
    border-color: var(--green-800);
    background: var(--green-800);
    box-shadow: 0 8px 20px rgba(5, 32, 20, 0.08);
  }

  .nav-toggle span {
    background: var(--white);
  }

  .hero-grid,
  .hero-slide-grid {
    gap: 28px;
  }

  .hero-slide-grid {
    min-height: 1260px;
    padding: 0 0 66px;
  }

  .hero-story-carousel .carousel-viewport {
    min-height: 1260px;
  }

  .hero-slide-copy h1,
  .voucher-story-slide .hero-slide-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .hero-kicker {
    margin-bottom: 12px !important;
    font-size: 0.74rem !important;
  }

  .hero-visual,
  .hero-visual > img,
  .voucher-deck-visual .cards-container {
    min-height: 440px;
    height: 440px;
  }

  .hero-story-carousel .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-showcase-section,
  .voucher-choice-section,
  .gift-kit-section,
  .corporate-process-section,
  .voucher-network-section,
  .voucher-process-section {
    padding: 62px 0;
  }

  .gift-showcase-grid,
  .voucher-choice-grid,
  .gift-kit-grid {
    gap: 32px;
  }

  .gift-proof-row,
  .voucher-choice-stats,
  .corporate-process-grid,
  .voucher-usecase-grid,
  .voucher-logo-grid {
    grid-template-columns: 1fr;
  }

  .gift-float-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -18px 14px 0;
  }

  .voucher-choice-visual {
    min-height: 420px;
  }

  .voucher-choice-visual img {
    width: min(100%, 360px);
    height: 420px;
  }

  .voucher-mini-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    min-width: 88px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .voucher-process-panel {
    padding: 28px;
  }

  .voucher-process-list article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-story-section {
    padding: 66px 0 58px;
  }

  .about-story-grid {
    gap: 34px;
  }

  .about-shape-visual {
    min-height: 420px;
  }

  .about-story-img {
    width: 100%;
    height: 370px;
  }

  .about-proof-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    min-width: 140px;
    padding: 13px 14px;
  }

  .about-vision-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    padding: 30px;
  }

  .about-pillars-grid,
  .about-choice-grid {
    grid-template-columns: 1fr;
  }

  .about-solution-list article {
    grid-template-columns: 1fr;
  }

  .about-solution-list h3,
  .about-solution-list p {
    grid-column: auto;
  }

  .about-solution-list span {
    margin-bottom: 14px;
  }

  .solutions-hero {
    padding: 46px 0 56px;
  }

  .solutions-hero-grid {
    gap: 30px;
  }

  .solutions-hero-copy h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .solutions-hero-copy h2 {
    margin-top: 18px;
    font-size: 1.28rem;
  }

  .solutions-hero-art {
    min-height: 340px;
  }

  .solutions-hero-art img {
    height: 380px;
    min-height: 340px;
  }

  .brand-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    min-width: 84px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .card-swigi {
    right: 10px;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-stat-chip {
    max-width: 172px;
    padding: 10px 12px;
    font-size: 0.74rem;
  }

  .hero-stat-chip span {
    width: 30px;
    height: 30px;
  }

  .hero-stat-chip strong {
    font-size: 0.98rem;
  }

  .chip-one {
    top: 14px;
    left: 12px;
  }

  .chip-two {
    top: 72px;
    right: 12px;
  }

  .chip-three {
    left: 12px;
    bottom: 70px;
  }

  .chip-four {
    right: 12px;
    bottom: 20px;
  }

  .hero-proof,
  .solution-grid,
  .solutions-card-grid,
  .testimonial-grid,
  .category-grid,
  .occasion-grid,
  .deep-card-grid,
  .gifting-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-gifting {
    grid-column: auto;
  }

  .solution-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    min-height: auto;
    padding: 24px;
  }

  .solution-card h3 {
    min-height: auto;
  }

  .why-strip {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-flow article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .split-heading {
    display: grid;
  }

  .deep-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .deep-card img {
    height: 220px;
  }

  .carousel-viewport,
  .carousel-slide img,
  .carousel-slide video {
    min-height: 390px;
  }

  .slide-caption {
    left: 14px;
    right: 14px;
    bottom: 48px;
    max-width: none;
    padding: 16px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .stats-grid,
  .form-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .page-hero {
    padding: 52px 0;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .contact-card,
  .contact-info,
  .enquiry-form,
  .impact-card,
  .footer-form {
    padding: 24px;
  }

  .footer-form {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 58px 0 64px;
  }

  .faq-section summary {
    padding: 16px 46px 16px 16px;
    font-size: 0.95rem;
  }
}

/* 3D Carousel Styles */
.cards-container {
  position: relative;
  width: 100%;
  height: 450px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.card-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -70px;
  margin-top: -95px;
  opacity: 0;
  transform: translate(0px, 0px) scale(0.2);
  animation: 
    fanOut 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
    breathe 5s ease-in-out infinite;
  animation-delay: 
    var(--entrance-delay),
    calc(0.8s + var(--entrance-delay) + var(--float-delay));
}

.card-wrapper:hover {
  z-index: 20 !important;
  animation-play-state: paused, paused;
}

.gift-card {
  position: relative;
  width: 140px;
  height: 190px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  color: #111;
  padding: 15px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  transform: scale(1);
}

.card-wrapper:hover .gift-card {
  transform: translateY(-30px) scale(1.15);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

@keyframes fanOut {
  0% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.2);
  }
  100% {
    opacity: 1;
    transform: translate(var(--pos-x), var(--pos-y)) scale(1);
  }
}

@keyframes breathe {
  0%, 100% {
    opacity: 1;
    transform: translate(var(--pos-x), var(--pos-y)) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(var(--pos-x), calc(var(--pos-y) - 15px)) scale(1);
  }
}

.gift-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gift-card-content img {
  width: 48px;
  height: 48px;
  min-height: auto !important;
  object-fit: contain;
  border-radius: 8px;
}

.gift-card-content span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.gift-card-divider {
  width: 24px;
  height: 1px;
  background-color: #e5e7eb;
  margin: 12px auto;
}

.gift-card-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  font-weight: 700;
  text-align: center;
}



/* Falling Leaves Animation */
#falling-leaves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.leaf {
  position: absolute;
  top: -100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(0deg) translateX(0px);
  }
  25% {
    transform: translateY(25vh) rotate(90deg) translateX(30px);
  }
  50% {
    transform: translateY(50vh) rotate(180deg) translateX(-30px);
  }
  75% {
    transform: translateY(75vh) rotate(270deg) translateX(30px);
  }
  100% {
    transform: translateY(110vh) rotate(360deg) translateX(0px);
  }
}

/* Static section leaves */
.static-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes sway {
  0% { transform: rotate(calc(var(--base-rotation) - 15deg)); }
  100% { transform: rotate(calc(var(--base-rotation) + 15deg)); }
}

.why-img-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  flex-shrink: 0;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.process-img-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Voucher Tree Animation */
.voucher-tree-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.tree-background {
  width: 100%;
  height: auto;
  display: block;
}

.voucher-wrapper {
  position: absolute;
  /* Drop in animation */
  opacity: 0;
  transform: translateY(-50px) scale(0);
  animation: dropIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: var(--delay);
}

.pendulum {
  transform-origin: top center;
  /* Swing animation */
  animation: swingDecay 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
  /* Start swing exactly as dropIn completes */
  animation-delay: calc(var(--delay) + 0.2s);
}

.string {
  width: 2px;
  height: 35px;
  background: #6a6a6a;
  margin: 0 auto;
  position: relative;
  box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}

/* Add a green pin at the top of the string */
.string::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  background: #2b5f1f;
  border-radius: 50%;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}



@media (max-width: 768px) {
  
  .string {
    height: 20px;
  }
}

/* The Drop */
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* The Pendulum Swing */
@keyframes swingDecay {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(18deg); }
  25% { transform: rotate(-12deg); }
  40% { transform: rotate(8deg); }
  55% { transform: rotate(-5deg); }
  70% { transform: rotate(2deg); }
  85% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

.voucher-card {
  width: 75px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  margin-top: -3px; /* Overlap string slightly */
  border: 1px solid rgba(0,0,0,0.02);
}

.voucher-top {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 12px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voucher-bottom {
  background: var(--brand, #333);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .voucher-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
    width: 50px;
  }
  .voucher-top {
    height: 55px;
    padding: 8px;
  }
  .voucher-bottom {
    font-size: 7px;
    padding: 4px 0;
  }
}

.voucher-card-img {
  width: 75px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: block;
  margin-top: -3px; /* overlap string */
  border: 1px solid rgba(0,0,0,0.05);
  object-fit: cover;
}
@media (max-width: 768px) {
  .voucher-card-img {
    width: 50px;
    border-radius: 5px;
  }
}

/* Icon Styles */
.lucide-icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.kit-icon { color: var(--green-700); margin-bottom: 8px; }
.corporate-process-grid span.icon-bubble,
.voucher-usecase-grid span.icon-bubble,
.category-grid article span.icon-bubble,
.occasion-grid article span.icon-bubble,
span.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700) !important;
}

.about-solution-list span svg,
.about-choice-grid span svg,
.voucher-usecase-grid span svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonial-group {
    grid-template-columns: 1fr;
  }
  
  /* Show only one testimonial card on mobile and make it flamboyant */
  .testimonial-group .testimonial-card:nth-child(n+2) {
    display: none;
  }

  .testimonial-group .testimonial-card {
    background: linear-gradient(145deg, #f0f8f1, #ffffff);
    border: 1px solid rgba(21, 122, 67, 0.15);
    box-shadow: 0 16px 40px rgba(5, 32, 20, 0.08);
    border-radius: 32px;
    padding: 42px 32px;
  }

  /* Full-width touch-friendly buttons */
  .btn {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    font-size: 1.1rem;
    border-radius: 100px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
  }

  .hero-actions, .cta-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Horizontal scrolling carousels for grids to feel app-like */
  .brand-grid, .category-grid, .process-step-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    gap: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-grid > *, .category-grid > *, .process-step-grid > * {
    scroll-snap-align: center;
    min-width: 85%;
    flex: 0 0 85%;
  }

  /* Enhanced Cards */
  .deep-card, .solution-card, .feature-card, .about-vision-card {
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  }

  .deep-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deep-card img {
    height: 200px;
    border-radius: 32px 32px 0 0;
  }
}

/* Fix for Mac/Retina screens appearing zoomed out */
@media screen and (min-width: 1200px) and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-width: 1200px) and (min-resolution: 192dpi) {
  html {
    zoom: 1 !important;
  }
}
