:root {
  --bg: #eef2f9;
  --surface: #ffffff;
  --surface-2: #e8eef6;
  --text: #0f1e33;
  --muted: #5a6d8a;
  /* Brand red + deep navy (reference: solid red CTAs, #0A192F hero) */
  --primary: #e32626;
  --primary-bright: #ef4444;
  --primary-dark: #b91c1c;
  --navy: #0a192f;
  --navy-mid: #13233f;
  --hero-bg: #0a192f;
  --border: #c9d5e8;
  --border-section: rgba(19, 35, 63, 0.09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 48px rgba(12, 30, 63, 0.12);
  --shadow-soft: 0 8px 32px rgba(12, 30, 63, 0.07);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-space {
  padding: 96px 0;
  scroll-margin-top: 96px;
}

/* Alternating section surfaces for clear visual rhythm */
.section-surface {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border-section);
}

.section-band {
  background: linear-gradient(180deg, #e9eff8 0%, #dfe8f4 55%, #e8eef6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 0 var(--border-section);
}

.section-band-alt {
  background: linear-gradient(145deg, #f2f5fb 0%, #e5ecf6 48%, #eef2fa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 0 var(--border-section);
}

.section-tint {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 45%, #fafcfe 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 var(--border-section);
}

.section-muted {
  background: var(--surface-2);
  box-shadow: 0 1px 0 var(--border-section);
}

.section-pattern {
  position: relative;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 248, 255, 0.93) 45%, rgba(255, 255, 255, 0.96) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
  box-shadow: 0 1px 0 var(--border-section);
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 60% at 20% 30%, rgba(225, 25, 33, 0.06), transparent 55%);
  pointer-events: none;
}

.section-pattern .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: linear-gradient(145deg, var(--hero-bg) 0%, #122a4a 52%, #1e3a5f 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 1px 0 rgba(0, 0, 0, 0.15);
}

.section-testimonials {
  position: relative;
  overflow: hidden;
  color: #e7edf7;
  background:
    linear-gradient(165deg, rgba(5, 11, 24, 0.94) 0%, rgba(14, 32, 58, 0.9) 45%, rgba(8, 18, 38, 0.96) 100%),
    url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=2000&q=80") center 35% / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1px 0 rgba(0, 0, 0, 0.2);
}

.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 20% 35%, rgba(225, 25, 33, 0.14), transparent 52%);
  pointer-events: none;
}

.section-testimonials .container {
  position: relative;
  z-index: 1;
}

.section-testimonials .section-head h2 {
  color: #fff;
}

.section-testimonials .section-head p {
  color: #9fb4d4;
}

.section-testimonials .eyebrow {
  color: #ffc8cc;
}

.section-testimonials .eyebrow::before {
  background: linear-gradient(90deg, var(--primary), #ff8a90);
}

.section-testimonials .carousel-nav {
  color: #0f1e33;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.section-testimonials .carousel-dot {
  background: rgba(255, 255, 255, 0.32);
}

.section-testimonials .carousel-dot.active {
  background: var(--primary);
}

.section-faq {
  position: relative;
}

.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(140px, 28%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 25, 47, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(10, 25, 47, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
}

.site-header .brand {
  color: #0a0f1a;
}

.site-header .brand .brand-name-accent {
  color: var(--primary);
}

.site-footer .brand,
.site-footer .brand .brand-text,
.site-footer .brand .brand-name-accent {
  color: #fff;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.header-nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: #3c4d68;
}

.header-nav a {
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(225, 25, 33, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  border: 0;
  text-decoration: none;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, var(--primary-bright) 0%, var(--primary) 42%, var(--primary-dark) 100%);
  box-shadow: 0 10px 28px rgba(227, 38, 38, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 14px 36px rgba(227, 38, 38, 0.5);
}

.btn-light {
  color: var(--navy);
  border: 0;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.btn-light:hover {
  color: var(--navy);
  background: #f8fafc;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(227, 38, 38, 0.28), transparent 52%),
    radial-gradient(circle at 12% 88%, rgba(100, 160, 255, 0.12), transparent 45%),
    linear-gradient(160deg, var(--hero-bg) 0%, #0d2138 45%, #132a45 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff6b72 35%, var(--navy) 100%);
  z-index: 3;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.shape-1 {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 40px;
  background: rgba(227, 38, 38, 0.22);
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -50px;
  background: rgba(120, 170, 255, 0.1);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
  padding: 82px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffccd0;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 5.6vw, 4.9rem);
  text-wrap: balance;
}

h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  text-wrap: balance;
}

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

.hero p {
  color: #d6e3f7;
  max-width: 640px;
}

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

.hero-card {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.valuation-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  color: var(--text);
}

.valuation-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.valuation-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.input-row {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.input-row input,
.input-row select,
.input-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  background: #f8fafc;
}

.input-row input:focus,
.input-row select:focus,
.input-row textarea:focus {
  border-color: rgba(215, 25, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.09);
}

.hero-panel {
  padding: clamp(22px, 4vw, 28px);
  border-radius: var(--radius-lg);
  background: rgba(10, 25, 47, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
}

.trust-item span {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.hero-panel h2,
.hero-panel p {
  color: #fff;
}

.contact-card-points {
  margin: 18px 0 20px;
  display: grid;
  gap: 10px;
}

.contact-card-points p {
  margin: 0;
  position: relative;
  padding-left: 22px;
  color: #e3edfc;
  font-size: 0.95rem;
}

.contact-card-points p::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #fff;
}

.mini-proof {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-proof article {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(13, 33, 56, 0.55);
  border: 1px solid rgba(200, 220, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mini-proof strong {
  font-size: 1.2rem;
}

.mini-proof span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #cfe0f8;
}

.split-layout {
  display: grid;
  gap: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.image-band {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 20, 42, 0.93) 0%, rgba(14, 36, 68, 0.88) 50%, rgba(10, 28, 54, 0.92) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.12);
}

.image-band .feature-list li,
.image-band p,
.image-band h2 {
  color: #e5eefc;
}

.image-band .feature-list li::before {
  color: #ff7f86;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(19, 35, 63, 0.1);
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.overlay-card {
  position: absolute;
  inset: auto 18px 18px 18px;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
}

.overlay-card strong {
  display: block;
  font-size: 1rem;
}

.overlay-card span {
  display: block;
  margin-top: 3px;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  color: #2a3c57;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 800;
  color: var(--primary);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.insight-card {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  border-left: 3px solid rgba(225, 25, 33, 0.55);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.insight-card h3 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(10, 30, 62, 0.12);
}

.feature-list.compact {
  margin: 20px 0 0;
  gap: 8px;
}

.service-grid,
.timeline-grid,
.results-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.timeline-card,
.result-card,
.testimonial-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(201, 213, 232, 0.85);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-height: 260px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  color: inherit;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(225, 25, 33, 0.08);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.timeline-card p,
.testimonial-card p {
  margin-top: 10px;
}

.service-read-more {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-bright) 0%, var(--primary) 48%, var(--primary-dark) 100%);
  box-shadow: 0 10px 22px rgba(227, 38, 38, 0.24);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-read-more::after {
  content: " →";
}

.service-card:hover .service-read-more {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(227, 38, 38, 0.32);
}

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

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.timeline-card h3 {
  margin-top: 14px;
}

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

.result-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.result-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.result-card span {
  margin-top: 8px;
  display: block;
  color: #d5e3f9;
}

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

.metric-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 20px rgba(10, 30, 62, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #22c55e, var(--primary)) border-box;
  border: 2px solid transparent;
}

.metric-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.metric-card p {
  margin: 8px 0 0;
  color: #2d425f;
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: #2d425f;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(10, 30, 62, 0.1);
}

.video-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5fc 40%, #e8f0fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 0 var(--border-section);
}

.video-section-glow {
  pointer-events: none;
  position: absolute;
  inset: -20% -30% auto auto;
  width: min(720px, 90vw);
  height: min(520px, 70vh);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(225, 25, 33, 0.08), transparent 70%);
  filter: blur(2px);
}

.video-section-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
}

.video-section-copy {
  max-width: 34rem;
}

.video-section-copy h2 {
  color: var(--navy);
}

.video-section-copy > p:first-of-type {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.video-section-note {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  border-left: 3px solid var(--primary);
  background: rgba(225, 25, 33, 0.04);
  font-size: 0.95rem;
  color: #3d4f6a;
  line-height: 1.55;
}

.video-section-media {
  position: relative;
}

.video-section-media::before {
  content: "";
  position: absolute;
  inset: -10px -12px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(19, 35, 63, 0.06), rgba(225, 25, 33, 0.07));
  z-index: 0;
}

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

.video-inline-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #0e1d35;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(11, 38, 70, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.video-inline-card--featured {
  border-radius: var(--radius-lg);
}

.video-inline-poster {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-inline-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(225, 25, 33, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-overlay-caption {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(10, 23, 42, 0.72);
  font-weight: 600;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.45);
}

.inline-video-frame {
  border-radius: 0;
  box-shadow: none;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

.testimonial-viewport {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  transition: transform 0.24s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(225, 25, 33, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
  font-weight: 900;
}

.stars {
  letter-spacing: 0.08em;
  color: #f4a300;
  font-size: 0.86rem;
  font-weight: 700;
}

.testimonial-quote {
  margin-top: 4px;
  margin-bottom: 0;
  flex: 1;
  max-height: 170px;
  overflow: auto;
  padding-right: 10px;
  line-height: 1.75;
}

.testimonial-quote::-webkit-scrollbar {
  width: 8px;
}

.testimonial-quote::-webkit-scrollbar-thumb {
  background: #c8d8ec;
  border-radius: 999px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-avatar {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(11, 38, 70, 0.2);
}

.carousel-nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  color: #173154;
  background: #fff;
  box-shadow: 0 10px 20px rgba(11, 38, 70, 0.16);
  cursor: pointer;
  z-index: 2;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #b7c9df;
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary);
}

.testimonial-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

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

.faq-layout {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.faq-intro-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--shadow-soft);
}

.faq-highlight-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.faq-highlight-list li {
  position: relative;
  padding-left: 22px;
  color: #2c4463;
  font-weight: 600;
}

.faq-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.faq-item {
  border: 1px solid #dbe8f7;
  border-radius: 16px;
  background: #fff;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 16px rgba(11, 38, 70, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: #bfd5ef;
  box-shadow: 0 14px 24px rgba(11, 38, 70, 0.08);
}

.faq-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  color: #162843;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #36557e;
  background: #edf4fe;
  font-weight: 800;
  font-size: 0.95rem;
  flex: 0 0 22px;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-content > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding-top: 0;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-content > p {
  padding-top: 10px;
}

.faq-list p {
  margin-top: 0;
  color: #4c6383;
}

.cta {
  padding: 48px 0 104px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  box-shadow: var(--shadow);
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.cta-box p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #e2e8f0;
}

.site-footer {
  position: relative;
  color: #b3c3db;
  background: linear-gradient(180deg, #070d18 0%, #0c1628 40%, #0a1424 100%);
}

.site-footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #3d5a8a 55%, var(--navy));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  color: #b3c3db;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

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

@media (max-width: 1024px) {
  .section-space {
    padding: 80px 0;
  }

  .hero.section-space {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .hero-layout,
  .hero-grid,
  .split-layout,
  .faq-layout,
  .dual-card-grid,
  .video-section-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }

  .hero-grid {
    min-height: auto;
  }

  .video-section-copy {
    max-width: none;
  }

  .video-section-media {
    max-width: 640px;
    margin-inline: auto;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-box .btn {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }

  .service-grid,
  .timeline-grid,
  .results-grid,
  .testimonial-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-carousel {
    padding: 0 46px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    align-items: center;
    gap: 14px 16px;
  }

  .header-inner .brand {
    grid-area: brand;
  }

  .header-inner .header-nav {
    grid-area: nav;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.85rem;
  }

  .header-inner > .btn {
    grid-area: cta;
    justify-self: end;
  }
}

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

  .section-space {
    padding: 64px 0;
  }

  .hero.section-space {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .mini-proof,
  .trust-row,
  .service-grid,
  .timeline-grid,
  .results-grid,
  .testimonial-grid,
  .dual-card-grid,
  .metric-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid {
    padding: 62px 0;
  }

  .image-card img {
    min-height: 360px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .carousel-nav {
    top: auto;
    bottom: -52px;
  }

  .carousel-nav.prev {
    left: calc(50% - 52px);
  }

  .carousel-nav.next {
    right: calc(50% - 52px);
  }

  .carousel-dots {
    margin-top: 24px;
    padding-bottom: 52px;
  }
}

@media (max-width: 540px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .header-nav {
    order: 0;
    font-size: 0.82rem;
    gap: 8px 12px;
  }

  .site-header .btn {
    margin-left: 0;
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mini-proof {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================================================
   WordPress / Elementor / theme overrides
   Global heading & link colors from themes often win over section `.hero`.
   These rules load last in this file and restore contrast on dark bands.
   ============================================================================= */

/* --- Hero (dark background) --- */
section.hero,
section.hero .hero-layout,
section.hero .hero-grid,
section.hero .container {
  color: #fff;
}

section.hero h1,
section.hero .reveal-up h1,
section.hero .hero-layout h1,
section.hero .hero-grid h1,
.elementor-widget-html section.hero h1,
.elementor-widget-container section.hero h1 {
  color: #fff !important;
  font-weight: 800;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

section.hero .eyebrow,
section.hero .reveal-up .eyebrow {
  color: #ffccd0 !important;
}

section.hero .eyebrow::before {
  background: #e32626 !important;
}

section.hero .hero-panel h2,
section.hero aside.hero-panel h2 {
  color: #fff !important;
}

/* Left column intro paragraph only (aside uses .hero-panel rules below) */
section.hero .hero-layout > .reveal-up > p,
section.hero .hero-grid > .reveal-up > p {
  color: #d6e3f7 !important;
}

section.hero .valuation-card,
section.hero .valuation-card h3 {
  color: var(--text) !important;
}

section.hero .valuation-card p {
  color: var(--muted) !important;
}

section.hero .input-row input,
section.hero .input-row select,
section.hero .input-row textarea {
  color: var(--text) !important;
  background: #f8fafc !important;
}

section.hero .hero-panel p,
section.hero aside.hero-panel p {
  color: #fff !important;
}

section.hero .contact-card-points p {
  color: #e3edfc !important;
}

section.hero .hero-actions a.btn-primary,
section.hero .hero-actions .btn-primary,
section.hero .hero-panel a.btn-primary,
section.hero .hero-panel .btn-primary,
section.hero aside.hero-panel a.btn-primary {
  color: #fff !important;
  border: 0 !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(180deg, #ef4444 0%, #e32626 42%, #b91c1c 100%) !important;
  box-shadow: 0 10px 28px rgba(227, 38, 38, 0.42) !important;
  text-decoration: none !important;
}

section.hero .hero-actions a.btn-primary:hover,
section.hero .hero-panel a.btn-primary:hover,
section.hero aside.hero-panel a.btn-primary:hover {
  color: #fff !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 14px 36px rgba(227, 38, 38, 0.5) !important;
}

section.hero .hero-actions a.btn-ghost,
section.hero .hero-actions .btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

section.hero .hero-actions a.btn-ghost:hover,
section.hero .hero-actions .btn-ghost:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
}

section.hero .mini-proof strong {
  color: #fff !important;
}

section.hero .trust-item strong {
  color: #fff !important;
}

section.hero .mini-proof span {
  color: #cfe0f8 !important;
}

section.hero .trust-item span {
  color: #cbd5e1 !important;
}

section.hero .mini-proof article {
  color: #fff;
}

/* --- Dark image band --- */
section.image-band h2,
section.image-band .reveal-up h2,
.elementor-widget-html section.image-band h2 {
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

section.image-band .eyebrow {
  color: #ffccd0 !important;
}

section.image-band p,
section.image-band .feature-list li {
  color: #e5eefc !important;
}

section.image-band .btn-dark {
  color: #fff !important;
  background: var(--navy) !important;
}

/* --- Stats strip --- */
section.section-dark .result-card,
section.section-dark .result-card strong,
section.section-dark .result-card span {
  color: #fff !important;
}

section.section-dark .result-card span {
  color: #d5e3f9 !important;
}

/* --- Primary / light buttons inside Elementor HTML widgets (theme often flattens <a>) --- */
.elementor-widget-html a.btn-primary,
.elementor-widget-container a.btn-primary {
  color: #fff !important;
  border: 0 !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(180deg, #ef4444 0%, #e32626 42%, #b91c1c 100%) !important;
  box-shadow: 0 10px 28px rgba(227, 38, 38, 0.42) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.elementor-widget-html a.btn-primary:hover,
.elementor-widget-container a.btn-primary:hover {
  color: #fff !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 14px 36px rgba(227, 38, 38, 0.5) !important;
}

.elementor-widget-html a.btn-light,
.elementor-widget-container a.btn-light {
  color: var(--navy) !important;
  background: #fff !important;
  background-image: none !important;
  border: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18) !important;
}

/* --- Elementor hero size lock: keep pasted component matching redesign.html --- */
.elementor-widget-html section.hero.section-space,
.elementor-widget-container section.hero.section-space,
body section.hero.section-space {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.elementor-widget-html section.hero .container.hero-layout,
.elementor-widget-container section.hero .container.hero-layout,
body section.hero .container.hero-layout {
  width: min(1160px, calc(100% - 40px)) !important;
  max-width: 1160px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  align-items: center !important;
  gap: 40px !important;
}

.elementor-widget-html section.hero h1,
.elementor-widget-container section.hero h1,
body section.hero h1 {
  margin: 16px 0 0 !important;
  max-width: none !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.3rem, 5.6vw, 4.9rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance;
}

.elementor-widget-html section.hero .eyebrow,
.elementor-widget-container section.hero .eyebrow,
body section.hero .eyebrow {
  margin: 0 !important;
  color: #ffccd0 !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.elementor-widget-html section.hero .eyebrow::before,
.elementor-widget-container section.hero .eyebrow::before,
body section.hero .eyebrow::before {
  background: #e32626 !important;
}

.elementor-widget-html section.hero .reveal-up > p,
.elementor-widget-container section.hero .reveal-up > p,
body section.hero .hero-layout > .reveal-up > p {
  max-width: 640px !important;
  margin: 16px 0 0 !important;
  color: #d6e3f7 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.elementor-widget-html section.hero .hero-actions,
.elementor-widget-container section.hero .hero-actions,
body section.hero .hero-actions {
  margin-top: 30px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.elementor-widget-html section.hero .btn,
.elementor-widget-container section.hero .btn,
body section.hero .btn {
  position: relative !important;
  overflow: hidden !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  border-width: 0 !important;
  border-style: solid !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  vertical-align: middle !important;
  isolation: isolate !important;
}

.elementor-widget-html section.hero .btn::before,
.elementor-widget-html section.hero .btn::after,
.elementor-widget-container section.hero .btn::before,
.elementor-widget-container section.hero .btn::after,
body section.hero .btn::before,
body section.hero .btn::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

.elementor-widget-html section.hero .btn-primary,
.elementor-widget-container section.hero .btn-primary,
body section.hero .btn-primary {
  color: #fff !important;
  border-color: transparent !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(180deg, #ef4444 0%, #e32626 42%, #b91c1c 100%) !important;
  box-shadow: 0 10px 28px rgba(227, 38, 38, 0.42) !important;
  filter: none !important;
}

.elementor-widget-html section.hero .btn-primary:hover,
.elementor-widget-container section.hero .btn-primary:hover,
body section.hero .btn-primary:hover {
  color: #fff !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(180deg, #ef4444 0%, #e32626 42%, #b91c1c 100%) !important;
  box-shadow: 0 14px 36px rgba(227, 38, 38, 0.5) !important;
  filter: brightness(1.06) !important;
}

.elementor-widget-html section.hero .btn-ghost,
.elementor-widget-container section.hero .btn-ghost,
body section.hero .btn-ghost {
  color: #fff !important;
  border-width: 1px !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.elementor-widget-html section.hero .btn-ghost:hover,
.elementor-widget-container section.hero .btn-ghost:hover,
body section.hero .btn-ghost:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  background-image: none !important;
}

.elementor-widget-html section.hero .btn-block,
.elementor-widget-container section.hero .btn-block,
body section.hero .btn-block {
  width: 100% !important;
}

.elementor-widget-html section.hero .mini-proof,
.elementor-widget-container section.hero .mini-proof,
body section.hero .mini-proof {
  margin-top: 26px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.elementor-widget-html section.hero .mini-proof article,
.elementor-widget-container section.hero .mini-proof article,
body section.hero .mini-proof article {
  padding: 14px 12px !important;
  border-radius: 14px !important;
  background: rgba(13, 33, 56, 0.55) !important;
  border: 1px solid rgba(200, 220, 255, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.elementor-widget-html section.hero .mini-proof strong,
.elementor-widget-container section.hero .mini-proof strong,
body section.hero .mini-proof strong {
  display: inline !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  line-height: 1.2 !important;
}

.elementor-widget-html section.hero .mini-proof span,
.elementor-widget-container section.hero .mini-proof span,
body section.hero .mini-proof span {
  display: block !important;
  margin-top: 4px !important;
  color: #cfe0f8 !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
}

.elementor-widget-html section.hero .hero-panel,
.elementor-widget-container section.hero .hero-panel,
body section.hero .hero-panel {
  padding: clamp(22px, 4vw, 28px) !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(10, 25, 47, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.elementor-widget-html section.hero .hero-panel h2,
.elementor-widget-container section.hero .hero-panel h2,
body section.hero .hero-panel h2 {
  margin: 14px 0 0 !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance;
}

.elementor-widget-html section.hero .hero-panel p,
.elementor-widget-container section.hero .hero-panel p,
body section.hero .hero-panel p {
  margin: 16px 0 0 !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.elementor-widget-html section.hero .contact-card-points,
.elementor-widget-container section.hero .contact-card-points,
body section.hero .contact-card-points {
  margin: 18px 0 20px !important;
  display: grid !important;
  gap: 10px !important;
}

.elementor-widget-html section.hero .contact-card-points p,
.elementor-widget-container section.hero .contact-card-points p,
body section.hero .contact-card-points p {
  margin: 0 !important;
  padding-left: 22px !important;
  color: #e3edfc !important;
  font-size: 0.95rem !important;
}

@media (max-width: 1024px) {
  .elementor-widget-html section.hero.section-space,
  .elementor-widget-container section.hero.section-space,
  body section.hero.section-space {
    padding-top: 72px !important;
    padding-bottom: 88px !important;
  }

  .elementor-widget-html section.hero .container.hero-layout,
  .elementor-widget-container section.hero .container.hero-layout,
  body section.hero .container.hero-layout {
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 5vw, 40px) !important;
  }
}

@media (max-width: 720px) {
  .elementor-widget-html section.hero.section-space,
  .elementor-widget-container section.hero.section-space,
  body section.hero.section-space {
    padding-top: 56px !important;
    padding-bottom: 72px !important;
  }

  .elementor-widget-html section.hero .container.hero-layout,
  .elementor-widget-container section.hero .container.hero-layout,
  body section.hero .container.hero-layout {
    width: min(100% - 28px, 1160px) !important;
  }

  .elementor-widget-html section.hero .mini-proof,
  .elementor-widget-container section.hero .mini-proof,
  body section.hero .mini-proof {
    grid-template-columns: 1fr !important;
  }
}

/* --- Elementor CTA lock: keep closing CTA matching redesign.html --- */
.elementor-widget-html section.cta,
.elementor-widget-container section.cta,
body section.cta {
  padding: 48px 0 104px !important;
  background: transparent !important;
}

.elementor-widget-html section.cta .container,
.elementor-widget-container section.cta .container,
body section.cta .container {
  width: min(1160px, calc(100% - 40px)) !important;
  max-width: 1160px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.elementor-widget-html section.cta .cta-box,
.elementor-widget-container section.cta .cta-box,
body section.cta .cta-box {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 28px !important;
  padding: clamp(34px, 6vw, 64px) !important;
  border: 0 !important;
  border-radius: 34px !important;
  color: #fff !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(135deg, #e32626 0%, #0a192f 100%) !important;
  box-shadow: 0 24px 48px rgba(12, 30, 63, 0.12) !important;
}

.elementor-widget-html section.cta .cta-box::before,
.elementor-widget-container section.cta .cta-box::before,
body section.cta .cta-box::before {
  content: none !important;
  display: none !important;
}

.elementor-widget-html section.cta .cta-box::after,
.elementor-widget-container section.cta .cta-box::after,
body section.cta .cta-box::after {
  content: "" !important;
  position: absolute !important;
  right: -80px !important;
  top: -90px !important;
  width: 260px !important;
  height: 260px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  pointer-events: none !important;
}

.elementor-widget-html section.cta .cta-box > *,
.elementor-widget-container section.cta .cta-box > *,
body section.cta .cta-box > * {
  position: relative !important;
  z-index: 1 !important;
}

.elementor-widget-html section.cta .cta-box h2,
.elementor-widget-container section.cta .cta-box h2,
body section.cta .cta-box h2 {
  margin: 0 !important;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.06em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.elementor-widget-html section.cta .cta-box p,
.elementor-widget-container section.cta .cta-box p,
body section.cta .cta-box p {
  max-width: 620px !important;
  margin: 16px 0 0 !important;
  color: #e2e8f0 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.elementor-widget-html section.cta .cta-box .btn,
.elementor-widget-container section.cta .cta-box .btn,
body section.cta .cta-box .btn {
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #0a192f !important;
  background: #fff !important;
  background-image: none !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18) !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

.elementor-widget-html section.cta .cta-box .btn::before,
.elementor-widget-html section.cta .cta-box .btn::after,
.elementor-widget-container section.cta .cta-box .btn::before,
.elementor-widget-container section.cta .cta-box .btn::after,
body section.cta .cta-box .btn::before,
body section.cta .cta-box .btn::after {
  content: none !important;
  display: none !important;
}

.elementor-widget-html section.cta .cta-box .btn:hover,
.elementor-widget-container section.cta .cta-box .btn:hover,
body section.cta .cta-box .btn:hover {
  color: #0a192f !important;
  background: #f8fafc !important;
  background-image: none !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22) !important;
}

@media (max-width: 1024px) {
  .elementor-widget-html section.cta .cta-box,
  .elementor-widget-container section.cta .cta-box,
  body section.cta .cta-box {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .elementor-widget-html section.cta .cta-box .btn,
  .elementor-widget-container section.cta .cta-box .btn,
  body section.cta .cta-box .btn {
    width: 100% !important;
    max-width: 320px !important;
    justify-self: center !important;
  }
}

@media (max-width: 720px) {
  .elementor-widget-html section.cta,
  .elementor-widget-container section.cta,
  body section.cta {
    padding: 40px 0 72px !important;
  }

  .elementor-widget-html section.cta .container,
  .elementor-widget-container section.cta .container,
  body section.cta .container {
    width: min(100% - 28px, 1160px) !important;
  }
}

/* --- Elementor section typography/button lock for non-hero BizRevive sections --- */
.elementor-widget-html section.section-space,
.elementor-widget-container section.section-space,
body section.section-space {
  font-family: var(--font-body) !important;
}

.elementor-widget-html section.section-space > .container,
.elementor-widget-container section.section-space > .container,
body section.section-space > .container {
  width: min(1160px, calc(100% - 40px)) !important;
  max-width: 1160px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.elementor-widget-html section.section-space h2,
.elementor-widget-container section.section-space h2,
body section.section-space h2 {
  margin: 14px 0 0 !important;
  color: #0f1e33 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  text-wrap: balance;
}

.elementor-widget-html section.section-space h3,
.elementor-widget-container section.section-space h3,
body section.section-space h3 {
  margin: 0 !important;
  color: #0f1e33 !important;
  font-family: var(--font-display) !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}

.elementor-widget-html section.section-space p,
.elementor-widget-container section.section-space p,
body section.section-space p {
  color: #5a6d8a !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  text-transform: none !important;
}

.elementor-widget-html section.section-space .section-head,
.elementor-widget-container section.section-space .section-head,
body section.section-space .section-head {
  max-width: 760px !important;
  margin-bottom: 40px !important;
}

.elementor-widget-html section.section-space .section-head p,
.elementor-widget-container section.section-space .section-head p,
body section.section-space .section-head p {
  margin: 16px 0 0 !important;
  font-size: 1.05rem !important;
}

.elementor-widget-html section.section-space .eyebrow,
.elementor-widget-container section.section-space .eyebrow,
body section.section-space .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  color: #ffccd0 !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.elementor-widget-html section.section-space:not(.hero):not(.image-band):not(.section-testimonials) .eyebrow,
.elementor-widget-container section.section-space:not(.hero):not(.image-band):not(.section-testimonials) .eyebrow,
body section.section-space:not(.hero):not(.image-band):not(.section-testimonials) .eyebrow {
  color: #e32626 !important;
}

.elementor-widget-html section.section-space .eyebrow::before,
.elementor-widget-container section.section-space .eyebrow::before,
body section.section-space .eyebrow::before {
  content: "" !important;
  display: block !important;
  width: 28px !important;
  height: 2px !important;
  background: #e32626 !important;
}

.elementor-widget-html section.section-space .feature-list,
.elementor-widget-container section.section-space .feature-list,
body section.section-space .feature-list {
  margin: 24px 0 30px !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 10px !important;
}

.elementor-widget-html section.section-space .feature-list.compact,
.elementor-widget-container section.section-space .feature-list.compact,
body section.section-space .feature-list.compact {
  margin: 20px 0 0 !important;
  gap: 8px !important;
}

.elementor-widget-html section.section-space .feature-list li,
.elementor-widget-container section.section-space .feature-list li,
body section.section-space .feature-list li {
  position: relative !important;
  padding-left: 26px !important;
  color: #2a3c57 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
  list-style: none !important;
}

.elementor-widget-html section.section-space .feature-list li::marker,
.elementor-widget-container section.section-space .feature-list li::marker,
body section.section-space .feature-list li::marker {
  content: "" !important;
}

.elementor-widget-html section.section-space .feature-list li::before,
.elementor-widget-container section.section-space .feature-list li::before,
body section.section-space .feature-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 1px !important;
  color: #e32626 !important;
  font-weight: 800 !important;
}

.elementor-widget-html section.section-space .btn,
.elementor-widget-container section.section-space .btn,
body section.section-space .btn {
  position: relative !important;
  overflow: hidden !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  vertical-align: middle !important;
}

.elementor-widget-html section.section-space .btn::before,
.elementor-widget-html section.section-space .btn::after,
.elementor-widget-container section.section-space .btn::before,
.elementor-widget-container section.section-space .btn::after,
body section.section-space .btn::before,
body section.section-space .btn::after {
  content: none !important;
  display: none !important;
}

.elementor-widget-html section.section-space .btn-dark,
.elementor-widget-container section.section-space .btn-dark,
body section.section-space .btn-dark {
  color: #fff !important;
  border: 0 !important;
  background-color: #0a192f !important;
  background-image: none !important;
  box-shadow: none !important;
}

.elementor-widget-html section.section-space .btn-dark:hover,
.elementor-widget-container section.section-space .btn-dark:hover,
body section.section-space .btn-dark:hover {
  color: #fff !important;
  background-color: #13233f !important;
  background-image: none !important;
}

.elementor-widget-html section.section-space .service-card,
.elementor-widget-html section.section-space .timeline-card,
.elementor-widget-html section.section-space .result-card,
.elementor-widget-html section.section-space .testimonial-card,
.elementor-widget-container section.section-space .service-card,
.elementor-widget-container section.section-space .timeline-card,
.elementor-widget-container section.section-space .result-card,
.elementor-widget-container section.section-space .testimonial-card,
body section.section-space .service-card,
body section.section-space .timeline-card,
body section.section-space .result-card,
body section.section-space .testimonial-card {
  padding: 24px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(201, 213, 232, 0.85) !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(12, 30, 63, 0.07) !important;
}

.elementor-widget-html section.section-space .service-card,
.elementor-widget-container section.section-space .service-card,
body section.section-space .service-card {
  display: flex !important;
  flex-direction: column !important;
  color: inherit !important;
  min-height: 260px !important;
  text-decoration: none !important;
}

.elementor-widget-html section.section-space .service-grid,
.elementor-widget-container section.section-space .service-grid,
body section.section-space .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.elementor-widget-html section.section-space .service-kicker,
.elementor-widget-container section.section-space .service-kicker,
body section.section-space .service-kicker {
  display: inline-flex !important;
  align-self: flex-start !important;
  margin-bottom: 14px !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  color: #e32626 !important;
  background: rgba(225, 25, 33, 0.08) !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.elementor-widget-html section.section-space .service-card p,
.elementor-widget-html section.section-space .timeline-card p,
.elementor-widget-html section.section-space .testimonial-card p,
.elementor-widget-container section.section-space .service-card p,
.elementor-widget-container section.section-space .timeline-card p,
.elementor-widget-container section.section-space .testimonial-card p,
body section.section-space .service-card p,
body section.section-space .timeline-card p,
body section.section-space .testimonial-card p {
  margin-top: 10px !important;
}

.elementor-widget-html section.section-space .service-read-more,
.elementor-widget-container section.section-space .service-read-more,
body section.section-space .service-read-more {
  align-self: flex-start !important;
  margin-top: auto !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  color: #fff !important;
  background-color: #e32626 !important;
  background-image: linear-gradient(180deg, #ef4444 0%, #e32626 48%, #b91c1c 100%) !important;
  box-shadow: 0 10px 22px rgba(227, 38, 38, 0.24) !important;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.elementor-widget-html section.section-space .service-read-more::after,
.elementor-widget-container section.section-space .service-read-more::after,
body section.section-space .service-read-more::after {
  content: " →" !important;
}

@media (max-width: 720px) {
  .elementor-widget-html section.section-space .service-grid,
  .elementor-widget-container section.section-space .service-grid,
  body section.section-space .service-grid {
    grid-template-columns: 1fr !important;
  }
}

.elementor-widget-html section.section-space .timeline-card span,
.elementor-widget-container section.section-space .timeline-card span,
body section.section-space .timeline-card span {
  display: inline-grid !important;
  place-items: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #e32626, #b91c1c) !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.elementor-widget-html section.section-space .timeline-card h3,
.elementor-widget-container section.section-space .timeline-card h3,
body section.section-space .timeline-card h3 {
  margin-top: 14px !important;
}

.elementor-widget-html section.section-space .insight-card,
.elementor-widget-container section.section-space .insight-card,
body section.section-space .insight-card {
  padding: 28px !important;
  border-radius: 18px !important;
  border: 1px solid #c9d5e8 !important;
  border-left: 3px solid rgba(225, 25, 33, 0.55) !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(12, 30, 63, 0.07) !important;
}

.elementor-widget-html section.section-space .insight-card h3,
.elementor-widget-container section.section-space .insight-card h3,
body section.section-space .insight-card h3 {
  margin-top: 12px !important;
  font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
}

.elementor-widget-html section.section-space .overlay-card strong,
.elementor-widget-container section.section-space .overlay-card strong,
body section.section-space .overlay-card strong {
  color: #0f1e33 !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.elementor-widget-html section.section-space .overlay-card span,
.elementor-widget-container section.section-space .overlay-card span,
body section.section-space .overlay-card span {
  color: #5a6d8a !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 720px) {
  .elementor-widget-html section.section-space > .container,
  .elementor-widget-container section.section-space > .container,
  body section.section-space > .container {
    width: min(100% - 28px, 1160px) !important;
  }
}

/* --- Correct dark/image sections after generic Elementor section locks --- */
.elementor-widget-html section.image-band h2,
.elementor-widget-container section.image-band h2,
body section.image-band h2 {
  color: #e5eefc !important;
}

.elementor-widget-html section.image-band p,
.elementor-widget-container section.image-band p,
body section.image-band p {
  color: #e5eefc !important;
}

.elementor-widget-html section.image-band .eyebrow,
.elementor-widget-container section.image-band .eyebrow,
body section.image-band .eyebrow {
  color: #ffccd0 !important;
}

.elementor-widget-html section.image-band .feature-list li,
.elementor-widget-container section.image-band .feature-list li,
body section.image-band .feature-list li {
  color: #e5eefc !important;
}

.elementor-widget-html section.image-band .feature-list li::before,
.elementor-widget-container section.image-band .feature-list li::before,
body section.image-band .feature-list li::before {
  color: #ff7f86 !important;
}

.elementor-widget-html section.image-band .btn-dark,
.elementor-widget-container section.image-band .btn-dark,
body section.image-band .btn-dark {
  color: #fff !important;
  background-color: #0a192f !important;
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.22) !important;
}

.elementor-widget-html section.section-dark,
.elementor-widget-container section.section-dark,
body section.section-dark {
  color: #fff !important;
  background: linear-gradient(145deg, #0a192f 0%, #122a4a 52%, #1e3a5f 100%) !important;
}

.elementor-widget-html section.section-dark .result-card,
.elementor-widget-container section.section-dark .result-card,
body section.section-dark .result-card {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(12, 30, 63, 0.07) !important;
}

.elementor-widget-html section.section-dark .result-card strong,
.elementor-widget-container section.section-dark .result-card strong,
body section.section-dark .result-card strong {
  display: block !important;
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.elementor-widget-html section.section-dark .result-card span,
.elementor-widget-container section.section-dark .result-card span,
body section.section-dark .result-card span {
  display: block !important;
  margin-top: 8px !important;
  color: #d5e3f9 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}

.elementor-widget-html section.section-pattern .metric-card,
.elementor-widget-container section.section-pattern .metric-card,
body section.section-pattern .metric-card {
  padding: 20px !important;
  border-radius: 16px !important;
  border: 1px solid #c9d5e8 !important;
  background: #fff !important;
  box-shadow: 0 10px 20px rgba(10, 30, 62, 0.06) !important;
}

.elementor-widget-html section.section-pattern .metric-ring,
.elementor-widget-container section.section-pattern .metric-ring,
body section.section-pattern .metric-ring {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 14px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  color: #e32626 !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #22c55e, #e32626) border-box !important;
  border: 2px solid transparent !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
}

.elementor-widget-html section.section-pattern .metric-card h3,
.elementor-widget-container section.section-pattern .metric-card h3,
body section.section-pattern .metric-card h3 {
  margin: 0 !important;
  color: #0f1e33 !important;
  font-size: 1.25rem !important;
  line-height: 1.2 !important;
}

.elementor-widget-html section.section-pattern .metric-card p,
.elementor-widget-container section.section-pattern .metric-card p,
body section.section-pattern .metric-card p {
  margin: 8px 0 0 !important;
  color: #2d425f !important;
}

.elementor-widget-html section.section-testimonials,
.elementor-widget-container section.section-testimonials,
body section.section-testimonials {
  color: #e7edf7 !important;
  background:
    linear-gradient(165deg, rgba(5, 11, 24, 0.94) 0%, rgba(14, 32, 58, 0.9) 45%, rgba(8, 18, 38, 0.96) 100%),
    url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=2000&q=80") center 35% / cover no-repeat !important;
}

.elementor-widget-html section.section-testimonials .section-head h2,
.elementor-widget-container section.section-testimonials .section-head h2,
body section.section-testimonials .section-head h2 {
  color: #fff !important;
}

.elementor-widget-html section.section-testimonials .eyebrow,
.elementor-widget-container section.section-testimonials .eyebrow,
body section.section-testimonials .eyebrow {
  color: #ffc8cc !important;
}

.elementor-widget-html section.section-testimonials .testimonial-viewport,
.elementor-widget-container section.section-testimonials .testimonial-viewport,
body section.section-testimonials .testimonial-viewport {
  overflow: hidden !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: #fff !important;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38) !important;
}

.elementor-widget-html section.section-testimonials .testimonial-card,
.elementor-widget-container section.section-testimonials .testimonial-card,
body section.section-testimonials .testimonial-card {
  flex: 0 0 100% !important;
  min-height: 340px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 24px !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  box-shadow: none !important;
}

.elementor-widget-html section.section-testimonials .testimonial-card h3,
.elementor-widget-container section.section-testimonials .testimonial-card h3,
body section.section-testimonials .testimonial-card h3 {
  margin-top: 0 !important;
  color: #0f1e33 !important;
  font-size: 1rem !important;
}

.elementor-widget-html section.section-testimonials .testimonial-quote,
.elementor-widget-container section.section-testimonials .testimonial-quote,
body section.section-testimonials .testimonial-quote {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  flex: 1 !important;
  max-height: 170px !important;
  overflow: auto !important;
  padding-right: 10px !important;
  color: #5a6d8a !important;
  line-height: 1.75 !important;
}

.elementor-widget-html section.section-testimonials .quote-mark,
.elementor-widget-container section.section-testimonials .quote-mark,
body section.section-testimonials .quote-mark {
  color: #e32626 !important;
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.elementor-widget-html section.section-testimonials .stars,
.elementor-widget-container section.section-testimonials .stars,
body section.section-testimonials .stars {
  color: #f4a300 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
