:root {
  --bg: #0f1115;
  --bg-soft: #1a1d23;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fa;
  --muted: #b9c2cc;
  --accent: #ff9b54;
  --accent-2: #ff6b3d;
  --success: #ffb36b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.2);
  --radius: 24px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0b1020;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 155, 84, 0.12), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 107, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #0b1020 0%, #11182d 100%);
  background-color: #0b1020;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 155, 84, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 61, 0.14), transparent 30%),
    radial-gradient(circle at 50% 55%, rgba(255, 155, 84, 0.08), transparent 42%),
    linear-gradient(180deg, #0b1020 0%, #11182d 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15, 17, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120d;
  box-shadow: var(--shadow);
}

.btn-large,
.cta-actions .btn {
  padding: 1.15rem 1.75rem;
  min-height: 58px;
  font-size: 1.08rem;
}

.btn-secondary {
  border-color: var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  padding: 5rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: left;
}

.hero h1 br {
  display: block;
}

.hero-lead {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 44rem;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  justify-content: flex-start;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
  align-items: stretch;
}

.point {
  position: relative;
  min-height: 220px;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  text-align: left;
}

.point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  opacity: 1;
}

.point:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 155, 84, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.point-label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb36b;
  margin-bottom: 1.3rem;
}

.point strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  max-width: none;
}

.point span {
  display: block;
  font-size: 1.07rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.84);
  max-width: 27ch;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  margin: 0 0 0.8rem;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 46rem;
  margin: 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.card {
  border-radius: var(--radius);
  padding: 1.7rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.service-card,
.project-card {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card {
  min-height: 280px;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 155, 84, 0.34);
  background: var(--card-strong);
}

.service-card h3,
.project-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.service-card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}


/* Product section */
.products-section {
  padding-top: 2.2rem;
}

.products-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 155, 84, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
}

.products-intro::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 155, 84, 0.12);
  border: 1px solid rgba(255, 155, 84, 0.25);
  color: #ffb36b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-intro h2 {
  max-width: 13ch;
  margin: 0 auto 1.25rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ffffff;
}

.products-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.product-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 155, 84, 0.36);
  background: var(--card-strong);
}

.product-number {
  margin-bottom: 1.2rem;
  color: #ffb36b;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-card h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.product-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding-top: 1.5rem;
  }

  .products-intro {
    padding: 2rem 1.25rem;
    border-radius: 22px;
  }

  .products-intro::before {
    inset: 12px;
    border-radius: 18px;
  }

  .products-intro h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .products-intro p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    min-height: unset;
  }
}

.tools-section {
  padding-top: 0;
}

.tools-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
  align-items: stretch;
}

.tools-group {
  min-height: 280px;
  width: 100%;
}

.tools-group h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tools-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .tools-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tools-groups {
    grid-template-columns: 1fr;
  }
}

.contact-options-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 88px;
}

.contact-options-header {
  text-align: left;
  margin-bottom: 28px;
}

.contact-options-header h1 {
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 1.2rem;
  padding-bottom: 0.12em;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-options-header p {
  font-size: 1.2rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.contact-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 155, 84, 0.12);
  color: #ffb36b;
  font-size: 14px;
  font-weight: 700;
}

.contact-card h2 {
  font-size: 32px;
  line-height: 1.08;
  margin: 0 0 14px;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 16px;
  font-family: inherit;
}

.form-row textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 20px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #1a120d;
  background: linear-gradient(90deg, #ff9b54 0%, #ff6b3d 100%);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.form-links {
  margin-top: 18px;
  font-size: 14px;
}

.form-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer {
  padding: 1.8rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-line {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.legal-links {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.legal-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  max-width: 920px;
}

.legal-page h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

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

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  html,
  body {
    background-color: #0b1020;
  }

 body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 155, 84, 0.2), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 107, 61, 0.18), transparent 28%),
    radial-gradient(circle at 15% 70%, rgba(255, 155, 84, 0.16), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(255, 107, 61, 0.14), transparent 30%),
    linear-gradient(180deg, #0b1020 0%, #0b1020 100%);
  background-color: #0b1020;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .mobile-link {
    padding: 0.95rem 0;
    color: var(--text);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-cta {
    margin-top: 0.75rem;
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .hero-points,
  .contact-options-grid {
    grid-template-columns: 1fr;
  }

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

  .tool-card {
    min-height: 120px;
    padding: 1rem;
  }

  .tool-card img {
    width: 36px;
    height: 36px;
  }

  .tool-card span {
    font-size: 0.92rem;
  }

  .hero {
    padding: 3.8rem 0 2rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.9rem);
    line-height: 0.98;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
    margin-top: 1.2rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

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

  .hero-points {
    margin-top: 1.7rem;
    gap: 1rem;
  }

  .point {
    min-height: unset;
    padding: 1.5rem;
    border-radius: 22px;
  }

  .point::before {
    left: 18px;
    right: 18px;
    height: 4px;
  }

  .point strong {
    max-width: 100%;
    font-size: 1.55rem;
  }

  .point span {
    max-width: 100%;
    font-size: 1rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .section-heading p {
    max-width: 100%;
    font-size: 1rem;
  }

  .card,
  .contact-card {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .service-card {
    min-height: unset;
  }

  .contact-options-section {
    padding: 36px 16px 64px;
  }

  .contact-options-header {
    text-align: left;
    margin-bottom: 24px;
  }

  .contact-options-header h1 {
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    line-height: 1.08;
    margin: 0 0 1rem;
    padding-bottom: 0.12em;
  }

  .contact-options-header p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-card h2 {
    font-size: 1.6rem;
  }

  .contact-card p {
    font-size: 1rem;
  }

  .footer-line {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.about-card {
  display: block;
}

.about-content {
  display: block;
}

.about-photo-right {
  float: right;
  width: 360px;
  max-width: 42%;
  margin: 0 0 1.5rem 2rem;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-content::after {
  content: "";
  display: block;
  clear: both;
}

.about-content p:first-of-type {
  margin-top: 0;
}

@media (max-width: 980px) {
  .about-photo-right {
    float: none;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.5rem;
  }
}

.cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 3.2rem 2rem;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 155, 84, 0.12);
  border: 1px solid rgba(255, 155, 84, 0.24);
  color: #ffb36b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.cta p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-actions {
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .cta {
    padding: 2.2rem 1.25rem;
    border-radius: 24px;
  }

  .cta h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cta p {
    font-size: 1rem;
  }
}

/* Background grid and glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.18) 0%, rgba(0, 224, 255, 0) 70%);
  top: 80px;
  left: -120px;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.background-blob {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 90, 255, 0.18) 0%, rgba(120, 90, 255, 0) 70%);
  bottom: 50px;
  right: -80px;
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
}

.nav,
.hero,
.section,
.footer,
.contact-options-section,
main {
  position: relative;
  z-index: 1;
}

.booking-card {
  max-width: 920px;
  margin: 0 auto;
}

.booking-card h3 {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
}

.slots-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.slot-button {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slot-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 155, 84, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.slot-button.selected {
  border-color: rgba(255, 155, 84, 0.7);
  background: rgba(255, 155, 84, 0.16);
}

.booking-form {
  margin-top: 2rem;
}

.selected-slot-label {
  margin: 1rem 0 1.4rem;
  color: #ffb36b;
  font-weight: 700;
}

.booking-message {
  margin-top: 1.5rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .slots-container {
    grid-template-columns: 1fr;
  }
}
.calendar-booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.calendar-panel,
.booking-side-panel {
  min-width: 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.calendar-header h3 {
  margin: 0;
  font-size: 1.45rem;
}

.calendar-nav-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.calendar-weekdays {
  margin-bottom: 0.65rem;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.46);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.calendar-day.empty {
  border: none;
  background: transparent;
}

.calendar-day.available {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 155, 84, 0.28);
  cursor: pointer;
}

.calendar-day.available:hover {
  background: rgba(255, 155, 84, 0.12);
  border-color: rgba(255, 155, 84, 0.52);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120d;
  border-color: transparent;
}

.calendar-day.disabled {
  cursor: not-allowed;
}

.booking-helper-text {
  color: var(--muted);
  line-height: 1.6;
  margin-top: -0.3rem;
  margin-bottom: 1.2rem;
}

.calendar-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calendar-slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--card-border);
}

.calendar-slot-card strong {
  font-size: 1.05rem;
}

.slot-book-button {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.back-button {
  margin-bottom: 1rem;
  border: none;
  background: transparent;
  color: #ffb36b;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 900px) {
  .calendar-booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .calendar-weekdays,
  .calendar-grid {
    gap: 0.35rem;
  }

  .calendar-day {
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .calendar-slot-card {
    align-items: stretch;
    flex-direction: column;
  }

  .slot-book-button {
    width: 100%;
  }
}
.single-contact-card {
  max-width: 620px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (max-width: 640px) {
  body::before {
    background-size: 32px 32px;
    opacity: 0.8;
  }

  body::after {
    width: 360px;
    height: 360px;
    top: 120px;
    left: -180px;
    opacity: 0.9;
  }

  .background-blob {
    width: 320px;
    height: 320px;
    right: -180px;
    bottom: 80px;
    opacity: 0.9;
  }

  .cta-actions .btn,
  .btn-large {
    width: 100%;
    max-width: 360px;
  }
}
/* Center all main section titles */
.hero-copy,
.section-heading,
.contact-options-header,
.cta {
  text-align: center;
}

.hero h1,
.hero-lead,
.section-heading p,
.contact-options-header p,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.cta-actions {
  justify-content: center;
}

.contact-options-header h1,
.section-heading h2,
.cta h2 {
  text-align: center;
}

/* Language switcher */
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 155, 84, 0.35);
  background: rgba(255, 155, 84, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.language-switch:hover {
  transform: translateY(-2px);
  background: rgba(255, 155, 84, 0.16);
  border-color: rgba(255, 155, 84, 0.6);
}

@media (max-width: 980px) {
  .nav-actions {
    display: flex;
    margin-left: auto;
  }

  .nav-actions .btn {
    display: none;
  }
}
.section-box {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(255, 155, 84, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(120, 90, 255, 0.14),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}

.section-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

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

@media (max-width: 980px) {
  .section-box {
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

  .section-box::before {
    inset: 12px;
    border-radius: 18px;
  }
}

/* =========================================================
   Product Pages: shared structure and Client Wins page
   Keep this section clean. Use the variables below to adjust spacing.
   ========================================================= */

:root {
  --product-section-padding: 48px;
  --product-section-padding-mobile: 42px;
  --product-title-gap: 24px;
  --product-card-gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(18px);
  background: rgba(18, 14, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ff8a3d;
}

.nav-cta {
  color: #111111;
  background: linear-gradient(135deg, #ff8a3d, #ff6a2a);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.product-hero {
  padding: 110px 0 72px;
}

.product-hero .container {
  max-width: var(--container);
}

.product-hero-inner {
  max-width: 960px;
  margin: 0;
}

.product-hero h1 {
  margin: 0 0 20px;
  color: #ff8a3d;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-hero .hero-subtitle {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff8a3d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-problem,
.product-solution,
.methodology-section,
.platform-section,
.workflow-section,
.use-cases-section,
.outcomes-section,
.booking-section {
  padding-top: var(--product-section-padding);
  padding-bottom: var(--product-section-padding);
}

.problem-title,
.solution-title,
.platform-title,
.outcomes-title,
.methodology-section h2,
.workflow-section h2,
.use-cases-section h2,
.booking-heading h2 {
  max-width: 960px;
  margin: 0 0 var(--product-title-gap);
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.pain-grid,
.solution-grid,
.methodology-grid,
.platform-grid,
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--product-card-gap);
  margin-top: 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--product-card-gap);
  margin-top: 0;
}

.pain-card,
.solution-card,
.methodology-card,
.platform-card,
.use-case-card,
.outcome-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.pain-card h3,
.solution-card h3,
.methodology-card h3,
.platform-card h3,
.use-case-card h3,
.outcome-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.2;
}

.pain-card p,
.solution-card p,
.methodology-card p,
.platform-card p,
.use-case-card p,
.outcome-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ff8a3d;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.platform-note-title {
  width: 100%;
  max-width: none;
  margin: 42px 0 0;
  color: #ff8a3d;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.workflow-card.workflow-card-horizontal {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr) auto minmax(170px, 1fr) auto minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 138, 61, 0.24);
  background: rgba(255, 255, 255, 0.035);
  overflow: visible;
  box-sizing: border-box;
}

.workflow-card.workflow-card-horizontal .workflow-step {
  min-width: 0;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 22px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-sizing: border-box;
}

.workflow-card.workflow-card-horizontal .workflow-step span {
  display: block;
  width: 100%;
}

.workflow-card.workflow-card-horizontal .workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8a3d;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.booking-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.booking-heading p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.booking-heading p + p {
  margin-top: 16px;
}

.product-booking-calendar {
  width: 100%;
  max-width: 100%;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
}

.product-booking-calendar .calendar-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.product-booking-calendar .calendar-panel,
.product-booking-calendar .booking-side-panel {
  min-width: 0;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .workflow-card.workflow-card-horizontal {
    grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto minmax(140px, 1fr);
    gap: 10px;
    padding: 24px;
  }

  .workflow-card.workflow-card-horizontal .workflow-step {
    min-height: 120px;
    padding: 18px 14px;
    font-size: 0.92rem;
  }

  .workflow-card.workflow-card-horizontal .workflow-arrow {
    font-size: 1.3rem;
  }
}

@media (max-width: 960px) {
  .nav-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .pain-grid,
  .solution-grid,
  .methodology-grid,
  .platform-grid,
  .outcomes-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-booking-calendar .calendar-booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .workflow-card.workflow-card-horizontal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .workflow-card.workflow-card-horizontal .workflow-step {
    width: 100%;
    min-height: auto;
    font-size: 0.95rem;
  }

  .workflow-card.workflow-card-horizontal .workflow-arrow {
    transform: rotate(90deg);
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .product-hero {
    padding: 72px 0 52px;
  }

  .product-problem,
  .product-solution,
  .methodology-section,
  .platform-section,
  .workflow-section,
  .use-cases-section,
  .outcomes-section,
  .booking-section {
    padding-top: var(--product-section-padding-mobile);
    padding-bottom: var(--product-section-padding-mobile);
  }

  .pain-grid,
  .solution-grid,
  .methodology-grid,
  .platform-grid,
  .use-case-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }
}
.workflow-title {
  white-space: nowrap;
  max-width: none;
}
.hero-subtitle-nowrap {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 1100px) {
  .hero-subtitle-nowrap {
    white-space: normal;
  }
}
.methodology-title {
  max-width: 960px;
  white-space: normal;
}
.methodology-title {
  max-width: none;
  white-space: normal;
}

.methodology-title .keep-line {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .methodology-title .keep-line {
    white-space: normal;
  }
}.platform-title {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 1100px) {
  .platform-title {
    white-space: normal;
  }
}

/* Home page alignment fixes
   Scoped to .home-page so product pages like client-wins.html are not affected. */
.home-page .hero-copy,
.home-page .section-heading,
.home-page .contact-options-header,
.home-page .cta,
.home-page .products-intro {
  text-align: left;
}

.home-page .hero h1,
.home-page .hero-lead,
.home-page .section-heading h2,
.home-page .section-heading p,
.home-page .contact-options-header h1,
.home-page .contact-options-header p,
.home-page .cta h2,
.home-page .cta p,
.home-page .products-intro h2,
.home-page .products-intro p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.home-page .hero-actions,
.home-page .cta-actions {
  justify-content: flex-start;
}

.home-page .section-box .products-intro {
  max-width: 980px;
  margin: 0 0 2rem;
  text-align: left;
}

.home-page .section-box .products-intro h2 {
  margin-left: 0;
  margin-right: 0;
}

.home-page .products-intro h2 {
  max-width: 980px;
}

.home-page .products-intro p {
  max-width: 760px;
}

@media (max-width: 980px) {
  .home-page .hero-copy,
  .home-page .section-heading,
  .home-page .contact-options-header,
  .home-page .cta,
  .home-page .products-intro {
    text-align: left;
  }
}


/* =========================================================
   Client Wins page section boxes
   SAFE SCOPE: applies only to <body class="client-wins-page">.
   This will NOT affect index.html because index.html does not use this body class.
   ========================================================= */

.client-wins-page .product-page-box {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.client-wins-page .product-page-box::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.client-wins-page .product-page-box > * {
  position: relative;
  z-index: 1;
}

.client-wins-page .product-page-box .pain-grid,
.client-wins-page .product-page-box .solution-grid,
.client-wins-page .product-page-box .methodology-grid,
.client-wins-page .product-page-box .platform-grid,
.client-wins-page .product-page-box .use-case-grid,
.client-wins-page .product-page-box .outcomes-grid,
.client-wins-page .product-page-box .workflow-card,
.client-wins-page .product-page-box .product-booking-calendar {
  margin-top: 1.75rem;
}

.client-wins-page .product-page-box .platform-note-title {
  margin-top: 2.4rem;
}

@media (max-width: 980px) {
  .client-wins-page .product-page-box {
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

  .client-wins-page .product-page-box::before {
    inset: 12px;
    border-radius: 18px;
  }
}
.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card-footer span {
  margin-top: 0;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-card-link:hover .product-card-cta {
  transform: translateX(4px);
  color: var(--accent-2);
}.product-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-card {
  min-height: 300px;
}

.product-card > p {
  margin-bottom: 1.6rem;
}

.product-card .product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.product-card .product-tag {
  margin-top: 0;
}

.product-card .product-card-cta {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-card-link:hover .product-card-cta {
  transform: translateX(4px);
  color: var(--accent-2);
}

/* =========================================================
   Home product card CTA fix
   Scoped to .home-page so it does not affect Client Wins.
   ========================================================= */
.home-page .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.home-page .product-card.card {
  min-height: 320px;
}

.home-page .product-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.home-page .product-card > p {
  margin-bottom: 1.6rem;
}

.home-page .product-card .product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.home-page .product-card .product-tag {
  margin-top: 0;
}

.home-page .product-card .product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-page .product-card-link:hover .product-card-cta {
  transform: translateX(4px);
  color: var(--accent-2);
}

@media (max-width: 1100px) {
  .home-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .product-card.card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .home-page .products-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card.card {
    min-height: unset;
  }
}
.outcomes-title {
  max-width: 1100px;
}

.outcomes-title br {
  display: block;
}

/* =========================================================
   Home products grid final safety fix
   Keeps product cards aligned and prevents malformed/empty footer spacing.
   ========================================================= */
.home-page .products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.home-page .products-section .product-card.card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.home-page .products-section .product-card > p {
  margin-bottom: 1.4rem;
}

.home-page .products-section .product-card-cta {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-page .products-section .product-card-link:hover .product-card-cta {
  transform: translateX(4px);
  color: var(--accent-2);
}

@media (max-width: 1100px) {
  .home-page .products-section .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .products-section .products-grid {
    grid-template-columns: 1fr;
  }

  .home-page .products-section .product-card.card {
    min-height: unset;
  }
}
.client-wins-page .sync-workflow-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 22px;
  margin-top: 24px;
  box-sizing: border-box;
}

.client-wins-page .sync-workflow-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.client-wins-page .sync-workflow-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.15;
}

.client-wins-page .sync-workflow-card .workflow-card,
.client-wins-page .sync-workflow-card .workflow-card-horizontal {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}.client-wins-page .sync-workflow-card {
  overflow: hidden;
}

.client-wins-page .sync-workflow-card .workflow-card.workflow-card-horizontal {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.client-wins-page .sync-workflow-card .workflow-step {
  min-width: 0;
}

.client-wins-page .sync-workflow-card .workflow-step span {
  overflow-wrap: anywhere;
}.client-wins-page .sync-workflow-card .workflow-card.workflow-card-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.client-wins-page .sync-workflow-card .workflow-step {
  flex: 1 1 0;
  min-width: 0;
  max-width: 180px;
}

.client-wins-page .sync-workflow-card .workflow-step span {
  display: block;
  overflow-wrap: anywhere;
}

.client-wins-page .sync-workflow-card .workflow-arrow {
  flex: 0 0 auto;
}

/* =========================================================
   Mobile navigation final fix
   Home + product pages
   ========================================================= */

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

  .nav,
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(15, 17, 21, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-inner,
  .nav-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 14px;
  }

  .brand,
  .logo {
    font-size: 0.95rem;
    line-height: 1.05;
    max-width: 180px;
    white-space: normal;
  }

  .nav-links,
  .site-header .nav-links {
    display: none !important;
  }

  .desktop-cta,
  .nav-cta {
    display: none !important;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .language-switch {
    min-width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .menu-toggle,
  .site-header .menu-toggle {
    display: inline-flex !important;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid rgba(255, 155, 84, 0.35);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span,
  .site-header .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .mobile-menu,
  .site-header .mobile-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-menu.is-open,
  .site-header .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-inner,
  .site-header .mobile-menu-inner {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .mobile-link,
  .site-header .mobile-link {
    display: block;
    padding: 0.95rem 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.services-grid {
  gap: 1.5rem;
}

.service-card {
  text-align: left;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
}

.service-card h3 {
  margin: 0 0 1rem;
  text-align: center;
  color: var(--text);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.service-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card li {
  color: var(--text);
  line-height: 1.5;
}

.service-card li::marker {
  color: var(--accent);
}

@media (max-width: 768px) {
  .service-card {
    min-height: unset;
    padding: 1.5rem;
  }

  .service-card h3 {
    text-align: left;
  }
}/* =========================================================
   Simple Product Pages
   Decision Engine, Ops Pulse, Customer 360
   SAFE SCOPE: only affects pages with body.simple-product-page
   ========================================================= */

.simple-product-page .product-hero {
  padding: 96px 0 48px;
}

.simple-product-page .product-hero-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 32px;
}

.simple-product-page .product-hero-card .eyebrow {
  margin-bottom: 18px;
  color: #ffb36b;
}

.simple-product-page .product-hero-card h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.simple-product-page .product-hero-card p {
  max-width: 900px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.simple-product-page .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120d;
  font-weight: 800;
}

.simple-product-page .product-details {
  padding: 32px 0 48px;
}

.simple-product-page .product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.simple-product-page .product-details .card,
.simple-product-page .product-outcome .card {
  padding: 32px;
  border-radius: 24px;
}

.simple-product-page .product-details h2,
.simple-product-page .product-outcome h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.simple-product-page .product-details p,
.simple-product-page .product-outcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.simple-product-page .product-details ul {
  margin: 0;
  padding-left: 1.2rem;
}

.simple-product-page .product-details li {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.simple-product-page .product-details li::marker {
  color: var(--accent);
}

.simple-product-page .product-outcome {
  padding: 24px 0 88px;
}

.simple-product-page .product-outcome .card {
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .simple-product-page .product-hero {
    padding: 72px 0 32px;
  }

  .simple-product-page .product-hero-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .simple-product-page .product-hero-card h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .simple-product-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .simple-product-page .product-details .card,
  .simple-product-page .product-outcome .card {
    padding: 24px 20px;
  }
}

/* =========================================================
   Clean commercial product section
   Keeps the original card grid, but adds positioning without breaking layout.
   ========================================================= */
.products-intro-clean { max-width: 920px !important; margin-bottom: 1.5rem !important; }
.products-intro-clean h2 { max-width: 780px; margin: 0.7rem auto 1rem; color: var(--accent); font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 0.98; letter-spacing: -0.045em; }
.products-intro-clean p { max-width: 780px; margin: 0 auto; color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.75; }
.section-eyebrow { display: inline-flex; width: fit-content; align-items: center; justify-content: center; padding: 0.52rem 0.95rem; border-radius: 999px; border: 1px solid rgba(255,155,84,0.36); background: rgba(255,155,84,0.09); color: #ffb36b; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.product-positioning-strip { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,0.9fr); gap: 1.5rem; align-items: center; margin: 0 0 1.5rem; padding: clamp(1.4rem,3vw,2rem); border-radius: 26px; background: linear-gradient(180deg,rgba(255,255,255,0.065),rgba(255,255,255,0.035)); border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-soft); }
.product-positioning-strip h3 { margin: 0.85rem 0 0.65rem; color: var(--accent); font-size: clamp(2rem,4vw,3.4rem); line-height: 1; letter-spacing: -0.045em; }
.product-positioning-strip p { margin: 0; max-width: 720px; color: rgba(255,255,255,0.76); line-height: 1.7; }
.system-pill-grid-clean { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: flex-start; }
.system-pill-grid-clean span { display: inline-flex; width: fit-content; padding: 0.68rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11); color: rgba(255,255,255,0.88); font-size: 0.86rem; font-weight: 800; }
.products-grid-clean { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.25rem; align-items: stretch; }
.products-grid-clean .product-card.card { min-height: 390px; padding: 1.55rem; overflow: hidden; }
.products-grid-clean .product-category-label { display: inline-flex; align-items: center; justify-content: center; width: fit-content; margin: 0 0 1rem; padding: 0.42rem 0.7rem; border-radius: 999px; background: rgba(255,155,84,0.1); border: 1px solid rgba(255,155,84,0.24); color: #ffb36b; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.products-grid-clean .product-card h3 { font-size: clamp(1.75rem,2.5vw,2.35rem); }
.products-grid-clean .product-card p { margin-bottom: 1rem; }
.products-grid-clean .product-card-meta { margin-top: auto; margin-bottom: 1.05rem; padding-left: 0.8rem; border-left: 3px solid rgba(255,155,84,0.65); color: rgba(255,255,255,0.76); font-size: 0.9rem; font-weight: 750; line-height: 1.45; }
.products-grid-clean .product-card-cta { margin-top: 0; display: inline-flex; width: fit-content; color: var(--accent); font-size: 0.94rem; font-weight: 900; }
.products-cta-mini { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.5rem; padding: clamp(1.4rem,3vw,2rem); }
.products-cta-mini h3 { margin: 0 0 0.5rem; color: var(--accent); font-size: clamp(1.5rem,2.5vw,2.1rem); line-height: 1.05; }
.products-cta-mini p { margin: 0; max-width: 760px; color: rgba(255,255,255,0.75); line-height: 1.65; }
@media (max-width: 1100px) { .product-positioning-strip { grid-template-columns: 1fr; } .products-grid-clean { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) { .products-intro-clean h2 { font-size: clamp(2.15rem,12vw,3.4rem); } .products-grid-clean { grid-template-columns: 1fr; } .products-grid-clean .product-card.card { min-height: auto; } .products-cta-mini { flex-direction: column; align-items: flex-start; } }


.manual-break-title {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .manual-break-title {
    white-space: normal;
  }
}.tools-groups-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tools-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .tools-groups-compact {
    grid-template-columns: 1fr;
  }
}.tools-groups-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tools-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-note-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tools-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 780px;
}

.inline-link {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.inline-link:hover {
  color: var(--accent-2);
}

@media (max-width: 980px) {
  .tools-groups-compact {
    grid-template-columns: 1fr;
  }

  .tools-note-cta {
    align-items: flex-start;
  }
}

.tools-inline-cta {
  margin-top: 1.5rem;
}

.tools-inline-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.inline-link2a {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  margin-left: 0.35rem;
}

.inline-link2a:hover {
  color: var(--accent-2);
}.service-card .product-number {
  display: block;
  margin-bottom: 1rem;
}

.service-card h3,
.service-card p {
  margin-left: 0;
  padding-left: 0;
}

.service-card ul {
  margin-left: 0;
}
.services-grid .service-card h3 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

#services .section-heading h2 {
  color: var(--text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--text);
}

#services .service-card h3 {
  color: var(--accent);
}
#tools .section-heading h2 {
  color: var(--text) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--text) !important;
}

#tools .tools-group h3 {
  color: var(--accent) !important;
}#book-call .contact-options-header h1 {
  color: var(--text) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--text) !important;
}

#book-call .calendar-header h3 {
  color: var(--accent) !important;
}#book-call .calendar-weekdays span {
  color: var(--accent) !important;
}
.tools-page-hero {
  max-width: 980px;
}

.tools-page-hero h1 {
  margin: 1rem 0 1.2rem;
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--text);
}

.tools-page-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.tools-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tools-full-section {
  padding-top: 2rem;
}

.tools-full-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.tools-full-grid .tools-group {
  min-height: 360px;
}

.tools-full-grid .tools-group h3 {
  color: var(--accent);
}

.tools-full-grid .tools-group p {
  margin: 0 0 1.3rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 58ch;
}

.tools-bottom-cta {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.tools-bottom-cta h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.tools-bottom-cta p {
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
  max-width: 720px;
}

@media (max-width: 980px) {
  .tools-page-hero h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 16vw, 5.4rem);
  }

  .tools-full-grid {
    grid-template-columns: 1fr;
  }

  .tools-full-grid .tools-group {
    min-height: auto;
  }
}.tools-bottom-cta {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.tools-bottom-cta h2 {
  margin: 1rem auto 1.2rem;
  color: var(--text);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.tools-bottom-cta p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
  max-width: 760px;
}

.tools-bottom-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .tools-bottom-cta h2 {
    max-width: 100%;
  }

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

  .tools-bottom-actions .btn {
    width: 100%;
  }
}.tools-bottom-cta {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.tools-bottom-cta h2 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 11ch;
}

.tools-bottom-cta p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 760px;
}

.tools-bottom-actions {
  justify-content: flex-start !important;
}.manual-cta-title {
  max-width: none !important;
}

.manual-cta-title .keep-line {
  white-space: nowrap;
}@media (max-width: 768px) {
  .manual-cta-title .keep-line {
    white-space: normal;
  }
}

#products h2,
#services .section-heading h2,
#tools .section-heading h2 {
  font-size: clamp(3rem, 10vw, 7rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}
.about-inline-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.about-inline-link:hover {
  color: var(--accent-2);
}

/* =========================================================
   FINAL ALIGNMENT FIX
   Keeps section titles and main intro blocks aligned left.
   This must stay at the end of the file to override older
   center-alignment rules.
   ========================================================= */

.hero-copy,
.section-heading,
.products-intro,
.contact-options-header,
.product-hero-inner,
.booking-heading {
  text-align: left !important;
}

.hero h1,
.hero-lead,
.section-heading h2,
.section-heading p,
.products-intro h2,
.products-intro p,
.contact-options-header h1,
.contact-options-header p,
.product-hero h1,
.product-hero .hero-subtitle,
.problem-title,
.solution-title,
.methodology-title,
.platform-title,
.workflow-title,
.use-cases-section h2,
.outcomes-title,
.booking-heading h2,
.booking-heading p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.hero-actions,
.cta-actions,
.tools-bottom-actions {
  justify-content: flex-start !important;
}

.section-box {
  text-align: left !important;
}

.section-box .section-heading h2,
.section-box .contact-options-header h1,
.section-box .products-intro h2 {
  max-width: 980px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.section-box .section-heading p,
.section-box .contact-options-header p,
.section-box .products-intro p {
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

/* Product intro on the home page */
.products-intro {
  text-align: left !important;
}

.products-intro h2 {
  max-width: 980px !important;
}

/* Service cards were forcing h3 titles to center */
.service-card h3 {
  text-align: left !important;
}

/* Keep specific CTA blocks centered only when intentionally designed that way */
.footer-line,
.site-footer,
.site-footer p {
  text-align: center !important;
}

@media (max-width: 980px) {
  .hero-copy,
  .section-heading,
  .products-intro,
  .contact-options-header,
  .product-hero-inner,
  .booking-heading {
    text-align: left !important;
  }

  .hero h1,
  .hero-lead,
  .section-heading h2,
  .section-heading p,
  .products-intro h2,
  .products-intro p,
  .contact-options-header h1,
  .contact-options-header p,
  .product-hero h1,
  .product-hero .hero-subtitle,
  .problem-title,
  .solution-title,
  .methodology-title,
  .platform-title,
  .workflow-title,
  .use-cases-section h2,
  .outcomes-title,
  .booking-heading h2,
  .booking-heading p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
}
/* Tools page title size fix */
.tools-page .manual-break-title {
  max-width: 980px;
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

/* Product demo CTA buttons */
.product-demo-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.product-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a120d;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 155, 84, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-demo-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 680px) {
  .product-demo-actions {
    margin-top: 1.35rem;
  }

  .product-demo-button {
    width: 100%;
  }
}
.tools-horizontal-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.tools-content {
  flex: 1;
  max-width: 450px;
}

.tools-content h2 {
  font-size: 2.8rem !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
}

.tools-visual-cloud {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.tool-tag-label {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.tool-tag-group span:not(.tool-tag-label) {
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.3s ease;
}

.tool-tag-group span:hover {
  background: rgba(255, 155, 84, 0.1);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .tools-horizontal-layout {
    flex-direction: column;
    text-align: left;
    gap: 2.5rem;
  }
}/* Container for the unified footer */
.tools-integration-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.tools-footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tools-footer-content span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.tool-tags-inline {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tool-tags-inline strong {
  color: #fff;
  font-weight: 700;
}

/* Minimalist list style for cards */
.card-list-min {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.card-list-min li {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.card-list-min li::before {
  content: "•";
  margin-right: 0.5rem;
  opacity: 0.5;
}

@media (max-width: 980px) {
  .tools-integration-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}/* Responsive Grid for 4 Cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Minimalist Card List */
.card-list-min {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.card-list-min li {
  font-size: 0.85rem;
  color: var(--accent); /* Orange accent for bullets */
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.card-list-min li::before {
  content: "•";
  margin-right: 0.5rem;
  opacity: 0.6;
}

/* Simplified Footer */
.tools-footer-simple {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

/* Individual Card Adjustments */
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px; /* Ensures consistent card height */
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: auto;
  }
}.demo-cta-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.demo-cta-box {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 155, 84, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 155, 84, 0.22);
}

.demo-cta-box h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.demo-cta-box p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 155, 84, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 155, 84, 0.55);
}

.product-summary-text {
  max-width: 860px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .cta-actions a {
    width: 100%;
  }

  .demo-cta-box {
    text-align: left;
  }

  .demo-cta-box p,
  .product-summary-text {
    text-align: left;
  }
}/* Ajuste direto no Hero */
.product-hero {
  padding-bottom: 20px !important; /* Reduzi de 72px para 20px */
}

/* Ajuste na seção do Box */
.product-problem {
  padding-top: 0 !important; /* Remove o recuo superior da seção */
}

/* Ajuste no link eyebrow dentro do hero */
.product-hero .eyebrow {
  margin-bottom: 0; /* Remove a margem de baixo que empurra o box */
}/* Estilos do Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  max-width: 450px;
  width: 100%;
  text-align: center;
  padding: 40px !important;
  border: 1px solid rgba(255, 155, 84, 0.3) !important;
  animation: modalIn 0.3s ease-out;
}

.modal-content h2 {
  color: var(--accent);
  margin-bottom: 15px;
}

.modal-content p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

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

.products-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.products-grid-five .product-card {
  min-height: 280px;
  padding: 1.35rem;
}

.products-grid-five .product-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
}

.products-grid-five .product-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.products-grid-five .product-number {
  margin-bottom: 0.9rem;
}

@media (max-width: 1200px) {
  .products-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .products-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .products-grid-five {
    grid-template-columns: 1fr;
  }

  .products-grid-five .product-card {
    min-height: unset;
  }
}

/* =========================================================
   Home products: 5 cards in one row
   Added to support the new 5-product structure.
   ========================================================= */
.home-page .products-section .container {
  width: min(calc(100% - 2rem), 1440px);
}

.home-page .products-section .section-box {
  padding: clamp(1.6rem, 3vw, 3rem);
}

.home-page .products-grid.products-grid-five {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

.home-page .products-grid.products-grid-five .product-card {
  min-height: 300px !important;
  padding: 1.35rem !important;
}

.home-page .products-grid.products-grid-five .product-card::before {
  left: 24px;
  right: 24px;
  height: 5px;
}

.home-page .products-grid.products-grid-five .product-number {
  margin-bottom: 1rem !important;
  font-size: 0.78rem !important;
}

.home-page .products-grid.products-grid-five .product-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 0.9rem !important;
}

.home-page .products-grid.products-grid-five .product-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.home-page .products-grid.products-grid-five .product-card-cta {
  margin-top: auto !important;
  font-size: 0.9rem !important;
}

@media (max-width: 1180px) {
  .home-page .products-grid.products-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .home-page .products-grid.products-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .home-page .products-section .section-box {
    padding: 2rem 1.25rem;
  }

  .home-page .products-grid.products-grid-five {
    grid-template-columns: 1fr !important;
  }

  .home-page .products-grid.products-grid-five .product-card {
    min-height: unset !important;
  }
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.grid-5 .card {
  min-height: 260px;
  padding: 1.35rem;
}

.grid-5 .card h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.grid-5 .card p,
.grid-5 .card li {
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-5 .card {
    min-height: unset;
  }
}

/* =========================================================
   Home alignment: Products and Solutions use the same design
   ========================================================= */
.home-page .products-section .container,
.home-page .solutions-section .container {
  width: min(calc(100% - 2rem), 1440px) !important;
}

.home-page .products-section .section-box,
.home-page .solutions-section .section-box {
  padding: clamp(1.6rem, 3vw, 3rem) !important;
  border-radius: 28px !important;
}

.home-page .products-section .products-intro,
.home-page .solutions-section .products-intro {
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  margin: 0 0 2rem !important;
  text-align: left !important;
}

.home-page .products-section .products-intro::before,
.home-page .solutions-section .products-intro::before {
  display: none !important;
}

.home-page .products-section .products-intro h2,
.home-page .solutions-section .products-intro h2 {
  max-width: none !important;
  margin: 0 !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(3.6rem, 7vw, 6.4rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  text-align: left !important;
}

.home-page .solutions-section .tools-footer-simple {
  margin-top: 1.25rem !important;
  text-align: left !important;
}

.home-page .products-section .products-grid.products-grid-five,
.home-page .solutions-section .products-grid.products-grid-five {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch !important;
  margin-top: 1.4rem !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card,
.home-page .solutions-section .products-grid.products-grid-five .product-card {
  min-height: 300px !important;
  padding: 1.35rem !important;
  border-radius: var(--radius) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  background: var(--card) !important;
  border: 1px solid var(--card-border) !important;
  box-shadow: var(--shadow-soft) !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card::before,
.home-page .solutions-section .products-grid.products-grid-five .product-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 24px !important;
  right: 24px !important;
  height: 5px !important;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)) !important;
  border-radius: 999px !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card:hover,
.home-page .solutions-section .products-grid.products-grid-five .product-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(255, 155, 84, 0.36) !important;
  background: var(--card-strong) !important;
}

.home-page .products-section .products-grid.products-grid-five .product-number,
.home-page .solutions-section .products-grid.products-grid-five .product-number {
  margin-bottom: 1rem !important;
  color: #ffb36b !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card h3,
.home-page .solutions-section .products-grid.products-grid-five .product-card h3 {
  margin: 0 0 0.9rem !important;
  color: var(--accent) !important;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card p,
.home-page .solutions-section .products-grid.products-grid-five .product-card p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.home-page .products-section .products-grid.products-grid-five .product-card-cta,
.home-page .solutions-section .products-grid.products-grid-five .product-card-cta {
  margin-top: auto !important;
  color: var(--accent) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

@media (max-width: 1180px) {
  .home-page .products-section .products-grid.products-grid-five,
  .home-page .solutions-section .products-grid.products-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .home-page .products-section .products-grid.products-grid-five,
  .home-page .solutions-section .products-grid.products-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .home-page .products-section .products-grid.products-grid-five,
  .home-page .solutions-section .products-grid.products-grid-five {
    grid-template-columns: 1fr !important;
  }

  .home-page .products-section .products-grid.products-grid-five .product-card,
  .home-page .solutions-section .products-grid.products-grid-five .product-card {
    min-height: unset !important;
  }
}
.hero-points.hero-points-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 100%;
}

.hero-points.hero-points-four .point {
  min-width: 0;
}

@media (max-width: 1100px) {
  .hero-points.hero-points-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-points.hero-points-four {
    grid-template-columns: 1fr;
  }
}

/* Hero points com 4 cards na home */
.home-page .hero-points.hero-points-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 100%;
  width: 100%;
  align-items: stretch;
}

.home-page .hero-points.hero-points-four .point {
  min-width: 0;
  min-height: 175px;
  padding: 1.75rem;
}

.home-page .hero-points.hero-points-four .point strong {
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
}

.home-page .hero-points.hero-points-four .point span {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .home-page .hero-points.hero-points-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .hero-points.hero-points-four {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CORREÇÃO DEFINITIVA DE ALINHAMENTO DA HOME PAGE
   ========================================================= */

/* 1. Unifica a largura máxima dos containers da Home em 1440px */
.home-page .nav .container,
.home-page .hero .container {
  width: min(calc(100% - 2rem), 1440px) !important;
  max-width: 1440px !important;
}

/* 2. Alinha o logo/links do menu e o conteúdo do Hero com o texto interno dos blocos */
.home-page .nav .container,
.home-page .hero .container {
  padding-left: clamp(1.6rem, 3vw, 3rem) !important;
  padding-right: clamp(1.6rem, 3vw, 3rem) !important;
}

/* 3. Garante que o grid do Hero ocupe a largura completa de forma limpa */
.home-page .hero-grid {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.home-page .hero-copy {
  width: 100% !important;
  max-width: 100% !important;
}

/* 4. Alinha a seção de agendamento (Booking) na mesma largura visual */
.home-page .contact-options-section {
  max-width: 1440px !important;
  width: min(calc(100% - 2rem), 1440px) !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-page .contact-options-section .section-box {
  max-width: 1440px !important;
  width: 100% !important;
}

/* 5. Ajuste de responsividade para telas menores */
@media (max-width: 980px) {
  .home-page .nav .container,
  .home-page .hero .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* =========================================================
   REMOÇÃO VISUAL DOS BOXES (MANTENDO APENAS O CONTEÚDO)
   ========================================================= */

/* Remove o fundo, bordas, sombras e efeito de desfoque do box na Home */
.home-page .section-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  
  /* Ajusta o espaçamento interno para o conteúdo respirar diretamente no fundo do site */
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Esconde a linha fina de borda interna flutuante de todos os boxes */
.home-page .section-box::before {
  display: none !important;
}

/* Ajuste opcional: Dá um pouco mais de destaque para os títulos agora que estão sem o box */
.home-page .products-intro-clean h2 {
  margin-bottom: 1.5rem !important;
}

/* =========================================================
   EXPANSÃO E REFINAMENTO DO CALENDÁRIO (GRID 1440PX)
   ========================================================= */

/* 1. Força o card de agendamento a ocupar o alinhamento total de 1440px */
.home-page #book-call .booking-card {
  max-width: 100% !important;
  width: 100% !important;
  padding: clamp(2rem, 4vw, 3.5rem) !important; /* Espaçamento interno mais imersivo e premium */
}

/* 2. Equilibra a proporção entre o calendário (esquerda) e os horários/formulário (direita) */
.home-page .calendar-booking-layout {
  grid-template-columns: 1.3fr 0.7fr !important; 
  gap: clamp(2rem, 5vw, 4rem) !important; /* Distanciamento elegante entre os blocos */
}

/* 3. Redimensiona os botões de dias do calendário para preencherem o espaço expandido */
.home-page .calendar-day {
  min-height: clamp(65px, 5vw, 78px) !important; /* Dias maiores e mais fáceis de clicar */
  font-size: 1.1rem !important;
  border-radius: 18px !important;
  transition: all 0.2s ease-in-out !important;
}

/* 4. Ajuste nas linhas de dias da semana para acompanhar o novo tamanho */
.home-page .calendar-weekdays span {
  font-size: 0.9rem !important;
  padding-bottom: 0.5rem !important;
}

/* 5. Alinhamento e espaçamento nos cards de slots de horários */
.home-page .calendar-slot-card {
  padding: 1.15rem !important;
  border-radius: 20px !important;
}

/* 6. Mantém a responsividade impecável em tablets e celulares */
@media (max-width: 900px) {
  .home-page .calendar-booking-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  
  .home-page .calendar-day {
    min-height: 54px !important;
    font-size: 1rem !important;
  }
}

/* =========================================================
   AJUSTE DE ESPAÇAMENTO ENTRE PRODUTOS E SOLUÇÕES
   ========================================================= */

/* Reduz o espaço em branco abaixo da grade de Produtos */
.home-page #products {
  padding-bottom: 1rem !important;
}

/* Reduz o espaço em branco acima do título de Soluções */
.home-page #solutions {
  padding-top: 1.5rem !important;
}

/* Elimina qualquer margem do topo do título para garantir aproximação real */
.home-page #solutions .products-intro h2 {
  margin-top: 0 !important;
}/* =========================================================
   APROXIMAÇÃO MÁXIMA ENTRE PRODUTOS E SOLUÇÕES
   ========================================================= */

/* Zera totalmente o espaço abaixo dos cards de produtos */
.home-page #products {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Zera o espaço acima e puxa a seção inteira para cima */
.home-page #solutions {
  padding-top: 0 !important;
  margin-top: -2.5rem !important; /* A mágica acontece aqui */
}
/* =========================================================
   PADRONIZAÇÃO INTEGRAL DE ESPAÇOS (HOME PAGE)
   ========================================================= */

/* 1. Reseta margens e corrige o empurrão negativo do passo anterior */
.home-page .hero,
.home-page #products,
.home-page #solutions,
.home-page #book-call {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 2. Define a distância do topo do HERO para o menu fixo não cobrir o título */
.home-page .hero {
  padding-top: 5rem !important; 
  padding-bottom: 1rem !important;
}

/* 3. Equaliza a transição entre as seções do meio (Produtos e Soluções) */
.home-page #products {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.home-page #solutions {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* 4. Equaliza a entrada da seção de agendamento e dá um respiro antes do rodapé */
.home-page #book-call {
  padding-top: 1rem !important;
  padding-bottom: 4rem !important; /* Deixa o espaço final elegante antes do footer */
}