:root {
  --bg: #fffaf5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0f1b43;
  --muted: #5c6788;
  --line: rgba(15, 27, 67, 0.08);
  --primary: #ff6a13;
  --primary-dark: #e75a08;
  --accent: #00b4ff;
  --shadow: 0 20px 60px rgba(19, 30, 77, 0.12);
  --radius: 26px;
}

body.dark {
  --bg: #081124;
  --surface: rgba(11, 22, 46, 0.8);
  --surface-strong: #101c39;
  --text: #eff4ff;
  --muted: #aab8db;
  --line: rgba(255, 255, 255, 0.09);
  --primary: #ff7c2d;
  --primary-dark: #ff6500;
  --accent: #58d4ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 141, 74, 0.12), transparent 34%),
    radial-gradient(circle at right 12% top 20%, rgba(0, 180, 255, 0.12), transparent 22%),
    var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
  pointer-events: none;
  opacity: 0.28;
  z-index: -2;
}

body.dark::before {
  opacity: 0.12;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 80;
}

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

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

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

.page-glow {
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: 140px;
  left: -100px;
  background: rgba(255, 106, 19, 0.25);
}

.page-glow-right {
  top: 220px;
  right: -120px;
  background: rgba(0, 180, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 245, 0.72);
  border-bottom: 1px solid var(--line);
}

body.dark .site-header {
  background: rgba(8, 17, 36, 0.72);
}

.navbar {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  position: relative;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ff7f2f, #ff5400);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(255, 106, 19, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-panel {
  display: none;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
}

.nav-panel a {
  position: relative;
  font-weight: 600;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.mobile-menu-shell {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 28px rgba(255, 106, 19, 0.24);
}

.button-secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.theme-selector,
.nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
}

.theme-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.theme-option {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.theme-option.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu-shell.open {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-menu-shell.open .nav-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.mobile-menu-shell.open .nav-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.mobile-menu-shell.open .nav-panel a::after {
  bottom: -4px;
}

.mobile-menu-shell.open .theme-selector,
.mobile-menu-shell.open .button {
  width: 100%;
}

.mobile-menu-shell.open .theme-selector {
  justify-content: space-between;
}

.hero {
  padding: 62px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--primary);
}

.hero-text,
.section-heading p,
.info-card p,
.project-copy p,
.split-section p,
.contact-box p,
.mini-stat span {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 38px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.mini-stat {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 106, 19, 0.08), transparent),
    var(--surface);
  box-shadow: var(--shadow);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-grid,
.cards-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

.trust-card,
.info-card,
.project-card,
.stat-card,
.highlight-box,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-card,
.info-card,
.project-card,
.stat-card,
.highlight-box,
.contact-box,
.contact-form,
.quick-contact-form,
.showcase-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.trust-card,
.info-card,
.project-card,
.highlight-box {
  padding: 24px;
}

.trust-card:hover,
.info-card:hover,
.project-card:hover,
.stat-card:hover,
.highlight-box:hover,
.contact-box:hover,
.contact-form:hover,
.quick-contact-form:hover,
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 19, 0.18);
  box-shadow: 0 24px 64px rgba(19, 30, 77, 0.16);
}

.trust-card strong,
.stat-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.trust-card span,
.stat-card span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  padding: 52px 0 38px;
}

.hero-ring {
  position: absolute;
  inset: 6% 12% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 172, 124, 0.34), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-visual img {
  width: min(760px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 30px 70px rgba(15, 27, 67, 0.2));
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  max-width: 220px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floatCard 6s ease-in-out infinite;
}

body.dark .floating-card {
  background: rgba(16, 28, 57, 0.84);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.floating-card-top {
  top: 18px;
  left: -12px;
}

.floating-card-bottom {
  right: -8px;
  bottom: 0;
  animation-delay: -2.2s;
}

.stats {
  padding: 18px 0 28px;
}

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

.stat-card {
  padding: 28px 24px;
  text-align: center;
}

.stat-card strong {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 106, 19, 0.04));
}

body.dark .section-alt {
  background: linear-gradient(180deg, transparent, rgba(88, 212, 255, 0.04));
}

.app-showcase {
  padding-top: 28px;
}

.showcase-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.showcase-viewport {
  overflow: hidden;
  position: relative;
  min-height: 720px;
}

.showcase-track {
  position: relative;
  min-height: 720px;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.showcase-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.showcase-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 27, 67, 0.18);
  cursor: pointer;
}

body.dark .showcase-dot {
  background: rgba(255, 255, 255, 0.24);
}

.showcase-dot.is-active {
  background: var(--primary);
}

.showcase-card {
  margin: 0;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-card-tall {
  min-height: 720px;
}

.info-card,
.project-card,
.highlight-box {
  position: relative;
}

.info-card::before,
.project-card::before,
.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent 62%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-section h2,
.contact-box h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

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

.info-card h3,
.project-copy h3,
.highlight-box h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.projects-grid {
  grid-template-columns: 1.35fr 1fr;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  align-items: end;
}

.featured-project {
  background:
    linear-gradient(135deg, rgba(255, 106, 19, 0.12), rgba(0, 180, 255, 0.12)),
    var(--surface);
}

.project-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 19, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy {
  max-width: 540px;
}

.project-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
  color: var(--primary);
}

.split-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.highlight-box {
  background:
    linear-gradient(180deg, rgba(0, 180, 255, 0.1), transparent),
    var(--surface);
}

.contact-section {
  padding-bottom: 82px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-box {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-form {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.form-intro {
  margin-bottom: 22px;
}

.form-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-intro p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label span {
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.12);
}

.full-width {
  display: flex;
  margin-top: 18px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-contact-form {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

.quick-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-contact-form label span {
  font-weight: 700;
}

.quick-contact-form input,
.quick-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.12);
}

.quick-contact-full {
  grid-column: 1 / -1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.site-footer {
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 102px;
  z-index: 58;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px);
}

.ai-chat-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a1d, #ff5d00);
  color: #fff;
  min-height: 62px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 24px 40px rgba(255, 93, 0, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.chat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff3dc;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.16);
}

.ai-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 59;
  width: min(380px, calc(100vw - 28px));
  padding: 18px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ai-chat-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ai-chat-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.ai-chat-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.ai-chat-body {
  display: grid;
  gap: 16px;
}

.ai-bubble {
  padding: 16px 18px;
  border-radius: 20px 20px 20px 8px;
  background: rgba(255, 106, 19, 0.1);
  line-height: 1.6;
}

.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-chip {
  border: 1px solid rgba(255, 106, 19, 0.16);
  background: rgba(255, 106, 19, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ai-contact-list {
  display: grid;
  gap: 12px;
}

.ai-contact-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.ai-contact-card span {
  color: var(--muted);
  line-height: 1.5;
}

.ai-contact-whatsapp {
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.14), rgba(255, 145, 0, 0.08));
}

@media (max-width: 1100px) {
  .hero-grid,
  .projects-grid,
  .split-section,
  .contact-layout,
  .hero-mini-stats,
  .quick-contact-grid,
  .services-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero {
    padding-top: 34px;
  }

  .hero-grid,
  .projects-grid,
  .split-section,
  .contact-layout,
  .hero-mini-stats,
  .quick-contact-grid,
  .services-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin: 0 auto 16px;
    animation: none;
  }

  .hero-visual {
    padding-top: 18px;
  }

  .showcase-slider {
    grid-template-columns: 1fr;
  }

  .showcase-viewport,
  .showcase-track,
  .showcase-card-tall {
    min-height: 520px;
  }

  .showcase-arrow {
    display: none;
  }

  .contact-box,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .contact-actions a,
  .form-footer .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .form-grid,
  .form-footer {
    width: 100%;
  }

  .form-grid,
  .form-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .ai-chat-trigger {
    right: 14px;
    bottom: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 86px;
  }

  .ai-chat-panel {
    right: 14px;
    bottom: 86px;
  }
}
