/* ==========================================================================
   LEADING.ZONE SOLUTIONS — GLOBAL STYLESHEET (solutions.leading.zone)
   Palette: Coral Red (#FF3B30), Pure White, Premium Black (#111111)
   Typography: Inter & Montserrat
   ========================================================================== */

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

:root {
  --lz-red:        #FF3B30;
  --lz-red-dark:   #D6281D;
  --lz-red-light:  #FF6B63;
  --lz-red-pale:   #FFF1F0;
  --lz-black:      #111111;
  --lz-dark:       #1D1D1F;
  --lz-card-dark:  #18181A;
  --lz-gray:       #555555;
  --lz-gray-light: #777777;
  --lz-mid:        #999999;
  --lz-bg-alt:     #F8F9FA;
  --lz-border:     #E5E5E7;
  --lz-white:      #FFFFFF;
  --max-width:     1180px;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:     0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg:     0 16px 40px rgba(0, 0, 0, 0.09);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--lz-black);
  background: var(--lz-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.lz-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lz-border);
  z-index: 1000;
  transition: all var(--transition);
}

.lz-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.lz-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lz-brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lz-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lz-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lz-gray);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.lz-nav-link:hover,
.lz-nav-link.active {
  color: var(--lz-red);
}

.lz-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lz-red);
  border-radius: 2px;
}

.lz-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lz-lang-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--lz-bg-alt);
  color: var(--lz-gray);
  border: 1px solid var(--lz-border);
  transition: all var(--transition);
}

.lz-lang-pill:hover {
  background: var(--lz-red-pale);
  color: var(--lz-red);
  border-color: var(--lz-red);
}

.lz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.lz-btn-primary {
  background: var(--lz-red);
  color: var(--lz-white);
  border-color: var(--lz-red);
}

.lz-btn-primary:hover {
  background: var(--lz-red-dark);
  border-color: var(--lz-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 59, 48, 0.28);
}

.lz-btn-outline {
  background: transparent;
  color: var(--lz-black);
  border-color: var(--lz-black);
}

.lz-btn-outline:hover {
  background: var(--lz-black);
  color: var(--lz-white);
  transform: translateY(-1px);
}

.lz-btn-white {
  background: var(--lz-white);
  color: var(--lz-red);
  border-color: var(--lz-white);
}

.lz-btn-white:hover {
  background: var(--lz-red-pale);
  color: var(--lz-red-dark);
  transform: translateY(-1px);
}

.lz-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.lz-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lz-black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION (Leadership as a service in prominent bold display)
   ========================================================================== */
.lz-hero {
  position: relative;
  padding: 104px 0 88px;
  background: var(--lz-white);
  overflow: hidden;
}

.lz-hero-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.lz-hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--lz-red);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.lz-hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--lz-black);
  max-width: 760px;
  margin: 0 auto 20px;
}

.lz-hero-tagline em {
  font-style: normal;
  color: var(--lz-red);
}

.lz-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--lz-gray);
  max-width: 660px;
  margin: 0 auto 36px;
}

.lz-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   CLIENTS MARQUEE / CAROUSEL (ALL 29 COMPANIES)
   ========================================================================== */
.lz-clients-section {
  padding: 44px 0;
  background: var(--lz-bg-alt);
  border-top: 1px solid var(--lz-border);
  border-bottom: 1px solid var(--lz-border);
  overflow: hidden;
}

.lz-clients-header {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lz-mid);
  margin-bottom: 24px;
}

.lz-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.lz-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: lzScroll 42s linear infinite;
}

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

.lz-client-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #555;
  white-space: nowrap;
  padding: 8px 18px;
  background: var(--lz-white);
  border: 1px solid var(--lz-border);
  border-radius: 6px;
  transition: all var(--transition);
}

.lz-client-pill:hover {
  color: var(--lz-red);
  border-color: var(--lz-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

/* ==========================================================================
   NO MORE THEORETICAL ADVICE SECTION
   ========================================================================== */
.lz-pitch-section {
  padding: 96px 0;
  background: var(--lz-white);
}

.lz-pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lz-pitch-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--lz-black);
  margin-bottom: 20px;
}

.lz-pitch-content h2 em {
  font-style: normal;
  color: var(--lz-red);
}

.lz-pitch-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--lz-gray);
  margin-bottom: 24px;
}

.lz-pitch-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lz-pitch-card {
  background: var(--lz-bg-alt);
  border-left: 4px solid var(--lz-red);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lz-pitch-card:hover {
  transform: translateX(4px);
  background: var(--lz-red-pale);
}

.lz-pitch-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--lz-black);
  margin-bottom: 6px;
}

.lz-pitch-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lz-gray);
  margin-bottom: 0;
}

/* ==========================================================================
   STAT BLOCK (96% SATISFACTION)
   ========================================================================== */
.lz-stat-section {
  background: var(--lz-red);
  color: var(--lz-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lz-stat-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.lz-stat-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lz-stat-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.lz-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(72px, 11vw, 130px);
  font-weight: 900;
  line-height: 1;
  color: var(--lz-white);
  margin-bottom: 16px;
}

.lz-stat-number span {
  font-size: 60%;
}

.lz-stat-text {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.lz-testimonials-section {
  padding: 96px 0;
  background: var(--lz-bg-alt);
}

.lz-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.lz-section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lz-red);
  margin-bottom: 12px;
}

.lz-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--lz-black);
  margin-bottom: 16px;
}

.lz-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lz-gray);
}

.lz-testimonials-carousel-container {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.lz-testimonial-card-main {
  background: var(--lz-white);
  border-radius: 12px;
  padding: 48px 52px;
  border-left: 5px solid var(--lz-red);
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lz-quote-icon {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.8;
  color: var(--lz-red);
  opacity: 0.15;
  position: absolute;
  top: 24px;
  left: 28px;
}

.lz-testimonial-quote-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.lz-testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--lz-border);
  padding-top: 20px;
}

.lz-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lz-red);
  color: var(--lz-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.lz-author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--lz-black);
}

.lz-author-info span {
  font-size: 13px;
  color: var(--lz-gray-light);
}

.lz-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.lz-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lz-white);
  border: 1px solid var(--lz-border);
  color: var(--lz-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lz-carousel-btn:hover {
  background: var(--lz-red);
  color: var(--lz-white);
  border-color: var(--lz-red);
}

.lz-carousel-btn svg {
  width: 18px;
  height: 18px;
}

.lz-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lz-border);
  cursor: pointer;
  transition: all var(--transition);
}

.lz-dot.active {
  background: var(--lz-red);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   COMPANIES SECTION (#companies)
   ========================================================================== */
.lz-section-companies {
  padding: 104px 0 96px;
  background: var(--lz-white);
  border-top: 1px solid var(--lz-border);
}

.lz-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.lz-service-card {
  background: var(--lz-bg-alt);
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}

.lz-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--lz-red);
  box-shadow: var(--shadow-md);
  background: var(--lz-white);
}

.lz-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lz-pill-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--lz-red-pale);
  color: var(--lz-red);
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.lz-pill-badge.dark {
  background: #222;
  color: #FFF;
  border-color: #222;
}

.lz-service-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--lz-black);
  margin-bottom: 14px;
  line-height: 1.25;
}

.lz-service-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lz-gray);
  margin-bottom: 20px;
}

.lz-service-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  border-top: 1px solid var(--lz-border);
  padding-top: 20px;
}

.lz-service-details li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.lz-service-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lz-red);
  font-weight: 900;
}

/* ==========================================================================
   PROFESSIONALS SECTION (#professionals)
   ========================================================================== */
.lz-section-professionals {
  padding: 104px 0 96px;
  background: var(--lz-bg-alt);
  border-top: 1px solid var(--lz-border);
}

.lz-prof-stats-bar {
  background: var(--lz-black);
  color: var(--lz-white);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 64px;
}

.lz-prof-stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  color: var(--lz-red);
  line-height: 1;
  margin-bottom: 8px;
}

.lz-prof-stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.lz-prof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.lz-prof-card {
  background: var(--lz-white);
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}

.lz-prof-card:hover {
  transform: translateY(-4px);
  border-color: var(--lz-red);
  box-shadow: var(--shadow-md);
}

.lz-prof-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--lz-black);
  margin-bottom: 14px;
}

.lz-prof-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lz-gray);
  margin-bottom: 24px;
}

/* ==========================================================================
   CONTACT FORM SECTION (#contact) - Integrated with vCita
   ========================================================================== */
.lz-section-contact {
  padding: 104px 0 96px;
  background: var(--lz-white);
  border-top: 1px solid var(--lz-border);
}

.lz-contact-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.lz-contact-card {
  background: var(--lz-white);
  border: 2px solid var(--lz-border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.lz-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.lz-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lz-form-group.full-width {
  grid-column: 1 / -1;
}

.lz-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-black);
  letter-spacing: 0.02em;
}

.lz-input,
.lz-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--lz-black);
  background: #FAFAFC;
  border: 1px solid var(--lz-border);
  border-radius: 8px;
  transition: all var(--transition);
  outline: none;
}

.lz-input:focus,
.lz-textarea:focus {
  background: var(--lz-white);
  border-color: var(--lz-red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
}

.lz-textarea {
  min-height: 130px;
  resize: vertical;
}

.lz-form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lz-form-note {
  font-size: 12px;
  color: var(--lz-gray-light);
}

.lz-form-status {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.lz-form-status.success {
  display: block;
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

.lz-form-status.error {
  display: block;
  background: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #FFCDD2;
}

.lz-form-status.loading {
  display: block;
  background: #FFF8E1;
  color: #F57F17;
  border: 1px solid #FFE082;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lz-footer {
  background: #0B0B0C;
  color: var(--lz-white);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lz-footer-brand-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lz-footer-brand-title .dot {
  color: var(--lz-red);
}

.lz-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.lz-footer-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.lz-footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.lz-footer-contact a:hover {
  color: var(--lz-red);
}

.lz-footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.lz-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lz-footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lz-footer-col ul a:hover {
  color: var(--lz-red);
}

.lz-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.lz-footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 960px) {
  .lz-pitch-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lz-services-grid,
  .lz-prof-grid {
    grid-template-columns: 1fr;
  }
  .lz-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .lz-nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--lz-white);
    padding: 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--lz-border);
    box-shadow: var(--shadow-md);
  }

  .lz-nav-menu.open {
    display: flex;
  }

  .lz-mobile-toggle {
    display: flex;
  }

  .lz-hero {
    padding: 64px 0 48px;
  }

  .lz-pitch-section,
  .lz-testimonials-section,
  .lz-section-companies,
  .lz-section-professionals,
  .lz-section-contact {
    padding: 64px 0;
  }

  .lz-contact-card {
    padding: 32px 24px;
  }

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

  .lz-prof-stats-bar {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .lz-testimonial-card-main {
    padding: 32px 28px;
  }
}
