/* Atualizações inspiradas em seções e microanimações do Cilox: portfolio hover, marquee, orbit e CTA editorial */
.hero-section .cilox-dot,
.hero-section .cilox-ring {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.cilox-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  left: 12%;
  top: 28%;
  animation: shapeFloat 5.8s ease-in-out infinite;
}

.cilox-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 14px solid rgba(54,198,218,0.18);
  right: 7%;
  bottom: 19%;
  animation: shapeFloat 7s ease-in-out infinite reverse;
}

.hero-orbit {
  position: absolute;
  inset: 4% 5% 8% 6%;
  border: 1px dashed rgba(46,143,197,0.23);
  border-radius: 50%;
  pointer-events: none;
  animation: slowSpin 22s linear infinite;
  z-index: 2;
}

.hero-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(54,198,218,0.12);
}

.hero-orbit span:nth-child(1) { left: 11%; top: 12%; }
.hero-orbit span:nth-child(2) { right: 7%; top: 48%; background: var(--yellow); box-shadow: 0 0 0 8px rgba(255,203,33,0.16); }
.hero-orbit span:nth-child(3) { left: 46%; bottom: -5px; background: var(--red); box-shadow: 0 0 0 8px rgba(237,28,36,0.08); }

@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes shapeFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(12px,-18px,0) scale(1.08); }
}

.brand-pill-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.brand-pill-marquee .brand-pill-wrap {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
  min-width: 100%;
  animation: pillMarquee 28s linear infinite;
}

.brand-pill-marquee .brand-pill-wrap:hover {
  animation-play-state: paused;
}

.brand-pill-marquee .brand-pill-wrap span {
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(30, 91, 134, 0.06);
}

@keyframes pillMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cases-section {
  position: relative;
  overflow: hidden;
}

.cases-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -180px;
  top: 90px;
  background: rgba(54,198,218,0.1);
  pointer-events: none;
}

.portfolio-card {
  position: relative;
  min-height: 345px;
  border-radius: 32px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card::before,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.portfolio-card::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.26), transparent 31%),
    linear-gradient(135deg, #155d8c, #2e8fc5);
}

.portfolio-card::after {
  z-index: -1;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,203,33,0.25), transparent 18%),
    radial-gradient(circle at 20% 88%, rgba(54,198,218,0.32), transparent 22%);
  transform: scale(1);
  transition: transform 650ms ease;
}

.portfolio-card.alt::before { background: linear-gradient(135deg, #1b6f9f, #36c6da); }
.portfolio-card.warm::before { background: linear-gradient(135deg, #1f78ad, #f36b21); }
.portfolio-card.dark::before { background: linear-gradient(135deg, #111827, #2e8fc5); }

.portfolio-card:hover {
  transform: translateY(-12px) rotate(-0.35deg);
  box-shadow: var(--shadow-hover);
}

.portfolio-card:hover::after {
  transform: scale(1.18) rotate(6deg);
}

.portfolio-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 900;
  margin-bottom: 58px;
}

.portfolio-icon {
  position: absolute;
  right: 26px;
  top: 28px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  font-size: 1.35rem;
}

.portfolio-card h3 {
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.portfolio-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.72;
  margin-bottom: 20px;
}

.portfolio-card .case-tags span {
  color: var(--white);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
}

.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,203,33,0.12);
}

.why-panel {
  border-radius: 38px;
  padding: 48px;
  background: linear-gradient(180deg, #ffffff, #f3fbff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.why-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(54,198,218,0.16);
}

.why-badge {
  display: inline-grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  box-shadow: 0 22px 46px rgba(46,143,197,0.24);
  margin-bottom: 28px;
  transform: rotate(-4deg);
}

.why-badge strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.why-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 42px rgba(30,91,134,0.11);
  border-color: rgba(46,143,197,0.22);
}

.why-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 0;
  color: #2e8fc5;
  background: currentColor;
  opacity: 1;
  font-size: 1.2rem;
}

.why-item h3 {
  font-size: 1.02rem;
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
  margin: 0;
}

.cilox-cta {
  align-items: flex-end;
}

.cilox-cta-title {
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  max-width: 850px !important;
}

.cta-spark {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.cta-spark-one {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  left: 9%;
  top: 22%;
  animation: shapeFloat 5s ease-in-out infinite;
}

.cta-spark-two {
  width: 66px;
  height: 66px;
  border: 12px solid rgba(255,255,255,0.15);
  right: 22%;
  bottom: 22%;
  animation: slowSpin 12s linear infinite;
}

.cilox-cta > div,
.cilox-cta > a { position: relative; z-index: 2; }

@media (max-width: 991.98px) {
  .brand-pill-marquee .brand-pill-wrap { animation-duration: 18s; }
  .portfolio-card { min-height: 300px; }
  .why-panel { padding: 32px; }
  .cilox-cta { align-items: flex-start; }
}

@media (max-width: 575.98px) {
  .hero-orbit { display: none; }
  .portfolio-number { margin-bottom: 38px; }
  .why-panel { border-radius: 28px; padding: 26px; }
  .why-item { flex-direction: column; }
}


/* Rodapé escuro inspirado no visual de agência criativa */
.footer-cilox {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(46,143,197,0.14), transparent 32%),
    linear-gradient(135deg, #171b1f 0%, #111519 48%, #1b2026 100%);
  padding: 76px 0 30px;
  color: #ffffff;
  border-top: 4px solid var(--cyan);
}

.footer-cilox::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  pointer-events: none;
}

.footer-cilox-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-shape-one {
  width: 680px;
  height: 680px;
  right: -220px;
  bottom: -360px;
  border: 90px solid rgba(255,255,255,0.035);
  transform: rotate(-18deg);
}

.footer-shape-two {
  width: 220px;
  height: 220px;
  left: -90px;
  top: 90px;
  background: rgba(46,143,197,0.08);
  filter: blur(2px);
}

.footer-cilox .footer-top {
  padding-bottom: 46px;
  justify-content: center;
  text-align: center;
}

.footer-cilox .footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-cilox .footer-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: none;
}


.footer-cilox .footer-main {
  padding: 6px 0 62px;
}

.footer-statement {
  max-width: 390px;
  margin: 0 0 30px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.52;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer-cilox .footer-social {
  justify-content: flex-start;
  gap: 14px;
  margin: 0;
}

.footer-cilox .footer-social a {
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.footer-cilox .footer-social a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  transform: translateY(-5px);
}

.footer-title {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.footer-links {
  display: grid;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-contact-list a,
.footer-bottom a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.footer-contact-list i {
  width: 22px;
  color: var(--cyan);
  font-size: 1rem;
}

.footer-contact-list span {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.footer-security-image {
  margin-top: 20px;
}

.footer-security-image img {
  max-width: 100%;
  width: 320px;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .footer-security-image img {
    width: 280px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.13);
}

.footer-cilox .footer-bottom p {
  color: rgba(255,255,255,0.46);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .footer-cilox {
    padding-top: 58px;
  }

  .footer-cilox .footer-top {
    padding-bottom: 44px;
  }

  .footer-cilox .footer-main {
    padding-bottom: 44px;
  }
}

@media (max-width: 767.98px) {
    .footer-cilox .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* =====================================================
   Ajustes finais de responsividade mobile
   ===================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1199.98px) {
  .site-navbar .container {
    max-width: 100%;
    padding-inline: 22px;
  }

  .navbar .nav-link {
    font-size: 0.9rem;
    padding-inline: 0.58rem !important;
  }

  .nav-cta {
    padding-inline: 1.05rem !important;
  }
}

@media (max-width: 991.98px) {
  .site-navbar,
  .site-navbar.scrolled {
    padding: 10px 0;
  }

  .site-navbar .container {
    padding-inline: 18px;
  }

  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img {
    width: 190px;
  }

  .navbar-toggler {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(46,143,197,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    margin: 0;
  }

  .navbar-collapse {
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    margin-top: 12px;
    padding: 12px;
    border-radius: 22px;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 4px !important;
  }

  .navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 14px;
    font-size: 0.98rem;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    background: rgba(46,143,197,0.08);
  }

  .navbar .nav-link::after {
    display: none;
  }

  .navbar .nav-item.ms-lg-3 {
    margin-left: 0 !important;
    margin-top: 8px;
  }

  .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 13px 18px !important;
  }

  .hero-section {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 34px !important;
    padding-bottom: 56px !important;
  }

  .hero-section::before,
  .hero-shape,
  .hero-orbit,
  .hero-section .cilox-dot,
  .hero-section .cilox-ring {
    opacity: 0.34;
  }

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

  .hero-mini-grid {
    max-width: 100%;
  }

  .floating-card {
    max-width: 320px;
  }

  .brand-strip {
    overflow: hidden;
  }

  .brand-strip-title {
    text-align: center;
    margin-bottom: 10px !important;
  }

  .brand-pill-marquee {
    width: 100%;
  }

  .image-card,
  .why-panel,
  .aviation-visual-card {
    border-radius: 28px;
  }

  .method-section .row,
  .aviation-section .row,
  .juridico-section .row,
  .why-section .row {
    row-gap: 34px !important;
  }

  .services-section .row,
  .cases-section .row,
  .contact-section .row {
    row-gap: 18px !important;
  }

  .portfolio-card,
  .service-card,
  .why-item,
  .step-card,
  .contact-card {
    height: auto;
  }

  .aviation-visual-card {
    min-height: 390px;
  }

  .aviation-floating-card {
    min-width: 165px;
    max-width: 230px;
  }

  .cta-box,
  .cilox-cta {
    text-align: left;
  }

  .footer-main > [class*="col-"] {
    width: 100%;
  }

  .footer-security-image img {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-inline: 18px;
  }

  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img {
    width: 180px;
  }

  .display-4 {
    font-size: clamp(2.25rem, 11vw, 3.05rem) !important;
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .section-title,
  .cilox-cta-title,
  .metrics-cta-title {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem) !important;
    line-height: 1.12;
    letter-spacing: -0.045em;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-pad {
    padding: 62px 0;
  }

  .hero-section .min-vh-100 {
    padding-top: 26px !important;
    padding-bottom: 46px !important;
  }

  .hero-text,
  .section-text,
  .section-subtitle,
  .metrics-cta-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-section .d-flex,
  .cta-box,
  .cilox-cta {
    gap: 12px !important;
  }

  .hero-section .btn,
  .metrics-cta-button,
  .cta-box .btn,
  .cilox-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-mini-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-mini-grid div {
    padding: 14px;
  }

  .hero-visual {
    margin-top: 22px;
  }

  .floating-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }

  .brand-strip {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .brand-strip-title {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .brand-pill-wrap span {
    padding: 9px 16px;
    font-size: 0.86rem;
  }

  .image-card {
    padding: 0;
    overflow: hidden;
  }

  .check-list span,
  .solution-list div {
    gap: 10px;
    font-size: 0.95rem;
  }

  .service-card,
  .portfolio-card,
  .why-item,
  .step-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .service-icon,
  .portfolio-icon,
  .case-top i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.25rem;
  }

  .method-panel,
  .why-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .why-badge {
    position: static;
    margin-bottom: 18px;
    transform: none;
  }

  .aviation-section::after,
  .aviation-decor {
    display: none;
  }

  .aviation-visual-card {
    min-height: 430px;
    border-radius: 26px;
  }

  .aviation-icon-main {
    width: 104px;
    height: 104px;
    border-radius: 30px;
    font-size: 2.35rem;
  }

  .aviation-floating-card {
    left: 18px !important;
    right: 18px !important;
    width: auto;
    max-width: none;
    min-width: auto;
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .solution-list div {
    align-items: center;
    padding: 14px;
    border-radius: 16px;
  }

  .solution-list i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 1rem;
  }

  .clients-marquee {
    padding: 0 0 8px;
  }

  .clients-set {
    gap: 14px;
    padding-right: 14px;
  }

  .client-logo-card {
    width: 218px;
    min-height: 120px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .client-logo-card img {
    max-height: 72px;
  }

  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-card i {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .footer-cilox {
    padding-top: 52px;
  }

  .footer-cilox .footer-top,
  .footer-cilox .footer-main {
    padding-bottom: 34px;
  }

  .footer-logo {
    width: 185px;
  }

  .footer-statement {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .footer-title {
    margin-bottom: 16px;
    font-size: 1.06rem;
  }

  .footer-bottom {
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-inline: 16px;
  }

  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img {
    width: 166px;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .navbar-toggler-icon {
    width: 22px;
    height: 16px;
    margin: 0;
  }

  .navbar-collapse {
    border-radius: 18px;
    padding: 10px;
  }

  .navbar .nav-link {
    padding: 11px 12px !important;
    font-size: 0.94rem;
  }

  .hero-section {
    padding-top: 82px;
  }

  .hero-section .min-vh-100 {
    padding-top: 18px !important;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.69rem;
    letter-spacing: 0.055em;
    margin-bottom: 12px;
  }

  .display-4 {
    font-size: clamp(2rem, 12vw, 2.7rem) !important;
  }

  .section-title,
  .cilox-cta-title,
  .metrics-cta-title {
    font-size: clamp(1.72rem, 9.4vw, 2.25rem) !important;
  }

  .section-pad {
    padding: 54px 0;
  }

  .btn,
  .metrics-cta-button {
    padding: 0.82rem 1.15rem;
    font-size: 0.94rem;
  }

  .hero-mini-grid strong,
  .service-card h3,
  .portfolio-card h3,
  .why-item h3 {
    font-size: 1rem;
  }

  .service-card p,
  .portfolio-card p,
  .why-item p,
  .contact-card p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .aviation-visual-card {
    min-height: 450px;
  }

  .aviation-floating-card.card-one { top: 34px; bottom: auto; }
  .aviation-floating-card.card-two { top: 108px; bottom: auto; }
  .aviation-floating-card.card-three { top: auto; bottom: 108px; }
  .aviation-floating-card.card-four { top: auto; bottom: 34px; }

  .client-logo-card {
    width: 178px;
    min-height: 100px;
    padding: 12px;
  }

  .client-logo-card img {
    max-height: 58px;
  }

  .contact-card {
    text-align: center;
  }

  .contact-card h3,
  .contact-card p,
  .contact-card a {
    text-align: center;
  }

  .footer-security-image img {
    width: 190px;
  }

  .whatsapp-float,
  .back-to-top {
    bottom: 14px;
  }
}



/* Refinamento visual da seção MKT Aviação Executiva */
.aviation-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 198, 218, 0.13), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(255, 203, 33, 0.18), transparent 28%),
    #eeeeee;
}

.aviation-section::before {
  right: -180px;
  top: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(46, 143, 197, 0.16) 0%, rgba(46, 143, 197, 0.06) 48%, transparent 72%);
}

.aviation-section::after {
  display: none;
}

.aviation-decor {
  opacity: 0.45;
}

.aviation-visual-card--refined {
  min-height: 520px;
  border-radius: 42px;
  border: 1px solid rgba(46, 143, 197, 0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(242,250,253,0.96) 48%, rgba(232,246,252,0.98) 100%);
  box-shadow: 0 34px 90px rgba(24, 76, 112, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.aviation-visual-card--refined::before {
  inset: auto;
  top: -96px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px dashed rgba(46, 143, 197, 0.28);
  border-radius: 50%;
  animation: orbitSpin 28s linear infinite;
  z-index: 0;
}

.aviation-visual-card--refined::after {
  right: -54px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 203, 33, 0.35), rgba(255, 203, 33, 0.05) 70%);
  z-index: 0;
}

.aviation-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(46,143,197,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,143,197,0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 45% 48%, #000 0%, rgba(0,0,0,0.72) 42%, transparent 73%);
  -webkit-mask-image: radial-gradient(circle at 45% 48%, #000 0%, rgba(0,0,0,0.72) 42%, transparent 73%);
  z-index: 0;
}

.aviation-map-line {
  position: absolute;
  left: 11%;
  top: 15%;
  width: 74%;
  height: 66%;
  border: 1px dashed rgba(46, 143, 197, 0.24);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-10deg);
  z-index: 1;
}

.aviation-runway {
  position: absolute;
  left: 8%;
  bottom: 15%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 143, 197, 0.24), transparent);
  transform: rotate(-8deg);
  z-index: 1;
}

.aviation-runway span {
  position: absolute;
  left: 42%;
  top: -3px;
  width: 84px;
  height: 7px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(46,143,197,0.28) 0 12px, transparent 12px 22px);
}

.aviation-icon-main {
  display: none;
}

.aviation-main-panel {
  position: absolute;
  left: 7%;
  top: 11%;
  z-index: 3;
  width: min(360px, 62%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 70px rgba(20, 78, 117, 0.16);
}

.aviation-panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.aviation-panel-badge {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 18px 36px rgba(46, 143, 197, 0.26);
}

.aviation-panel-badge i {
  width: 24px;
  height: 24px;
  background-color: currentColor;
}

.aviation-panel-top strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.aviation-panel-top small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.aviation-panel-lines {
  display: grid;
  gap: 11px;
  margin: 24px 0;
}

.aviation-panel-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,143,197,0.22), rgba(54,198,218,0.10));
}

.aviation-panel-lines span:nth-child(2) {
  width: 78%;
}

.aviation-panel-lines span:nth-child(3) {
  width: 56%;
}

.aviation-panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aviation-panel-metrics span {
  padding: 13px 14px;
  border: 1px solid rgba(46,143,197,0.12);
  border-radius: 18px;
  background: rgba(247, 251, 254, 0.82);
}

.aviation-panel-metrics strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.95rem;
  line-height: 1;
}

.aviation-panel-metrics small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.aviation-jet-visual {
  position: absolute;
  top: 12%;
  right: 11%;
  z-index: 2;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(235,249,253,0.94) 62%, rgba(46,143,197,0.08) 100%);
  border: 1px solid rgba(46,143,197,0.14);
  box-shadow: 0 26px 70px rgba(46, 143, 197, 0.18);
}

.aviation-jet-visual::before,
.aviation-jet-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46,143,197,0.15);
}

.aviation-jet-visual::before {
  inset: -16px;
}

.aviation-jet-visual::after {
  inset: 18px;
  border-style: dashed;
}

.aviation-jet-visual i {
  width: 68px;
  height: 68px;
  transform: rotate(-20deg);
  background-color: currentColor;
}

.aviation-floating-card {
  min-width: 218px;
  padding: 15px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(46, 143, 197, 0.16);
  box-shadow: 0 20px 52px rgba(18, 70, 105, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.aviation-floating-card::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(54,198,218,0.12);
  flex: 0 0 8px;
}

.aviation-floating-card i {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--primary);
  background: currentColor !important;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
}

.aviation-floating-card span {
  line-height: 1.25;
}

.aviation-floating-card.card-one {
  left: 8%;
  top: auto;
  bottom: 29%;
}

.aviation-floating-card.card-two {
  right: 6%;
  top: 44%;
}

.aviation-floating-card.card-three {
  left: 18%;
  bottom: 8%;
}

.aviation-floating-card.card-four {
  right: 7%;
  bottom: 17%;
}

@media (max-width: 991.98px) {
  .aviation-visual-card--refined {
    min-height: 500px;
  }

  .aviation-main-panel {
    width: min(360px, 66%);
  }

  .aviation-jet-visual {
    right: 7%;
    width: 130px;
    height: 130px;
  }

  .aviation-floating-card {
    min-width: 204px;
  }
}

@media (max-width: 575.98px) {
  .aviation-visual-card--refined {
    min-height: auto;
    padding: 22px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .aviation-visual-card--refined::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -100px;
  }

  .aviation-map-line,
  .aviation-runway {
    display: none;
  }

  .aviation-main-panel,
  .aviation-jet-visual,
  .aviation-floating-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: none;
  }

  .aviation-main-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .aviation-jet-visual {
    width: 112px;
    height: 112px;
    align-self: center;
    margin: 8px 0;
  }

  .aviation-jet-visual i {
    width: 52px;
    height: 52px;
  }

  .aviation-floating-card {
    min-width: auto;
    max-width: none;
    font-size: 0.95rem;
    padding: 14px 16px;
  }
}
