@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --cream: #fffaf0;
  --paper: #ffffff;
  --soft: #f2fbf5;
  --mint: #e2f7ea;
  --green: #186b48;
  --green-dark: #0d3f30;
  --gold: #e8a82e;
  --coral: #dd684e;
  --ink: #17312a;
  --muted: #61736c;
  --line: rgba(23, 49, 42, 0.12);
  --shadow: 0 22px 60px rgba(13, 63, 48, 0.16);
  --shadow-deep: 0 30px 90px rgba(13, 63, 48, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(232, 168, 46, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(24, 107, 72, 0.16), transparent 30rem),
    var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 107, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 107, 72, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  color: var(--green);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.topbar {
  background: var(--green-dark);
  color: #ecfff5;
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  min-height: 38px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(13, 63, 48, 0.06);
  padding: 0.45rem 0;
  z-index: 1000;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 54px;
  height: 54px;
  padding: 2px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  filter: drop-shadow(0 12px 18px rgba(13, 63, 48, 0.18));
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.08rem;
}

.brand small {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 700;
  padding: 0.75rem 0.75rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--green);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.btn {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.9rem 1.35rem;
}

.btn-primary-3d,
.btn-donate {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 0 rgba(13, 63, 48, 0.18), 0 24px 42px rgba(13, 63, 48, 0.22);
}

.btn-primary-3d:hover,
.btn-donate:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 19px 0 rgba(13, 63, 48, 0.16), 0 34px 54px rgba(13, 63, 48, 0.25);
}

.btn-outline-3d {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 40px rgba(13, 63, 48, 0.12);
}

.btn-outline-3d:hover {
  color: var(--green-dark);
  transform: translateY(-3px);
  background: #fff;
}

.btn-light-3d {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.25), 0 28px 50px rgba(13, 63, 48, 0.2);
}

.btn-light-3d:hover {
  color: var(--green-dark);
  transform: translateY(-3px);
}

.foundation-banner {
  padding: 1rem 0 0;
}

.foundation-banner .container {
  max-width: 1080px;
}

.foundation-banner img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: initial;
  border: 5px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13, 63, 48, 0.14);
}

.hero-section {
  position: relative;
  padding: clamp(2.8rem, 6vw, 5rem) 0 2.5rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.8;
  transform-style: preserve-3d;
}

.hero-orb--one {
  right: 7%;
  top: 12%;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #ffe7a2, var(--gold));
  box-shadow: inset -18px -18px 35px rgba(120, 75, 0, 0.18), 0 30px 55px rgba(232, 168, 46, 0.28);
  animation: floaty 6s ease-in-out infinite;
}

.hero-orb--two {
  left: 3%;
  bottom: 13%;
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, #c8ffe1, var(--green));
  box-shadow: inset -12px -12px 25px rgba(13, 63, 48, 0.22), 0 24px 48px rgba(24, 107, 72, 0.22);
  animation: floaty 7s ease-in-out infinite reverse;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

.hero-copy {
  max-width: 640px;
  margin: 1rem 0 0;
  color: #4d655d;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
  max-width: 620px;
}

.hero-stats div {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(24, 107, 72, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 40px rgba(13, 63, 48, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3));
  box-shadow: var(--shadow-deep);
  transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
}

.hero-visual img {
  width: 100%;
  min-height: 430px;
  max-height: 540px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 63, 48, 0.52));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 260px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(13, 63, 48, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.floating-card i {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
}

.floating-card--top {
  top: 8%;
  left: -7%;
}

.floating-card--bottom {
  right: -5%;
  bottom: 10%;
}

.quick-contact {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-contact__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 64px;
  border-radius: 20px;
  color: var(--green-dark);
  background: linear-gradient(180deg, #fff, #f4fff8);
  font-weight: 800;
}

.quick-contact__grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13, 63, 48, 0.14);
}

.section-pad {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 15% 15%, rgba(232, 168, 46, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(226, 247, 234, 0.62), rgba(255, 250, 240, 0.76));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p {
  margin: 0.7rem auto 0;
  max-width: 620px;
}

.image-stack {
  position: relative;
  transform: perspective(1000px) rotateY(6deg);
}

.image-stack img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 12px solid #fff;
  border-radius: 36px;
  box-shadow: var(--shadow-deep);
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -7%;
  z-index: -1;
  width: 64%;
  height: 84%;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  box-shadow: var(--shadow);
}

.image-stack__badge {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: min(88%, 390px);
  padding: 1.1rem 1.3rem;
  border-radius: 24px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.check-grid span {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 700;
}

.check-grid i {
  color: var(--green);
  font-size: 1.2rem;
}

.service-card,
.facility-card,
.contact-card,
.enquiry-card,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.service-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  transition: 0.28s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-deep);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.service-card > div {
  padding: 1.35rem;
}

.service-card i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-top: -44px;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 30px rgba(13, 63, 48, 0.24);
  font-size: 1.2rem;
}

.service-card h3 {
  min-height: 54px;
  margin-bottom: 0.7rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.facility-card {
  min-height: 210px;
  padding: 1.5rem;
  border-radius: 28px;
  transition: 0.25s ease;
}

.facility-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-deep);
}

.facility-card i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border-radius: 20px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #fff1bd, var(--gold));
  box-shadow: inset -8px -8px 18px rgba(120, 75, 0, 0.13), 0 14px 28px rgba(232, 168, 46, 0.24);
  font-size: 1.45rem;
}

.info-card,
.routine-card,
.process-card,
.faq-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card {
  padding: 1.6rem;
  transition: 0.25s ease;
}

.info-card:hover,
.faq-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-deep);
}

.info-card i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 28px rgba(13, 63, 48, 0.2);
  font-size: 1.45rem;
}

.routine-card,
.process-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.routine-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.routine-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.routine-list strong {
  color: var(--green-dark);
}

.routine-list span {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.process-list li span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}

.process-list p {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-card {
  padding: 1.5rem;
  transition: 0.25s ease;
}

.faq-card h3 {
  margin-bottom: 0.65rem;
}

.faq-card p {
  margin: 0;
}

.cta-band {
  padding: 2.5rem 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow-deep);
}

.cta-card h2,
.cta-card .eyebrow {
  color: #fff;
}

.cta-card .eyebrow::before {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(13, 63, 48, 0.14);
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid a:nth-child(2),
.gallery-grid a:nth-child(3),
.gallery-grid a:nth-child(4),
.gallery-grid a:nth-child(5) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.08);
}

.testimonials {
  background: var(--cream);
}

.quote-card {
  min-height: 210px;
  margin: 0;
  padding: 2rem;
  border-radius: 28px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.quote-card::before {
  content: "\201C";
  display: block;
  color: var(--gold);
  font-size: 4.5rem;
  line-height: 0.65;
}

.section-contact {
  background:
    radial-gradient(circle at 84% 10%, rgba(232, 168, 46, 0.14), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(226, 247, 234, 0.62));
}

.contact-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
}

.contact-card h3 {
  margin-bottom: 0.55rem;
}

.contact-card p {
  margin: 0;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green-dark);
  font-weight: 800;
}

.enquiry-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 32px;
}

.enquiry-card label {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-card .form-control {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.enquiry-card .form-control:focus {
  border-color: rgba(24, 107, 72, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(24, 107, 72, 0.1);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #e9fff3;
  background:
    radial-gradient(circle at 10% 10%, rgba(232, 168, 46, 0.16), transparent 20rem),
    var(--green-dark);
}

.site-footer p,
.site-footer a {
  color: #d6f3e3;
}

.brand--footer span {
  color: #fff;
}

.brand--footer img {
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.donation-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.donation-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-deep);
}

.donation-panel__content {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.qr-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.qr-card img {
  max-width: 320px;
  width: 100%;
  border: 12px solid #fff;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.bank-detail {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.bank-detail div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.bank-detail span {
  color: var(--muted);
  font-weight: 700;
}

.bank-detail strong {
  color: var(--ink);
  text-align: right;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@media (max-width: 1199px) {
  .hero-visual {
    transform: none;
  }

  .floating-card--top {
    left: 2%;
  }

  .floating-card--bottom {
    right: 2%;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 0.8rem 0 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.55rem 0 !important;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-visual img {
    min-height: 430px;
  }

  .quick-contact__grid,
  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-grid a,
  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(2),
  .gallery-grid a:nth-child(3),
  .gallery-grid a:nth-child(4),
  .gallery-grid a:nth-child(5),
  .gallery-grid a:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .topbar__inner {
    justify-content: flex-start;
    padding: 0.55rem 0;
    font-size: 0.78rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .foundation-banner {
    padding-top: 0.8rem;
  }

  .foundation-banner img {
    border-width: 3px;
    border-radius: 12px;
  }

  .hero-stats,
  .quick-contact__grid,
  .check-grid,
  .facility-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .routine-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-visual {
    padding: 0.7rem;
    border-radius: 28px;
  }

  .hero-visual img,
  .hero-visual::after {
    min-height: 340px;
    border-radius: 22px;
  }

  .image-stack {
    transform: none;
  }

  .image-stack img {
    min-height: 360px;
    border-width: 8px;
  }

  .image-stack__badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -2rem;
  }

  .bank-detail div {
    display: grid;
  }

  .bank-detail strong {
    text-align: left;
  }
}
