/* Desenvolvido por Lucas Pereira (https://www.linkedin.com/in/lucasadmpereira/) e Eduardo Serpa (https://www.linkedin.com/in/eduardo-serpa/) */
:root {
  --color-navy: #0a1628;
  --color-navy-soft: #111f36;
  --color-text: #1a1a1a;
  --color-text-muted: #5c6470;
  --color-border: #e8eaef;
  --color-surface: #f6f7f9;
  --color-white: #ffffff;
  --color-accent: #7fb238;
  --color-accent-soft: #e8f2d9;
  --color-accent-glow: rgba(127, 178, 56, 0.35);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 99px;
  --shadow-soft: 0 16px 48px rgba(10, 22, 40, 0.08);
  --font-sans: "Roboto", system-ui, sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --color-primary: var(--color-navy);
  --color-primary-rgb: 10, 22, 40;
  --container: min(1200px, 92vw);
  --header-h: 112px;
}
:root[data-theme="dark"] {
  --color-navy: #f6f7f9;
  --color-navy-soft: #e8eaef;
  --color-text: #e8eaef;
  --color-text-muted: #9ba3b0;
  --color-border: #2a3441;
  --color-surface: #111f36;
  --color-white: #0a1628;
  --color-accent: #8bc34a;
  --color-accent-soft: rgba(139, 195, 74, 0.15);
  --color-accent-glow: rgba(139, 195, 74, 0.25);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-y: scroll;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-navy);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}
html[data-theme='dark'] h1,
html[data-theme='dark'] h2,
html[data-theme='dark'] h3,
html[data-theme='dark'] h4,
html[data-theme='dark'] h5,
html[data-theme='dark'] h6 {
  color: var(--color-text);
}
h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 48px); letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 3vw, 40px); letter-spacing: -0.01em; }
h4 { font-size: clamp(18px, 1.8vw, 24px); }
h5 { font-size: clamp(16px, 1.5vw, 20px); }
h6 { font-size: 16px; }
.text-lg {
  font-size: 18px;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.site-header {
  --color-text: #1a1a1a;
  --color-text-muted: #5c6470;
  --color-border: #e8eaef;
  --color-surface: #f6f7f9;
  --color-navy: #0a1628;
  --color-white: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
html[data-theme="dark"] .site-header {
  background: #4b5563;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  --color-text: #ffffff;
  --color-text-muted: #d1d5db;
  --color-border: rgba(255, 255, 255, 0.1);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand__mark {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.site-header .brand__mark {
  width: 90px;
  height: 90px;
  padding: 10px 0;
}
.site-footer .brand__mark {
  width: 60px;
  height: 60px;
}
.brand__text {
  display: none;
}
.brand__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand__tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding-block: 0.25rem;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--color-text);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: #007bff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-spring, ease), box-shadow 0.3s ease, background 0.25s ease;
}
.btn--dark {
  background: #0a1628;
  color: #ffffff;
}
.btn--dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.25);
}
.btn--light {
  background: #ffffff;
  color: #0a1628;
  border: 1px solid #e8eaef;
}
.btn--light:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.btn__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
  overflow: hidden;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-text .btn__icon {
  width: auto;
  height: auto;
  background: none !important;
  padding: 0;
}
.btn:hover .btn__icon svg,
.btn-text:hover .btn__icon svg {
  animation: planetary-roll 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke-width: 3;
}
@keyframes planetary-roll {
  0% { transform: translateX(0); opacity: 1; }
  40% { transform: translateX(160%); opacity: 0; }
  60% { transform: translateX(-160%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.btn--dark .btn__icon {
  background: rgba(255, 255, 255, 0.15);
}
.btn--light .btn__icon {
  background: #0a1628;
  color: #ffffff;
}
.btn--ghost {
  color: var(--color-white);
  padding-inline: 0.5rem;
}
.btn--ghost:hover {
  opacity: 0.85;
}
.btn--outline {
  background: transparent;
  color: #0a1628;
  border: 1.5px solid #0a1628;
}
.btn--outline:hover {
  background: #0a1628;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.18);
}
.btn--outline .btn__icon {
  background: rgba(10, 22, 40, 0.08);
}
.btn--outline:hover .btn__icon {
  background: rgba(255, 255, 255, 0.15);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #ffffff;
    color: #1a1a1a;
    border-bottom: 1px solid #e8eaef;
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    flex: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-right: 0;
  }
  .nav .btn {
    justify-content: center;
  }
  .nav__links a {
    color: rgba(26, 26, 26, 0.6) !important;
  }
  .nav__links a.is-active,
  .nav__links a:hover {
    color: #1a1a1a !important;
  }
  .theme-toggle {
    margin: 1rem 0 0;
    width: 36px;
    height: 36px;
    padding: 0;
    align-self: flex-end;
    border-color: rgba(26, 26, 26, 0.3);
    color: #1a1a1a;
    margin-left: auto;
  }
  html[data-theme="dark"] .nav {
    background: #0a1628;
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
  html[data-theme="dark"] .nav .nav__links a {
    color: rgba(255, 255, 255, 0.6) !important;
  }
  html[data-theme="dark"] .nav .nav__links a.is-active,
  html[data-theme="dark"] .nav .nav__links a:hover {
    color: #ffffff !important;
  }
  html[data-theme="dark"] .nav .theme-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
  }
}
.hero {
  padding: 2rem 0 3rem;
}
.hero__card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--color-white);
}
.hero__lead { color: var(--color-white); opacity: 0.85; font-size: clamp(15px, 2vw, 18px); max-width: 32ch; margin-bottom: 2rem; }
html[data-theme='dark'] .hero__title {
  color: #1a1a1a !important;
}
html[data-theme='dark'] .hero__lead {
  color: #1a1a1a !important;
  opacity: 1;
}
html[data-theme='dark'] .btn--ghost {
  color: #1a1a1a !important;
}
html[data-theme='dark'] .btn--dark {
  background: #ffffff;
  color: #0a1628;
}
html[data-theme='dark'] .btn--dark:hover {
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}
html[data-theme='dark'] .btn--dark .btn__icon {
  background: rgba(10, 22, 40, 0.08);
}
html[data-theme='dark'] .btn--light {
  background: #111f36;
  color: #e8eaef;
  border-color: #2a3441;
}
html[data-theme='dark'] .btn--light:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
html[data-theme='dark'] .btn--light .btn__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #e8eaef;
}
html[data-theme='dark'] .btn--outline {
  color: #e8eaef;
  border-color: #e8eaef;
}
html[data-theme='dark'] .btn--outline:hover {
  background: #e8eaef;
  color: #0a1628;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}
html[data-theme='dark'] .btn--outline .btn__icon {
  background: rgba(232, 234, 239, 0.1);
}
html[data-theme='dark'] .btn--outline:hover .btn__icon {
  background: rgba(10, 22, 40, 0.08);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.hero__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media (max-width: 880px) {
  .hero__card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .hero__media {
    order: -1;
  }
}
@media (max-width: 480px) {
  .hero__card {
    padding: 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }
}
.clients {
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}
.clients__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.clients__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.clients__marquee.is-visible {
  padding: 16px;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.client-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.client-logo:hover {
  transform: scale(1.05);
}
html[data-theme="dark"] .client-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: brightness(0) invert(0.8);
  opacity: 0.6;
}
html[data-theme="dark"] .client-logo:hover {
  filter: brightness(0) invert(1);
  opacity: 1;
}
html[data-theme="dark"] .timeline__media img[src*="logo"],
html[data-theme="dark"] .timeline__media img[src*="contact-side"],
html[data-theme="dark"] .brand__mark {
  filter: brightness(0) invert(1);
}
@keyframes scroll-marquee {
  to {
    transform: translateX(calc(-50% - 2rem));
  }
}
.compare {
  padding: 2rem 0 3.5rem;
}
.compare__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.compare__intro p {
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card-compare {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.card-compare--muted {
  background: linear-gradient(160deg, #fafbfc 0%, #f0f2f5 100%);
}
html[data-theme="dark"] .card-compare--muted {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-white) 100%);
}
.card-compare--accent {
  background: linear-gradient(145deg, #f5fbe9 0%, #ffffff 55%);
  border-color: rgba(127, 178, 56, 0.45);
  box-shadow: 0 0 0 1px rgba(127, 178, 56, 0.08), 0 20px 40px var(--color-accent-glow);
}
html[data-theme="dark"] .card-compare--accent {
  background: linear-gradient(145deg, var(--color-accent-soft) 0%, var(--color-surface) 55%);
}
.card-compare h3 {
  letter-spacing: -0.01em;
}
.compare-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.compare-list li:last-child {
  margin-bottom: 0;
}
.compare-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 0.2rem;
}
.compare-list p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}
.card-compare--accent .compare-list p {
  color: var(--color-text);
}
.icon-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-check::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-check--grey {
  background: #d5d9e0;
}
.icon-check--green {
  background: var(--color-accent);
}
@media (max-width: 800px) {
  .compare__grid {
    grid-template-columns: 1fr;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.section-surface {
  background: var(--color-surface);
  padding: 3.5rem 0;
}
.section-white {
  padding: 3.5rem 0;
}
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-intro p {
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}
.carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  position: relative;
  display: block;
}
.carousel__track::before {
  content: "";
  display: block;
  width: 85%;
  aspect-ratio: 16 / 10;
}
.carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  z-index: 1;
}
@media (min-width: 768px) {
  .carousel__track::before,
  .carousel__slide {
    width: 55%;
  }
}
.carousel-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.carousel-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.carousel-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.92), transparent);
  color: #ffffff;
}
.carousel-card__body h3 {
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.carousel-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}
.carousel__btn:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.05);
}
.carousel__btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
  display: block;
}
.carousel__btn:hover svg {
  animation: planetary-roll-right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.carousel__btn--prev:hover svg {
  animation: planetary-roll-left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes planetary-roll-right {
  0% { transform: translateX(0); opacity: 1; }
  40% { transform: translateX(200%); opacity: 0; }
  60% { transform: translateX(-200%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes planetary-roll-left {
  0% { transform: translateX(0); opacity: 1; }
  40% { transform: translateX(-200%); opacity: 0; }
  60% { transform: translateX(200%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.carousel__btn--prev {
  left: calc(7.5% - 24px);
}
.carousel__btn--next {
  right: calc(7.5% - 24px);
}
@media (max-width: 960px) {
  .carousel__btn--prev {
    left: 4px;
  }
  .carousel__btn--next {
    right: 4px;
  }
}
@media (min-width: 768px) {
  .carousel__btn--prev {
    left: calc(22.5% - 24px);
  }
  .carousel__btn--next {
    right: calc(22.5% - 24px);
  }
}
.stats-bar {
  background: var(--color-surface);
  padding: 2.25rem 0;
  border-block: 1px solid var(--color-border);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-bar__num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stats-bar__label {
  font-size: 14px;
  color: var(--color-text-muted);
}
@media (max-width: 600px) {
  .stats-bar__grid {
    grid-template-columns: 1fr;
  }
}
.timeline-section {
  padding: 3rem 0 4rem;
}
.timeline-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--color-accent-soft), var(--color-accent));
  transform: translateX(-50%);
  opacity: 0.5;
}
.timeline__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.timeline__row:last-child {
  margin-bottom: 0;
}
.timeline__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 8px 24px var(--color-accent-glow);
}
.timeline__content {
  padding: 0.5rem;
}
.timeline__content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.timeline__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}
.timeline__media img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
  -webkit-mask-position: center;
  mask-position: center;
}
.timeline__row--flip .timeline__content:first-child {
  order: 1;
  text-align: right;
}
.timeline__row--flip .timeline__marker {
  order: 2;
}
.timeline__row--flip .timeline__media:last-child,
.timeline__row--flip .timeline__content:last-child {
  order: 3;
}
@media (max-width: 800px) {
  .timeline::before {
    left: 24px;
  }
  .timeline__row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 64px;
  }
  .timeline__marker {
    margin-left: -64px;
    order: 1;
  }
  .timeline__content {
    order: 3;
  }
  .timeline__media {
    order: 2;
  }
  .timeline__row--flip .timeline__content:first-child {
    text-align: left;
    order: 3;
  }
}
.team-slab {
  background: var(--color-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 3rem 0 4rem;
}
.team-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}
.team-card--reverse {
  direction: rtl;
}
.team-card--reverse>* {
  direction: ltr;
}
.team-card__text h4 {
  margin: 0 0 0.35rem;
}
.team-card__text .role {
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-card__text p {
  color: var(--color-text-muted);
  margin: 0;
}
.team-card__photo img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 420px;
}
@media (max-width: 768px) {
  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .team-card__photo img {
    max-height: 360px;
    aspect-ratio: 3/4;
  }
}
.contact-media {
  display: flex;
  overflow: hidden;
}
.map-full {
  width: 100%;
  height: 480px;
  background: var(--color-surface);
}
.map-wrap {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: block;
  filter: grayscale(0.2);
}
.map-full .map-wrap {
  height: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.form-field input,
.form-field textarea {
  border: 1px solid transparent;
  background: var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  font: inherit;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-photo img {
  width: 50%;
  max-width: 400px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
html[data-theme="dark"] .contact-photo img {
  filter: brightness(0) invert(1);
}
.form-status {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 600;
}
.form-status--ok {
  color: var(--color-accent);
}
.form-status--err {
  color: #c0392b;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-photo img {
    min-height: 300px;
  }
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-col:first-child {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-col:first-child .brand {
  justify-content: center;
}
.footer-col:first-child .brand__mark {
  width: 80px;
  height: 80px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: var(--color-text);
}
.footer-links li {
  margin-bottom: 0.55rem;
}
.footer-links li a,
.footer-links li .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
.icon-rounded svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.icon-ln {
  background-color: #0A66C2;
}
.icon-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.icon-icon-fb {
  background-color: #1877F2;
}
.icon-email {
  background-color: #EA4335;
}
.icon-phone {
  background-color: #25D366;
}
.icon-loc {
  background-color: #D93025;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}
.footer-credit {
  font-size: 12px;
  opacity: 0.7;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
  font-weight: 500;
}
.footer-credit a:hover {
  opacity: 1;
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow-soft);
}
.blog-card__body {
  padding: 1.5rem;
}
.blog-card__meta {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card h3 {
  letter-spacing: -0.01em;
}
.blog-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card h3 {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.solution-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.solution-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.solution-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.solution-card h3 {
  letter-spacing: -0.01em;
}
.solution-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}
.page-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero p {
  max-width: 560px;
  margin: 0.75rem auto 0;
  color: var(--color-text-muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.post-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-navy);
  font-weight: 700;
}
.widget-contact {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
  color: var(--color-white);
  border: none;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
}
.widget-contact h3,
.widget-contact h4 {
  color: var(--color-white) !important;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.widget-contact p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.widget-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.widget-links li {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}
.widget-links li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget-links a {
  color: var(--color-text-muted);
  font-size: 15px;
  transition: color 0.2s;
  display: block;
}
.widget-links a:hover {
  color: var(--color-accent);
}
.blog-hub-controls {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.blog-search {
  width: 100%;
  max-width: 500px;
}
.search-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.filter-btn.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}
.theme-toggle {
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-left: 1rem;
}
@media (hover: hover) {
  html:not([data-theme="dark"]) .theme-toggle:hover {
    background: #0a1628;
    color: #ffffff;
    border-color: #0a1628;
  }
  html[data-theme="dark"] .theme-toggle:hover {
    background: #ffffff;
    color: #0a1628;
    border-color: #ffffff;
  }
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
html[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}
html[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}
html:not([data-theme="dark"]) .theme-toggle .icon-sun {
  display: none;
}
html:not([data-theme="dark"]) .theme-toggle .icon-moon {
  display: block;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}
.history-section {
  padding: 5rem 0;
  background: var(--color-white);
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.history-content h2 {
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}
.history-text {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.8;
}
.history-text p {
  margin-bottom: 1.25rem;
}
.history-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.history-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .history-visual {
    order: -1;
    aspect-ratio: 16/9;
  }
}
.mvv-section {
  padding: 5rem 0;
  background: var(--color-surface);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.mvv-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
  border-color: var(--color-accent);
}
.mvv-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvv-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}
.mvv-card h3 {
  letter-spacing: -0.01em;
}
.mvv-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.mvv-card ul {
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--color-text-muted);
  font-size: 15px;
}
.mvv-card ul li {
  margin-bottom: 0.5rem;
}
@media (max-width: 960px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .mvv-card {
    padding: 2rem;
  }
}
html[data-theme="dark"] .history-section {
  background: var(--color-white);
}
html[data-theme="dark"] .mvv-section {
  background: var(--color-surface);
}
html[data-theme="dark"] .mvv-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.1);
}
html[data-theme="dark"] .mvv-card:hover {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
}
.mvv-cta {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}
.service-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.service-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.service-modal__container {
  position: relative;
  background: var(--color-surface);
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.service-modal.is-active .service-modal__container {
  transform: scale(1) translateY(0);
}
.service-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.service-modal__close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(90deg);
}
.service-modal__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 100%;
  overflow-y: auto;
}
.service-modal__content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-modal__content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.service-modal__content h2 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.service-modal__content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.service-modal__image {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.service-modal__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .service-modal__body {
    grid-template-columns: 1fr;
  }
  .service-modal__image {
    height: 300px;
    min-height: 300px;
    order: -1;
  }
  .service-modal__content {
    padding: 2.5rem 2rem;
  }
  .service-modal__content h2 {
    font-size: 32px;
  }
}
.solution-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.breadcrumbs {
  padding: 2rem 0 0.5rem;
  font-size: 14px;
  color: var(--color-text-muted);
  background: transparent;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--color-primary);
}
.breadcrumbs li:last-child {
  color: var(--color-text);
  font-weight: 500;
}
.widget-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-post-item {
  margin-bottom: 1.25rem;
}
.related-post-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.2s ease;
}
.related-post-item a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}
.related-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.related-post-item span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}
.post-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  background: transparent;
  color: #0a1628;
  border: 1.5px solid #0a1628;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring, ease), box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease;
}
.post-back-btn:hover {
  background: #0a1628;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.18);
}
.post-back-btn:hover svg {
  stroke: #ffffff;
  animation: back-roll 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
html[data-theme='dark'] .post-back-btn {
  color: #e8eaef;
  border-color: #e8eaef;
}
html[data-theme='dark'] .post-back-btn:hover {
  background: #e8eaef;
  color: #0a1628;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}
html[data-theme='dark'] .post-back-btn:hover svg {
  stroke: #0a1628;
}
@keyframes back-roll {
  0% { transform: translateX(0); opacity: 1; }
  45% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.icon-x { width: 22px; height: 22px; border-radius: 50%; background: #d5d9e0; display: flex; align-items: center; justify-content: center; } .icon-x::after { content: ''; width: 12px; height: 12px; background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22white%22 stroke-width=%223.5%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cline x1=%2218%22 y1=%226%22 x2=%226%22 y2=%2218%22%3E%3C/line%3E%3Cline x1=%226%22 y1=%226%22 x2=%2218%22 y2=%2218%22%3E%3C/line%3E%3C/svg%3E'); background-size: contain; background-repeat: no-repeat; }
.solution-card__body .btn-text {
  margin-top: auto;
  padding-top: 1.5rem;
}
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 20px;
}
.sidebar-widget p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
html[data-theme='dark'] .widget-contact {
  background: var(--color-surface);
  border-color: var(--color-border);
}
html[data-theme='dark'] .widget-contact h4 {
  color: #e8eaef !important;
}
html[data-theme='dark'] .widget-contact p {
  color: var(--color-text) !important;
}
@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
}
