/* High Demand Media landing page Stylesheet
   Color palette:
   #280905, #740A03, #C3110C, #E6501B
   Theme: Vibrant Sunset Peach (Visual Warmth, High Legibility, Spacious)
*/

:root {
  --dark: #1d0502;
  --maroon: #740A03;
  --red: #C3110C;
  --orange: #E6501B;
  --bg-base: #ffd9c2;
  --bg-alt: #fcede2;
  --cream: #fff4ed;
  --peach: #ffb28e;
  --soft: #4a302c;
  --line: rgba(116, 10, 3, 0.08);
  --card-bg: rgba(255, 255, 255, 0.78);
  --shadow: 0 15px 45px rgba(116, 10, 3, 0.04);
  --radius: 18px;
  --glow-orange: rgba(230, 80, 27, 0.06);
  --glow-red: rgba(195, 17, 12, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #cbcbcb;
  background-image: linear-gradient(180deg, #ffffff 0%, #cbcbcb 48%, #000000 100%);
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Background animated glow blobs (Sunset Embers) */
.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.glow-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(230, 80, 27, 0.1) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: float-blob-1 25s infinite ease-in-out alternate;
}

.glow-2 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(195, 17, 12, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -10%;
  animation: float-blob-2 30s infinite ease-in-out alternate;
}

.glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(230, 80, 27, 0.07) 0%, transparent 70%);
  top: 35%;
  left: 40%;
  animation: float-blob-3 20s infinite ease-in-out alternate;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.05); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, -50px) scale(0.95); }
}

@keyframes float-blob-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 60px) scale(1.1); }
}

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

/* Text & Headings */
h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--red) 15%, var(--orange) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

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

.hero-services {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.eyebrow .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

/* Floating capsule header */
.site-header {
  position: sticky;
  top: 16px;
  margin: 16px auto;
  width: calc(100% - 32px);
  max-width: 1400px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 999px;
  border: 1px solid rgba(116, 10, 3, 0.12);
  box-shadow: 0 10px 40px rgba(116, 10, 3, 0.04);
  transition: all 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.site-header .logo-img {
  height: 52px;
}

.logo-img:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--dark);
  background: rgba(116, 10, 3, 0.04);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(116, 10, 3, 0.16);
  border-radius: 999px;
}

.nav-links .language-switcher a {
  width: auto;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.76rem;
  line-height: 1;
}

.nav-links .language-switcher a[aria-current="page"] {
  color: #fff;
  background: var(--maroon);
}

.language-divider {
  color: rgba(58, 37, 34, 0.42);
  font-size: 0.72rem;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon) !important;
  font-weight: 700 !important;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-phone-link:hover {
  background: rgba(116, 10, 3, 0.06) !important;
  color: var(--red) !important;
}

.phone-icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 80, 27, 0.2);
  transition: all 0.25s ease;
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 80, 27, 0.35);
}

/* Mobile Menu Button */
.mobile-menu {
  display: none;
  background: transparent;
  border: 0;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.mobile-menu span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu span:nth-child(1) { top: 0; }
.mobile-menu span:nth-child(2) { top: 9px; }
.mobile-menu span:nth-child(3) { top: 18px; }

.mobile-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Widen Layout Container */
main {
  width: 92vw;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.section {
  padding: 78px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 58px);
  align-items: center;
}

/* Card System (Light Sunset Glassmorphic) */
.glass-card,
.service-card,
.result-card,
.review-card,
.creator-card,
.step {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 10, 3, 0.1);
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 15px 45px rgba(116, 10, 3, 0.03);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.glass-card:hover,
.service-card:hover,
.result-card:hover,
.review-card:hover,
.creator-card:hover,
.step:hover {
  border-color: rgba(230, 80, 27, 0.25);
  box-shadow: 0 20px 60px rgba(116, 10, 3, 0.06);
}

/* Card Glow Effect (Subtle Sunset Glow) */
.card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(230, 80, 27, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.glass-card:hover .card-glow,
.service-card:hover .card-glow,
.result-card:hover .card-glow,
.step:hover .card-glow {
  opacity: 1;
}

.glass-card *,
.service-card *,
.result-card *,
.step * {
  position: relative;
  z-index: 2;
}

.glass-card > .card-glow,
.service-card > .card-glow,
.result-card > .card-glow,
.step > .card-glow {
  position: absolute;
  z-index: 0;
}

/* Hero Section */
.hero {
  padding: 56px 0 78px;
  min-height: auto;
  grid-template-columns: minmax(0, 0.84fr) minmax(620px, 1.16fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--soft);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  min-height: 54px;
}

.hidden-quote-btn {
  position: relative;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(116, 10, 3, 0.12);
  box-shadow: 0 14px 32px rgba(116, 10, 3, 0.08);
  opacity: 0;
  transform: translateX(-16px) rotate(-2deg) scale(0.94);
  pointer-events: none;
  max-width: 0;
  padding-inline: 0;
  white-space: nowrap;
  overflow: hidden;
}

.hidden-quote-btn::before {
  content: "";
  position: absolute;
  inset: 7px auto auto 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 10px 0 0 rgba(195, 17, 12, 0.75), 20px 0 0 rgba(116, 10, 3, 0.45);
}

.hero-actions:hover .hidden-quote-btn,
.hero-actions:focus-within .hidden-quote-btn,
.hero-actions.reveal-secret .hidden-quote-btn,
.booking-cta-group:hover .hidden-quote-btn,
.booking-cta-group:focus-within .hidden-quote-btn,
.booking-cta-group.reveal-secret .hidden-quote-btn {
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(1);
  pointer-events: auto;
  max-width: 340px;
  padding: 16px 24px 16px 46px;
  animation: hidden-quote-wiggle 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hidden-quote-wiggle {
  0% { transform: translateX(-16px) rotate(-2deg) scale(0.94); }
  60% { transform: translateX(4px) rotate(1deg) scale(1.03); }
  100% { transform: translateX(0) rotate(0deg) scale(1); }
}

/* Button UI */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 36px;
  font-weight: 750;
  cursor: pointer;
  font-size: 0.96rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 25px rgba(230, 80, 27, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 80, 27, 0.35);
}

.btn-secondary {
  color: var(--dark);
  background: rgba(116, 10, 3, 0.04);
  border: 1px solid rgba(116, 10, 3, 0.12);
}

.btn-secondary:hover {
  background: rgba(116, 10, 3, 0.08);
  border-color: rgba(116, 10, 3, 0.25);
  transform: translateY(-2px);
}

.phone-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-phone-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.full-width {
  width: 100%;
}

/* Trust Row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(116, 10, 3, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(230, 80, 27, 0.2);
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 2px;
}

.trust-item span {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
}

/* Hero 3D Area */
.hero-visual {
  position: relative;
  height: 620px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

#hero3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating metrics cards in Hero */
.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(116, 10, 3, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(116, 10, 3, 0.06);
  animation: float 5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-card:hover {
  border-color: var(--orange);
  background: white;
  transform: scale(1.03);
}

.floating-card span:nth-of-type(2) {
  display: block;
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.floating-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark) 20%, var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-a { top: 12%; left: 8%; }
.card-b { right: 8%; top: 36%; animation-delay: -1.5s; }
.card-c { left: 12%; bottom: 12%; animation-delay: -3.0s; }

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

/* Services Section */
.section-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
}

.section-copy p {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  padding: 36px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 750;
}

.service-card p {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card ul {
  padding-left: 20px;
  list-style: none;
}

.service-card ul li {
  position: relative;
  color: var(--soft);
  font-size: 0.88rem;
  margin-bottom: 6px;
  padding-left: 4px;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--orange);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(230, 80, 27, 0.06);
  border: 1px solid rgba(230, 80, 27, 0.18);
  color: var(--red);
  margin-bottom: 24px;
}

.service-icon-svg {
  width: 24px;
  height: 24px;
}

/* Results Section */
.center-copy {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
}

.center-copy p {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.result-card {
  padding: 20px 28px;
  min-height: 0;
  aspect-ratio: 2 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.result-card p {
  display: block;
  color: var(--maroon);
  font-size: 0.88rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.result-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0;
  margin-bottom: 4px;
  padding-right: 0.08em;
  background: linear-gradient(135deg, var(--dark) 40%, var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: visible;
}

.result-card span {
  display: block;
  color: var(--soft);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.result-card.featured {
  background: 
    linear-gradient(135deg, rgba(230, 80, 27, 0.03) 0%, rgba(255, 255, 255, 0.8) 100%),
    rgba(255, 255, 255, 0.85);
  border-color: rgba(230, 80, 27, 0.22);
}

.result-card.featured strong {
  background: linear-gradient(135deg, var(--red) 10%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sparklines styling */
.sparkline-wrapper {
  display: block;
  width: 100%;
  height: 18px;
  margin-top: 6px;
  opacity: 0.8;
  position: relative;
}

.sparkline {
  width: 100%;
  height: 100%;
}

.sparkline path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sparkline.animate-draw path {
  stroke-dashoffset: 0;
}

/* About Creators Section */
.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
  margin-inline: auto;
  width: min(100%, 1400px);
  padding: 72px clamp(28px, 5vw, 64px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at top right, rgba(230, 80, 27, 0.08), transparent 44%);
  border: 1px solid rgba(116, 10, 3, 0.1);
  box-shadow: 0 24px 70px rgba(116, 10, 3, 0.05);
}

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

.creator-card {
  isolation: isolate;
  min-height: clamp(420px, 44vw, 560px);
  padding: 0;
  border-radius: 18px;
  cursor: default;
}

.creator-card:focus-visible {
  outline: 3px solid rgba(230, 80, 27, 0.45);
  outline-offset: 5px;
}

.creator-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03);
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.creator-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(40, 9, 5, 0.9) 100%);
  opacity: 0.85;
  transition: opacity 0.45s ease;
}

.creator-info,
.creator-bio {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: white;
}

.creator-info {
  bottom: 22px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.creator-role {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(40, 9, 5, 0.35);
}

.creator-info h3,
.creator-bio h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin-bottom: 10px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 3px 14px rgba(40, 9, 5, 0.45);
}

.creator-bio {
  bottom: 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.creator-bio p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.creator-card:hover img,
.creator-card:focus-visible img {
  transform: scale(1.06);
  filter: contrast(1.08);
}

.creator-card:hover::after,
.creator-card:focus-visible::after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(40, 9, 5, 0.05) 0%, rgba(40, 9, 5, 0.94) 72%);
}

.creator-card:hover .creator-info,
.creator-card:focus-visible .creator-info {
  opacity: 0;
  transform: translateY(14px);
}

.creator-card:hover .creator-bio,
.creator-card:focus-visible .creator-bio {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Process Section */
.timeline-container {
  position: relative;
  margin-top: 28px;
  padding: 0 10px;
}

.timeline-progress-line {
  position: absolute;
  top: 53px;
  left: 30px;
  width: calc(100% - 60px);
  height: 4px;
  background-color: rgba(116, 10, 3, 0.1);
  z-index: 1;
}

.timeline-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--red), var(--orange));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  z-index: 2;
  position: relative;
}

.step {
  padding: 26px 22px;
  text-align: left;
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(116, 10, 3, 0.15);
  color: var(--dark);
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(116, 10, 3, 0.05);
  transition: all 0.5s ease;
  z-index: 10;
}

.step.active .step-number {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  color: white;
  box-shadow: 0 5px 15px rgba(230, 80, 27, 0.35);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Booking Section */
.booking-section {
  padding-bottom: 28px;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 42px;
  align-items: center;
}

.booking-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.booking-copy p {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}

.booking-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 54px;
}

.booking-visual {
  min-width: 0;
}

/* Calendar Preview Visual */
.calendar-preview {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(116, 10, 3, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(116, 10, 3, 0.03);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(116, 10, 3, 0.12);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.dots-accent {
  display: flex;
  gap: 6px;
}

.dots-accent .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dots-accent .dot.red { background-color: #ff5f56; }
.dots-accent .dot.yellow { background-color: #ffbd2e; }
.dots-accent .dot.green { background-color: #27c93f; }

.calendar-header strong {
  font-size: 0.88rem;
  font-family: "Outfit", sans-serif;
  color: var(--dark);
}

.calendar-body {
  display: grid;
  gap: 10px;
}

.time-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(116, 10, 3, 0.1);
  background: rgba(255, 255, 255, 0.4);
  color: rgba(116, 10, 3, 0.35);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: not-allowed;
}

.time-slot.active {
  background: rgba(230, 80, 27, 0.04);
  border-color: rgba(230, 80, 27, 0.18);
  color: var(--red);
  cursor: pointer;
}

.time-slot.active:hover {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 80, 27, 0.22);
}

.system-preview {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(116, 10, 3, 0.12);
  border-radius: 18px;
  padding: 24px;
}

.system-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(116, 10, 3, 0.08);
}

.system-preview-header strong {
  font-family: "Outfit", sans-serif;
  color: var(--dark);
}

.system-flow {
  display: grid;
  gap: 12px;
}

.platform-copy {
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.platform-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding-block: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.platform-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: platform-scroll 28s linear infinite;
}

.platform-track + .platform-track {
  margin-top: 12px;
}

.platform-track-right {
  animation-name: platform-scroll-reverse;
  animation-duration: 24s;
}

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

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(116, 10, 3, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(116, 10, 3, 0.04);
}

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

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

.system-node {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(116, 10, 3, 0.04);
  border: 1px solid rgba(116, 10, 3, 0.08);
}

.system-node span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.system-node strong {
  color: var(--dark);
  font-size: 0.95rem;
}

.system-node p {
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

/* Slide-Out Booking Drawer Panel */
.lead-panel {
  position: fixed;
  right: -460px;
  top: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  z-index: 200;
  padding: 40px 30px;
  background: linear-gradient(145deg, #fffdfb 0%, #f7f3ed 100%);
  border-left: 1px solid rgba(116, 10, 3, 0.12);
  box-shadow: -15px 0 50px rgba(116, 10, 3, 0.06);
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.lead-panel.open {
  right: 0;
}

.lead-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 9, 5, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  z-index: 190;
  transition: opacity 0.45s ease;
}

.lead-panel-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.close-panel {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  color: var(--soft);
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-panel:hover {
  color: var(--dark);
}

.lead-panel-header {
  margin-bottom: 24px;
  padding-right: 20px;
}

.lead-panel-header h2 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.lead-panel-header p {
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Form Steps Indicators */
.form-steps-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.step-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.step-indicator-item.active {
  opacity: 1;
}

.step-indicator-item span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(116, 10, 3, 0.12);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.76rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.step-indicator-item.active span {
  background-color: var(--orange);
  color: white;
  box-shadow: 0 0 10px rgba(230, 80, 27, 0.3);
}

.step-indicator-item label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.step-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(116, 10, 3, 0.1);
}

/* Wizard Steps Content */
.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 16px;
  animation: fadeInStep 0.4s ease forwards;
}

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

.input-group {
  display: grid;
  gap: 8px;
}

.input-group label {
  color: var(--dark);
  font-weight: 700;
  font-size: 0.84rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(116, 10, 3, 0.15);
  border-radius: 12px;
  background: white;
  color: var(--dark);
  padding: 13px 16px;
  outline: none;
  font: inherit;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}

.lead-panel .btn {
  padding: 16px 36px;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(230, 80, 27, 0.15);
}

.lead-form input::placeholder {
  color: rgba(116, 10, 3, 0.35);
}

.lead-form select option {
  color: var(--dark);
  background-color: white;
}

.form-step-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
}

/* Success Checkmark Animation */
.success-step {
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #27c93f;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #27c93f;
  animation: fill-green .4s ease-in-out .4s forwards, scale-up .3s ease-in-out .9s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #27c93f;
  fill: none;
  animation: stroke-circle .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke-circle { 100% { stroke-dashoffset: 0; } }
@keyframes stroke-check { 100% { stroke-dashoffset: 0; } }
@keyframes fill-green { 100% { box-shadow: inset 0px 0px 0px 40px rgba(39, 201, 63, 0.08); } }
@keyframes scale-up { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.success-step h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.success-step p {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-direct-call-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.form-direct-call-footer p {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.form-phone-link:hover {
  color: var(--orange);
}

.form-note {
  color: rgba(116, 10, 3, 0.4);
  text-align: center;
  font-size: 0.72rem;
  margin-top: 14px;
  line-height: 1.4;
}

/* Footer Section (Rich Dark Earth Grounding Tone) */
.site-footer {
  background: transparent;
  color: #fff4ed;
  padding: 34px 0 28px;
  margin-top: 0;
}

.site-footer .brand .brand-text {
  color: white;
}

.site-footer .footer-brand .brand {
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .logo-img {
  height: 150px;
}

.site-footer .footer-logo-img {
  max-width: min(190px, 64vw);
  height: auto;
  margin-bottom: -10px;
}

.footer-container {
  width: 92vw;
  max-width: 1400px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.8fr;
  gap: 42px;
}

.footer-brand p {
  color: rgba(255, 244, 237, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.05rem;
  font-weight: 750;
  margin-bottom: 20px;
  color: white;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 244, 237, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact p {
  color: rgba(255, 244, 237, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1.35rem;
  transition: all 0.25s ease;
  margin-bottom: 14px;
}

.footer-phone-link:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.footer-phone-link .btn-phone-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.footer-quote-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  border: 0;
  border-bottom: 2px solid var(--orange);
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0 0 4px;
}

.footer-quote-link:hover {
  color: var(--orange);
}

.footer-socials {
  width: 100%;
  margin: 18px 0 0;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 237, 0.12);
  background: rgba(255, 244, 237, 0.055);
  color: rgba(255, 244, 237, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-socials img,
.social-fallback-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.footer-socials img {
  display: block;
  object-fit: contain;
}

.social-fallback-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66c2;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.footer-socials a:hover {
  border-color: rgba(230, 80, 27, 0.52);
  background: rgba(230, 80, 27, 0.12);
  color: white;
}

.email-note {
  font-size: 0.84rem;
  color: rgba(255, 244, 237, 0.45) !important;
}

.email-note a {
  color: rgba(255, 244, 237, 0.78);
  border-bottom: 1px solid rgba(230, 80, 27, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.email-note a:hover {
  color: white;
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 244, 237, 0.05);
  width: 92vw;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 244, 237, 0.35);
  font-size: 0.82rem;
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(92vw, 980px);
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-page .site-footer {
  margin-top: 0;
}

.legal-card {
  border: 1px solid rgba(116, 10, 3, 0.1);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 15px 45px rgba(116, 10, 3, 0.04);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--soft);
  line-height: 1.65;
  margin-bottom: 34px;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin: 30px 0 10px;
}

.legal-card p,
.legal-card li {
  color: var(--soft);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 22px;
  margin: 8px 0 18px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--maroon);
  font-weight: 800;
}

.form-note a {
  color: var(--red);
  font-weight: 800;
}

/* Media Queries (Responsive Design) */

@media (max-width: 1120px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 64px;
  }

  .hero-visual {
    height: 680px;
  }

  .booking-container {
    grid-template-columns: 1fr;
    padding: 34px;
    gap: 26px;
  }

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

  .timeline-progress-line {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .lead-panel {
    right: -460px;
    top: 0;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    max-height: none;
    z-index: 200;
    padding: 40px 30px;
    border-radius: 0;
    border: 0;
    border-left: 1px solid rgba(116, 10, 3, 0.12);
    box-shadow: -15px 0 50px rgba(116, 10, 3, 0.06);
    transform: none;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .creator-card {
    min-height: 520px;
  }

  .lead-panel.open {
    right: 0;
  }

  .lead-panel-overlay {
    display: block;
  }

  .close-panel {
    display: block;
  }

  .lead-panel-header {
    margin-bottom: 24px;
    padding-right: 20px;
  }

  .lead-panel-header h2 {
    font-size: 1.85rem;
    margin-bottom: 8px;
  }

  .lead-panel-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .form-steps-indicator {
    margin-bottom: 30px;
  }

  .form-direct-call-footer {
    display: block;
  }

  .step-indicator-item label {
    font-size: 0.8rem;
  }

  .form-step.active {
    gap: 16px;
  }

  .input-group {
    gap: 8px;
  }

  .input-group label {
    font-size: 0.84rem;
  }

  .lead-form input,
  .lead-form select {
    padding: 13px 16px;
    font-size: 0.94rem;
  }

  .lead-panel .btn {
    padding: 16px 36px;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 38px 0 54px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 8px 16px;
  }

  .site-header .logo-img {
    height: 42px;
    max-width: 210px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-services {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    gap: 7px 9px;
    max-width: 100%;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .nav-links {
    position: fixed;
    inset: 90px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border: 1px solid rgba(116, 10, 3, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    transform: translateY(-24px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(116, 10, 3, 0.12);
  }

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

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
    margin: 4px 0;
  }

  .mobile-menu {
    display: block;
  }

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

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

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

  .trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-item {
    min-width: 0;
    padding: 14px 16px;
  }

  .trust-item div {
    min-width: 0;
  }

  .trust-item span {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    height: clamp(360px, 82vw, 520px);
    max-width: 100%;
    overflow: hidden;
  }

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

  .hero-actions .hidden-quote-btn,
  .booking-cta-group .hidden-quote-btn {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact {
    grid-column: span 1;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 46px 0;
  }

  .site-header {
    padding: 8px 12px;
  }

  .site-header .logo-img {
    height: 36px;
    max-width: 176px;
  }

  .mobile-menu {
    width: 28px;
    flex: 0 0 28px;
  }

  .nav-links {
    inset: 74px 10px auto 10px;
    padding: 18px;
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    text-align: left;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2rem, 13vw, 2.8rem);
  }

  .hero-services {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .about-section {
    width: calc(100% - 32px);
    padding: 42px 20px;
    border-radius: 18px;
  }

  .creator-card {
    min-height: 420px;
    border-radius: 14px;
  }

  .creator-info,
  .creator-bio {
    left: 20px;
    right: 20px;
  }

  .booking-container {
    padding: 26px;
  }

  .result-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .result-card {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    padding: 8px 14px;
  }

  .result-card strong {
    font-size: clamp(1.9rem, 11vw, 2.7rem);
    line-height: 0.95;
    letter-spacing: 0;
  }

  .result-card p {
    font-size: 0.7rem;
    line-height: 1.05;
    margin-bottom: 2px;
  }

  .result-card span {
    font-size: 0.7rem;
    line-height: 1.05;
    margin-bottom: 0;
  }

  .result-card .sparkline-wrapper {
    display: none;
  }

  .floating-card {
    min-width: 125px;
    padding: 12px 16px;
  }

  .floating-card strong {
    font-size: 1.3rem;
  }

  .lead-panel {
    width: 100%;
    right: -100%;
    padding: 30px 20px;
  }

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

  .footer-container {
    width: calc(100% - 32px);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-brand .brand {
    margin-inline: auto;
  }

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