:root {
  --ink: #0d1b36;
  --muted: #5a6a86;
  --paper: #fafcff;
  --soft: #edf3fc;
  --line: #d8e2f2;
  --teal: #1d5bb8;
  --teal-dark: #14418f;
  --navy: #12306e;
  --amber: #52ae30;
  --berry: #a10d3f;
  --gold: #3f9424;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 48, 110, 0.14);
  --radius: 14px;
  --grad-brand: linear-gradient(135deg, #1d5bb8, #12306e);
  --grad-warm: linear-gradient(135deg, #6cc93e, #3f9424);
  --header-h: 88px;
}

::selection {
  color: var(--white);
  background: var(--teal-dark);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(29, 91, 184, 0.14), transparent 62%),
    radial-gradient(760px 420px at -8% 22%, rgba(82, 174, 48, 0.12), transparent 60%),
    radial-gradient(680px 420px at 50% 110%, rgba(18, 48, 110, 0.08), transparent 62%),
    repeating-linear-gradient(90deg, rgba(13, 27, 54, 0.02) 0 1px, transparent 1px 72px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 91, 184, 0.45);
  outline-offset: 2px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 252, 255, 0.82);
  border-bottom: 1px solid rgba(216, 226, 242, 0.7);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy) 45%, var(--amber));
}

.site-header.is-scrolled {
  padding-block: 10px;
  box-shadow: 0 12px 30px rgba(13, 27, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--grad-brand);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 48, 110, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -60%;
  width: 60%;
  height: 180%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(24deg);
  filter: blur(2px);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(18, 48, 110, 0.25));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--navy);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  margin-inline: auto;
}

.site-nav a {
  position: relative;
  color: #33507e;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--navy);
  font-weight: 600;
}

.header-cta {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.92rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(20px, 3vw, 34px) clamp(18px, 5vw, 72px) clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(82, 174, 48, 0.5), transparent 70%);
  animation: blobDrift 11s ease-in-out infinite;
}

.hero::after {
  width: 440px;
  height: 440px;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(29, 91, 184, 0.5), transparent 70%);
  animation: blobDrift 13s ease-in-out infinite reverse;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 26px) scale(1.12); }
}

.hero h1 {
  margin: 10px 0 14px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-wrap: balance;
  background: linear-gradient(120deg, var(--navy) 25%, var(--teal) 60%, var(--gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-lede,
.page-hero p {
  max-width: 720px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero-actions,
.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-script {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 0;
  color: var(--gold);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-script::before,
.hero-script::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 13px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn svg,
.text-link svg,
.contact-panel svg,
.document-links svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 480ms ease;
}

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  color: var(--white);
  background: var(--grad-brand);
  box-shadow: 0 16px 34px rgba(18, 48, 110, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(18, 48, 110, 0.38);
}

.btn-secondary {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 30px rgba(29, 91, 184, 0.16);
}

.hero-trust span {
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 8px 14px 8px 11px;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 26px rgba(13, 27, 54, 0.06);
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-trust span:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(18, 48, 110, 0.14);
}

.hero-trust strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 18px;
  background: linear-gradient(140deg, rgba(29, 91, 184, 0.04), rgba(82, 174, 48, 0.04));
  border-radius: var(--radius);
  border: 1px solid rgba(29, 91, 184, 0.12);
  box-shadow: 0 20px 48px rgba(13, 27, 54, 0.05);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -3% -6% 7%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(29, 91, 184, 0.16), rgba(82, 174, 48, 0.16));
  border: 1px solid rgba(18, 48, 110, 0.12);
  border-radius: var(--radius);
  transform: rotate(2deg);
}

.hero-visual img {
  position: absolute;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
}

.hero-img-back {
  --tilt: -6deg;
  top: 8%;
  left: 4%;
  width: min(58%, 360px);
  z-index: 1;
  box-shadow: 0 16px 38px rgba(13, 27, 54, 0.2);
  animation: floatProduct 7s ease-in-out infinite;
}

.hero-img-front {
  --tilt: 2deg;
  right: 4%;
  bottom: 8%;
  width: min(66%, 420px);
  z-index: 2;
  box-shadow: 0 26px 56px rgba(13, 27, 54, 0.3);
  animation: floatProduct 6s ease-in-out infinite 0.4s;
}

.hero-img-single {
  --tilt: 2deg;
  top: 10%;
  left: 10%;
  width: 80%;
  z-index: 2;
  box-shadow: 0 32px 64px rgba(13, 27, 54, 0.28);
  animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--tilt, 0deg)); }
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.split-copy h2,
.cta-section h2,
.document-band h2 {
  margin: 8px 0 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.intro-band,
.values-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro-band {
  padding-top: 28px;
}

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

.feature-card,
.value-item,
.product-card,
.contact-panel,
.contact-form,
.mini-product,
.process-step {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(13, 27, 54, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card,
.value-item,
.process-step {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.feature-card::before,
.value-item::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover,
.value-item:hover,
.process-step:hover,
.mini-product:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 91, 184, 0.35);
  box-shadow: 0 26px 60px rgba(18, 48, 110, 0.16);
}

.feature-card:hover::before,
.value-item:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.feature-card svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: var(--teal-dark);
  background: linear-gradient(140deg, rgba(29, 91, 184, 0.14), rgba(82, 174, 48, 0.14));
  border: 1px solid rgba(29, 91, 184, 0.2);
  border-radius: 14px;
}

.feature-card h3,
.value-item h3,
.mini-product h3,
.process-step h2 {
  margin: 16px 0 8px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.check-list li,
.text-link,
.document-links a,
.contact-panel a,
.contact-panel p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.text-link {
  position: relative;
  color: var(--teal-dark);
  font-weight: 800;
  transition: gap 180ms ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link:hover {
  gap: 14px;
}

.spotlight {
  overflow: hidden;
}

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

.mini-product {
  overflow: hidden;
}

.mini-product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--white);
  transition: transform 400ms ease;
}

.mini-product:hover img {
  transform: scale(1.05);
}

.mini-product div {
  padding: 18px;
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--navy) 55%, var(--ink));
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(18, 48, 110, 0.3);
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::before {
  width: 340px;
  height: 340px;
  top: -170px;
  right: -80px;
  background: radial-gradient(circle, rgba(82, 174, 48, 0.35), transparent 68%);
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -170px;
  left: -60px;
  background: radial-gradient(circle, rgba(29, 91, 184, 0.5), transparent 68%);
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

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

.cta-section .eyebrow::before {
  background: var(--amber);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: clamp(300px, 42vh, 420px);
  padding: clamp(44px, 7vw, 80px) clamp(18px, 5vw, 72px) clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(250, 252, 255, 0.9), rgba(237, 243, 252, 0.95));
  border-bottom: 1px solid var(--line);
}

.product-hero,
.about-hero,
.quality-hero,
.contact-hero {
  background-image:
    linear-gradient(100deg, rgba(250, 252, 255, 0.97) 32%, rgba(250, 252, 255, 0.78) 56%, rgba(237, 243, 252, 0.4));
  background-size: cover;
  background-position: center;
}

.product-hero {
  background-image:
    linear-gradient(100deg, rgba(250, 252, 255, 0.97) 32%, rgba(250, 252, 255, 0.78) 56%, rgba(237, 243, 252, 0.4)),
    url("https://images.pexels.com/photos/48604/pexels-photo-48604.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.about-hero {
  background-image:
    linear-gradient(100deg, rgba(250, 252, 255, 0.97) 32%, rgba(250, 252, 255, 0.78) 56%, rgba(237, 243, 252, 0.4)),
    url("https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.quality-hero {
  background-image:
    linear-gradient(100deg, rgba(250, 252, 255, 0.97) 32%, rgba(250, 252, 255, 0.78) 56%, rgba(237, 243, 252, 0.4)),
    url("https://images.pexels.com/photos/2280571/pexels-photo-2280571.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.contact-hero {
  background-image:
    linear-gradient(100deg, rgba(250, 252, 255, 0.97) 32%, rgba(250, 252, 255, 0.78) 56%, rgba(237, 243, 252, 0.4)),
    url("https://images.pexels.com/photos/8657301/pexels-photo-8657301.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.thank-hero {
  min-height: 72vh;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 10px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(29, 91, 184, 0.14);
}

.filter-btn.is-active {
  color: var(--white);
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(18, 48, 110, 0.28);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 91, 184, 0.35);
  box-shadow: 0 28px 62px rgba(18, 48, 110, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background:
    radial-gradient(circle at 30% 20%, rgba(29, 91, 184, 0.06), transparent 55%),
    var(--white);
  border-bottom: 1px solid var(--line);
  transition: transform 400ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.product-body h2 {
  margin: 12px 0 8px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e3edfc;
  border: 1px solid rgba(29, 91, 184, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.pill-amber {
  color: #2f6d15;
  background: #e5f4dc;
  border-color: rgba(82, 174, 48, 0.35);
}

.pill-gold {
  color: #14418f;
  background: #dde8fa;
  border-color: rgba(18, 48, 110, 0.25);
}

.pill-berry {
  color: var(--berry);
  background: #f8ddea;
}

.product-body dl {
  display: grid;
  gap: 8px;
  margin: auto 0 18px;
}

.product-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.product-body dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-body dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.value-item span,
.process-step span {
  color: var(--amber);
  font-weight: 900;
}

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

.document-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.document-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 800;
  padding: 12px 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.document-links a:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(29, 91, 184, 0.16);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 20px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel h2 {
  margin: 0;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 18px;
  background: var(--soft);
  border-radius: var(--radius);
}

.contact-note span {
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(29, 91, 184, 0.12);
}

.full-span {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.policy-content {
  max-width: 860px;
  margin-inline: auto;
}

.policy-content h2 {
  margin: 28px 0 8px;
}

.policy-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(720px 300px at 85% 0%, rgba(29, 91, 184, 0.22), transparent 65%),
    var(--ink);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy) 45%, var(--amber));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--teal-dark);
}

.footer-brand .brand-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand-full {
  display: inline-flex;
  min-width: max-content;
}

.footer-logo-full {
  width: 168px;
  height: auto;
}

.footer-logo-full.is-fallback {
  width: 54px;
  height: 54px;
  padding: 8px;
  background: var(--white);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand small,
.site-footer h3 {
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--amber);
}

.marquee {
  overflow: hidden;
  padding: 15px 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

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

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  color: var(--navy);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track em {
  color: var(--amber);
  font-style: normal;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.stats-section {
  padding-block: clamp(36px, 5vw, 56px) clamp(30px, 4vw, 48px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.stat strong {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat > span {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.profile-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(13, 27, 54, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 91, 184, 0.35);
  box-shadow: 0 26px 60px rgba(18, 48, 110, 0.16);
}

.profile-card svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: var(--teal-dark);
  background: linear-gradient(140deg, rgba(29, 91, 184, 0.14), rgba(82, 174, 48, 0.14));
  border: 1px solid rgba(29, 91, 184, 0.2);
  border-radius: 14px;
}

.profile-card h3 {
  margin: 16px 0 8px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mv-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.home-mv {
  padding-top: clamp(20px, 3vw, 36px);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.mv-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.mv-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  padding: 11px;
  color: var(--teal-dark);
  background: linear-gradient(140deg, rgba(29, 91, 184, 0.14), rgba(82, 174, 48, 0.14));
  border: 1px solid rgba(29, 91, 184, 0.2);
  border-radius: 12px;
}

.mv-card h2 {
  margin: 8px 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

.building-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 380px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(13, 27, 54, 0.92) 30%, rgba(18, 48, 110, 0.72) 60%, rgba(18, 48, 110, 0.35)),
    url("https://images.pexels.com/photos/269077/pexels-photo-269077.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
  box-shadow: 0 30px 70px rgba(13, 27, 54, 0.3);
}

.building-banner-content {
  max-width: 560px;
}

.building-banner h2 {
  margin: 10px 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.building-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.building-banner .eyebrow {
  color: #8fd96a;
}

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

.testimonial-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(13, 27, 54, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 91, 184, 0.35);
  box-shadow: 0 26px 60px rgba(18, 48, 110, 0.16);
}

.testimonial-card .stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
}

.testimonial-card p {
  margin: 0;
  font-style: italic;
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.testimonial-card footer strong {
  color: var(--navy);
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-hint {
  display: none;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, #2bd06a, #1a9e4b);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(26, 158, 75, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: fabPulse 2.6s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 44px rgba(26, 158, 75, 0.55);
  animation-play-state: paused;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(26, 158, 75, 0.42), 0 0 0 0 rgba(43, 208, 106, 0.45); }
  50% { box-shadow: 0 14px 34px rgba(26, 158, 75, 0.42), 0 0 0 14px rgba(43, 208, 106, 0); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  pointer-events: none;
}

img.is-zoomable {
  cursor: zoom-in;
}

body.lightbox-locked {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 72px);
  background: rgba(9, 17, 34, 0.86);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.94);
  transition: transform 220ms ease;
}

.lightbox-overlay.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-img,
  .lightbox-close {
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.feature-grid .reveal:nth-child(2),
.product-strip .reveal:nth-child(2),
.product-grid .reveal:nth-child(2),
.value-grid .reveal:nth-child(2),
.process-section .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.feature-grid .reveal:nth-child(3),
.product-strip .reveal:nth-child(3),
.product-grid .reveal:nth-child(3),
.value-grid .reveal:nth-child(3),
.process-section .reveal:nth-child(3) {
  transition-delay: 240ms;
}

.product-grid .reveal:nth-child(4),
.value-grid .reveal:nth-child(4) {
  transition-delay: 120ms;
}

.product-grid .reveal:nth-child(5) {
  transition-delay: 240ms;
}

.product-grid .reveal:nth-child(6) {
  transition-delay: 360ms;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--teal), var(--teal-dark));
  border: 3px solid var(--soft);
  border-radius: 999px;
}

@media (min-width: 981px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    max-height: 900px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-layout,
  .document-band {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .stats-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-grid,
  .product-strip,
  .product-grid,
  .process-section,
  .value-grid,
  .profile-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .document-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(250, 252, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(13, 27, 54, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--soft);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.4rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust span {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 280px;
    padding: 14px;
  }

  .hero-img-back {
    top: 4%;
    left: 2%;
    width: min(60%, 240px);
  }

  .hero-img-front {
    right: 2%;
    bottom: 4%;
    width: min(72%, 280px);
  }

  .hero-img-single {
    top: 8%;
    left: 8%;
    width: 84%;
  }

  .feature-grid,
  .product-strip,
  .product-grid,
  .process-section,
  .value-grid,
  .profile-grid,
  .footer-main,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .building-banner {
    min-height: 300px;
  }

  .testimonial-grid {
    display: flex;
    gap: 14px;
    margin: 0 -18px;
    padding: 6px 18px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-grid .testimonial-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }

  .testimonial-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .testimonial-hint::before,
  .testimonial-hint::after {
    content: "←";
    color: var(--teal);
  }

  .testimonial-hint::after {
    content: "→";
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ==================================================
   Modern Redesign Utilities
   ================================================== */

.glass-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29,91,184,0.05), rgba(82,174,48,0.08));
  padding-block: 80px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  left: -150px;
  animation: blobDrift 14s infinite alternate ease-in-out;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--amber);
  bottom: -200px;
  right: -200px;
  animation: blobDrift 16s infinite alternate-reverse ease-in-out;
}
.badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(82,174,48,0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(82,174,48,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(82,174,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(82,174,48,0); }
}
.text-gradient {
  background: linear-gradient(120deg, var(--navy) 10%, var(--teal) 50%, var(--amber) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-glow {
  box-shadow: 0 10px 25px rgba(29,91,184,0.4);
}
.btn-glow:hover {
  box-shadow: 0 15px 35px rgba(29,91,184,0.6);
}
.btn-glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,1);
  backdrop-filter: blur(10px);
  color: var(--teal-dark);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.btn-glass:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.trust-pill:hover {
  transform: translateY(-3px);
}
.floating-visual {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}
.glass-backdrop {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  z-index: -1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}
.floating-visual:hover .glass-backdrop {
  transform: rotate(0deg);
}
.circle-backdrop {
  border-radius: 50%;
  inset: 5%;
}
.float-slow {
  animation: floatAnim 6s ease-in-out infinite;
}
.float-fast {
  animation: floatAnim 4s ease-in-out infinite 1s;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.gradient-eyebrow {
  background: linear-gradient(90deg, var(--teal-dark), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
}
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(29,91,184,0.3);
}
.glass-panel {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 40px;
}
.center-text {
  text-align: center;
  margin-inline: auto;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(82,174,48,0.4);
}
.icon-circle svg {
  width: 14px;
  height: 14px;
}
.mt-4 { margin-top: 24px; }
.modern-product-strip {
  gap: 24px;
}
.modern-product-strip .mini-product {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.modern-product-strip .mini-product div {
  padding: 0;
}
.modern-product-strip .img-wrapper {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}
.modern-product-strip .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  aspect-ratio: auto;
  background: transparent;
}
.modern-product-strip .product-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.modern-product-strip .product-info h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.15rem;
}
.modern-product-strip .product-info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.hover-lift {
  cursor: pointer;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.modern-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 80px;
}
.cta-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at top right, rgba(82,174,48,0.3) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(29,91,184,0.5) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.glass-eyebrow {
  color: rgba(255,255,255,0.8);
}
.btn-light {
  background: white;
  color: var(--teal-dark);
}
.btn-light:hover {
  background: rgba(255,255,255,0.9);
  color: var(--navy);
}

/* Fix for icons inside modern glass cards */
.glass-card .icon-wrapper svg {
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: white !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
}

/* Modern Testimonials */
.modern-testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.modern-testimonials .stars {
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.modern-testimonials p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.modern-testimonials footer strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
}
.modern-testimonials footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

