:root {
  --bg-dark: #040b1f;
  --bg-darker: #020614;
  --blue: #05a2ff;
  --blue-2: #2f67ff;
  --orange: #ff9a2f;
  --text: #0d1a36;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Century Gothic", sans-serif;
  color: var(--text);
  background: #f5f8ff;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f2452;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(6, 29, 82, 0.2);
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 100;
  background:
    linear-gradient(90deg, rgba(0, 10, 35, 0.98), rgba(1, 18, 58, 0.96)),
    radial-gradient(circle at 20% 0%, rgba(20, 92, 255, 0.45), transparent 35%);
  border-bottom: 1px solid rgba(80, 147, 255, 0.3);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-shield {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transform: scale(1.75);
  transform-origin: left center;
  filter: drop-shadow(0 8px 20px rgba(0, 150, 255, 0.45));
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-style: italic;
  background: linear-gradient(90deg, #16b6ff 8%, #1d70ff 56%, #ff9f32 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name span,
.brand-name em {
  font-style: inherit;
}

.brand-tag {
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #9db9ea;
}

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

.nav-links a {
  text-decoration: none;
  color: #f4f7ff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.cta {
  display: inline-block;
  text-decoration: none;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(100deg, #0b9cff 0%, #2f67ff 55%, #ff9b2f 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(6, 109, 255, 0.35);
  transform: translateZ(12px);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 500px;
  background:
    radial-gradient(circle at 15% 38%, rgba(16, 129, 255, 0.33), transparent 42%),
    radial-gradient(circle at 84% 38%, rgba(255, 158, 47, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(3, 10, 30, 0.82), rgba(2, 7, 22, 0.92));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 36, 0.9) 0%, rgba(3, 11, 36, 0.76) 44%, rgba(3, 11, 36, 0.42) 100%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/main top section background.png") center center / cover no-repeat;
  opacity: 0.4;
  filter: saturate(1.2) contrast(1.12);
  transform: scale(1.02);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72, 138, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 138, 255, 0.08) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: linear-gradient(180deg, black 30%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 20px;
  padding: 44px 0 28px;
}

.hero-copy {
  color: #ecf2ff;
  max-width: 620px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 24px rgba(2, 7, 18, 0.95);
}

.hero-copy h1 span {
  background: linear-gradient(95deg, #27beff, #2f77ff, #ff9f2d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #d4e4ff;
  max-width: 580px;
}

.hero-copy .power {
  margin-bottom: 26px;
  font-size: 17px;
}

.hero-signals {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-signals li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9e8ff;
  font-size: 15px;
  font-weight: 600;
}

.hero-signals li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16b7ff, #ff9c32);
  box-shadow: 0 0 0 5px rgba(33, 182, 255, 0.12);
}

.hero-copy strong {
  color: #21b6ff;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-logo {
  width: min(410px, 80%);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  transform: rotateY(-12deg) rotateX(4deg);
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.75))
    drop-shadow(-18px 10px 30px rgba(12, 176, 255, 0.4))
    drop-shadow(18px 10px 26px rgba(255, 159, 44, 0.35));
  animation: floatLogo 5.4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%,
  100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(1deg) translateY(-10px); }
}

.section {
  padding: 28px 0;
}

.section h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(29px, 3.2vw, 42px);
  color: #0f2452;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.section-light {
  background: linear-gradient(180deg, #fff, #f7faff);
}

.section-blue {
  background: linear-gradient(180deg, #e9f2ff, #f0f6ff);
}

.section-kicker {
  margin: 0 0 10px;
  color: #2b68d6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker.center {
  text-align: center;
}

.narrow {
  width: min(840px, 92%);
  text-align: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 20px;
}

.about-copy p {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.65;
  color: #34476e;
  text-align: center;
}

.seo-section {
  border-top: 1px solid rgba(73, 129, 226, 0.22);
  border-bottom: 1px solid rgba(73, 129, 226, 0.22);
}

.seo-copy-block {
  text-align: center;
}

.seo-copy-block p {
  margin: 0 auto 14px;
  max-width: 820px;
  color: #35507f;
  font-size: 18px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 244, 255, 0.94));
  border: 1px solid rgba(87, 138, 233, 0.24);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(17, 48, 107, 0.12);
}

.process-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: #16366f;
  font-size: 21px;
}

.process-card p,
.faq-item p {
  margin: 0;
  color: #49638f;
  font-size: 15px;
  line-height: 1.65;
}

.faq-section {
  border-top: 1px solid rgba(73, 129, 226, 0.18);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.about-art {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(68, 130, 246, 0.28);
  box-shadow: 0 14px 28px rgba(17, 48, 107, 0.2);
}

.about-art img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-3d:hover:not(.work-slide) {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 20px 30px rgba(15, 44, 95, 0.25);
}

.service-card {
  background:
    linear-gradient(145deg, #ffffff, #edf4ff);
  border: 1px solid rgba(58, 121, 238, 0.28);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(44, 88, 165, 0.16), inset 0 1px 0 #fff;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
}

.service-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(16, 74, 171, 0.28));
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #133471;
  grid-column: 2;
}

.service-card p {
  margin: 0;
  color: #476085;
  font-size: 14px;
  grid-column: 2;
}

.text-link {
  grid-column: 2;
  margin-top: 10px;
  color: #1e65dc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.service-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-link-chip {
  text-decoration: none;
  color: #17376f;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(71, 126, 222, 0.25);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 129, 255, 0.28), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(255, 158, 47, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 30, 0.88), rgba(2, 7, 22, 0.96));
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/main top section background.png") center center / cover no-repeat;
  opacity: 0.24;
  z-index: 0;
}

.subpage-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 56px 0 48px;
}

.breadcrumb {
  margin: 0 0 16px;
  color: #b9d4ff;
  font-size: 14px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.subpage-hero h1 {
  margin: 0 0 14px;
  max-width: 820px;
  color: #f2f7ff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.subpage-hero p {
  margin: 0;
  max-width: 780px;
  color: #d6e5ff;
  font-size: 18px;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.detail-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.96));
  border: 1px solid rgba(87, 138, 233, 0.24);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(17, 48, 107, 0.12);
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 12px;
  color: #14336e;
}

.detail-card p {
  margin: 0 0 14px;
  color: #3d5684;
  font-size: 16px;
  line-height: 1.7;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  color: #36507f;
  font-size: 15px;
  line-height: 1.8;
}

.detail-list li + li {
  margin-top: 6px;
}

.cta-panel {
  background:
    radial-gradient(circle at 0 0, rgba(23, 184, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #041748 0%, #031336 100%);
  color: #eff6ff;
  border: 1px solid rgba(90, 158, 255, 0.35);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(4, 17, 52, 0.24);
}

.cta-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.cta-panel p {
  margin: 0 0 14px;
  color: #c7dbfb;
  line-height: 1.7;
}

.cta-panel .contact-list li {
  color: #e3efff;
}

.faq-detail {
  display: grid;
  gap: 14px;
}

.knowledge-grid {
  display: grid;
  gap: 16px;
}

.knowledge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.96));
  border: 1px solid rgba(87, 138, 233, 0.24);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(17, 48, 107, 0.12);
}

.knowledge-card h3 {
  margin: 0 0 10px;
  color: #14336e;
  font-size: 22px;
}

.knowledge-card p {
  margin: 0 0 12px;
  color: #405985;
  line-height: 1.7;
}

.query-list {
  margin: 0;
  padding-left: 18px;
  color: #3b5684;
  line-height: 1.8;
}

.query-list li + li {
  margin-top: 4px;
}

.keyword-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.keyword-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(30, 101, 220, 0.1);
  color: #184081;
  font-size: 13px;
  font-weight: 700;
}

.answer-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(8, 28, 73, 0.94), rgba(6, 20, 58, 0.94));
  color: #d7e8ff;
  line-height: 1.7;
}

.muted-note {
  color: #57709c;
  font-size: 14px;
}

.ai-band {
  background:
    radial-gradient(circle at 14% 0, rgba(17, 180, 255, 0.28), transparent 30%),
    linear-gradient(90deg, #00112f, #011f5f);
  border-top: 1px solid rgba(73, 140, 255, 0.45);
  border-bottom: 1px solid rgba(73, 140, 255, 0.45);
  padding: 18px 0;
}

.ai-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
}

.ai-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5, 59, 149, 0.58), rgba(2, 25, 81, 0.72));
  box-shadow: inset 0 0 0 1px rgba(95, 162, 255, 0.38);
}

.ai-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.ai-brand h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  color: #17b8ff;
}

.ai-brand p {
  margin: 6px 0 0;
  color: #ffaf45;
  font-size: 13px;
  font-weight: 600;
}

.ai-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #ebf4ff;
  background: linear-gradient(135deg, rgba(11, 52, 139, 0.9), rgba(11, 33, 89, 0.95));
  border: 1px solid rgba(93, 162, 255, 0.5);
  border-radius: 14px;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
}

.ai-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(7, 20, 52, 0.45));
}

.ai-pill img.mono-icon {
  filter: brightness(2.8) invert(1) drop-shadow(0 4px 8px rgba(7, 20, 52, 0.45));
}

.ai-pill span {
  line-height: 1.2;
}

.work-carousel {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
  perspective: 1800px;
}

.carousel-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 52px 6px 30px;
  margin-top: -20px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.work-slide {
  flex: 0 0 clamp(210px, 22vw, 250px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(73, 133, 245, 0.35);
  border-radius: 50%;
  background: linear-gradient(160deg, #ffffff, #dce9ff);
  color: #204080;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(44, 88, 165, 0.16), inset 0 1px 0 #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(33, 77, 152, 0.24), inset 0 1px 0 #fff;
}

.work-card {
  min-height: 170px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(135deg, #1d3f89, #0c1a45);
  box-shadow: 0 16px 26px rgba(14, 36, 86, 0.28);
  transform: translateY(10px) translateZ(-18px) scale(0.95);
  transform-origin: center center;
  border: 1px solid rgba(101, 165, 255, 0.35);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 62, 0.12), rgba(3, 12, 31, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(9, 130, 255, 0.45), transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(255, 152, 39, 0.24), transparent 42%),
    var(--slide-image) center / cover no-repeat;
  z-index: 0;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0) 35%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.work-card > * {
  position: relative;
  z-index: 1;
}

.work-slide.is-left {
  transform: rotateY(23deg) rotateX(5deg) translateY(10px) translateZ(-34px) scale(0.92);
  opacity: 0.9;
}

.work-slide.is-right {
  transform: rotateY(-23deg) rotateX(5deg) translateY(10px) translateZ(-34px) scale(0.92);
  opacity: 0.9;
}

.work-slide.is-far {
  filter: saturate(0.85) brightness(0.82);
  opacity: 0.78;
}

.work-slide.is-active {
  transform: rotateY(0deg) rotateX(8deg) translateY(-16px) translateZ(110px) scale(1.08);
  box-shadow:
    0 34px 48px rgba(8, 33, 92, 0.48),
    0 0 24px rgba(15, 154, 255, 0.35);
  filter: saturate(1.08) brightness(1.05);
  opacity: 1;
}

.work-slide.card-3d:hover {
  box-shadow: 0 24px 34px rgba(8, 33, 92, 0.36);
}

.work-slide.is-active.card-3d:hover {
  transform: rotateY(0deg) rotateX(9deg) translateY(-22px) translateZ(120px) scale(1.095);
}

.work-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.work-card p {
  margin: 0;
  color: rgba(226, 238, 255, 0.95);
  font-size: 13px;
  line-height: 1.4;
}

.footer-strip {
  background: linear-gradient(180deg, #f7fbff, #e6f0ff);
  border-top: 1px solid rgba(66, 132, 240, 0.3);
  padding: 12px 0 0;
}

.footer-inner {
  text-align: center;
  padding-bottom: 10px;
}

.footer-inner h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  color: #14336e;
}

.choose-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 15px;
}

.choose-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #274b89;
  font-size: 14px;
  font-weight: 600;
}

.point-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0a9fff, #1f63ff);
  box-shadow: 0 4px 10px rgba(26, 92, 202, 0.3);
}

.contact-section {
  margin-top: 18px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(76, 128, 219, 0.3);
  background:
    radial-gradient(circle at 10% 0%, rgba(20, 138, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(255, 162, 60, 0.15), transparent 24%),
    linear-gradient(180deg, #020d2e, #041748 58%, #020a24);
}

.contact-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.contact-head {
  text-align: center;
  margin-bottom: 14px;
}

.contact-head h4 {
  margin: 0 0 8px;
  color: #f1f7ff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.contact-head p {
  margin: 0 auto;
  color: #bbd2f5;
  font-size: 14px;
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.contact-block {
  background: linear-gradient(145deg, rgba(8, 28, 73, 0.9), rgba(6, 20, 58, 0.9));
  border: 1px solid rgba(104, 165, 255, 0.36);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 22px rgba(4, 17, 52, 0.42);
}

.contact-block h5 {
  margin: 0 0 6px;
  color: #eef6ff;
  font-size: 20px;
}

.contact-block p {
  margin: 0 0 12px;
  color: #b7d1f5;
  font-size: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-list li {
  color: #d0e3ff;
  font-size: 14px;
  font-weight: 600;
}

.email-link {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(105deg, #10a8ff, #2e6eff 62%, #ff9c33);
  border: 1px solid rgba(186, 222, 255, 0.4);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(11, 72, 176, 0.4);
  display: inline-block;
}

.phone-link {
  text-decoration: none;
  color: #d9ebff;
  border: 1px solid rgba(123, 184, 255, 0.42);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  background: rgba(15, 53, 122, 0.6);
}

.contact-address {
  margin: 0 0 16px;
  color: #d0e3ff;
  font-style: normal;
}

.contact-address p {
  margin: 0 0 8px;
}

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

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

  .work-slide {
    flex-basis: clamp(220px, 42vw, 320px);
  }

  .ai-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .about-copy p {
    text-align: center;
  }

  .choose-points {
    gap: 10px 14px;
  }

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

@media (max-width: 820px) {
  .nav-inner {
    flex-direction: column;
  }

  .brand-shield {
    width: 62px;
    height: 62px;
    transform: scale(1.45);
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tag {
    font-size: 9px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-signals li {
    justify-content: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .services-grid,
  .ai-inner {
    grid-template-columns: 1fr;
  }

  .work-carousel {
    grid-template-columns: 42px 1fr 42px;
    gap: 6px;
  }

  .work-slide {
    flex-basis: clamp(240px, 78vw, 320px);
  }

  .ai-brand {
    flex-direction: column;
    text-align: center;
  }
}

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(105deg, #10a8ff, #2e6eff 62%, #ff9c33);
  box-shadow: 0 10px 18px rgba(11, 72, 176, 0.35);
}

.chat-toggle-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 78px;
  width: min(360px, calc(100vw - 26px));
  max-height: 70vh;
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(104, 165, 255, 0.36);
  background: linear-gradient(145deg, rgba(8, 28, 73, 0.98), rgba(6, 20, 58, 0.98));
  box-shadow: 0 14px 24px rgba(4, 17, 52, 0.45);
}

.chat-widget.open {
  display: flex;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  color: #f2f7ff;
  border-bottom: 1px solid rgba(104, 165, 255, 0.28);
}

.chat-close {
  border: 0;
  background: transparent;
  color: #cfe4ff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.chat-messages {
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}

.chat-msg {
  max-width: 84%;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
}

.chat-msg.bot {
  align-self: flex-start;
  color: #d4e8ff;
  background: rgba(20, 60, 130, 0.75);
  border: 1px solid rgba(118, 176, 255, 0.28);
}

.chat-msg.user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(105deg, #10a8ff, #2e6eff 62%, #ff9c33);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(104, 165, 255, 0.28);
}

.chat-form input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(114, 171, 255, 0.38);
  background: rgba(7, 28, 70, 0.95);
  color: #edf5ff;
  padding: 9px 10px;
  outline: none;
}

.chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(105deg, #10a8ff, #2e6eff 62%, #ff9c33);
}
.whatsapp-section {
  margin-top: 10px;
}

.whatsapp-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
}

.whatsapp-link:hover {
  opacity: 0.85;
}

@media (max-width: 820px) {
  .chat-toggle {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget {
    right: 12px;
    bottom: 62px;
    width: calc(100vw - 24px);
  }
}
