:root {
  --awa-navy: #00234d;
  --awa-deep: #00162f;
  --awa-blue: #0065a3;
  --awa-cyan: #009bd0;
  --awa-orange: #ff6600;
  --awa-orange-light: #ff984c;
  --awa-text: #173752;
  --awa-muted: #657b8f;
  --awa-line: #dae6ee;
  --awa-surface: #f2f7fa;
  --awa-white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--awa-text);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
}

a,
button {
  font: inherit;
}

.awa-skip {
  position: fixed;
  z-index: 100000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--awa-navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.awa-skip:focus {
  transform: none;
}

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

/* Hero */

.awa-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 760px;
  padding-top: 70px;
  overflow: hidden;
}

.awa-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 6vw, 90px);
  background:
    radial-gradient(
      circle at 5% 95%,
      rgba(255, 102, 0, .06),
      transparent 27%
    ),
    #fff;
}

.awa-kicker,
.awa-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: var(--awa-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.awa-kicker::before,
.awa-label::before {
  content: "";
  width: 26px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
  border-radius: 999px;
}

.awa-hero h1 {
  max-width: 710px;
  margin: 23px 0 0;
  color: var(--awa-navy);
  background: linear-gradient(
    105deg,
    #002b5c,
    #0065a3 62%,
    #008fc7
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(43px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -2.4px;
  -webkit-text-fill-color: transparent;
}

.awa-hero-description {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--awa-muted);
  font-size: 14px;
  line-height: 1.8;
}

.awa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.awa-button {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.awa-button-orange {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
  box-shadow: 0 14px 30px rgba(255, 102, 0, .25);
}

.awa-button-blue {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-navy),
    var(--awa-blue)
  );
  box-shadow: 0 14px 30px rgba(0, 70, 120, .18);
}

.awa-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.awa-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #365873;
  background: #f1f7fa;
  border: 1px solid #dce9f0;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
}

.awa-hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--awa-orange);
  border-radius: 50%;
}

.awa-hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 58px 45px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(255, 102, 0, .47),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      var(--awa-deep),
      #003c69 60%,
      #0071a6
    );
  overflow: hidden;
}

.awa-hero-visual::before,
.awa-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.awa-hero-visual::before {
  right: -205px;
  bottom: -195px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .055);
}

.awa-hero-visual::after {
  right: -67px;
  bottom: -62px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, .045);
}

.awa-visual-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.awa-visual-heading small,
.awa-visual-heading strong {
  display: block;
}

.awa-visual-heading small {
  color: #ffad76;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.awa-visual-heading strong {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.awa-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .74);
  font-size: 8px;
  font-weight: 600;
}

.awa-status i {
  width: 7px;
  height: 7px;
  background: #36d685;
  border-radius: 50%;
  animation: awaStatus 2.2s infinite;
}

.awa-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 67px 1fr;
  min-height: 405px;
  overflow: hidden;
  color: var(--awa-text);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 20px;
  box-shadow: 0 32px 75px rgba(0, 14, 31, .34);
}

.awa-dashboard-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 24px 12px;
  background: linear-gradient(180deg, #00234d, #00537f);
}

.awa-dashboard-sidebar > span:not(.awa-sidebar-brand) {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
}

.awa-dashboard-sidebar > span.active {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .3);
}

.awa-sidebar-brand {
  width: 32px;
  height: 9px;
  margin-bottom: 6px;
  background: linear-gradient(
    90deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
  border-radius: 999px;
}

.awa-dashboard-content {
  min-width: 0;
  padding: 25px 20px;
}

.awa-dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.awa-dashboard-top strong,
.awa-dashboard-top small {
  display: block;
}

.awa-dashboard-top strong {
  color: var(--awa-navy);
  font-size: 12px;
}

.awa-dashboard-top small {
  margin-top: 4px;
  color: #8296a7;
  font-size: 7px;
}

.awa-dashboard-button {
  padding: 8px 10px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
  border-radius: 8px;
  font-size: 7px;
  font-weight: 700;
}

.awa-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.awa-metrics article {
  min-width: 0;
  padding: 13px 10px;
  background: #f3f8fb;
  border: 1px solid #dfebf1;
  border-radius: 10px;
}

.awa-metrics span,
.awa-metrics strong,
.awa-metrics small {
  display: block;
}

.awa-metrics span {
  color: #788e9f;
  font-size: 6px;
}

.awa-metrics strong {
  margin-top: 5px;
  color: var(--awa-navy);
  font-size: 16px;
}

.awa-metrics small {
  margin-top: 4px;
  color: #6c879a;
  font-size: 5.5px;
}

.awa-dashboard-lower {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 9px;
  margin-top: 12px;
}

.awa-chart {
  display: flex;
  height: 160px;
  align-items: flex-end;
  gap: 8px;
  padding: 18px 14px 0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      #e7eff4 32px
    ),
    #fbfdfe;
  border: 1px solid #dfebf1;
  border-radius: 10px;
}

.awa-chart span {
  flex: 1;
  height: var(--height);
  background: linear-gradient(
    180deg,
    var(--awa-cyan),
    var(--awa-blue)
  );
  border-radius: 5px 5px 0 0;
  transform-origin: bottom;
  animation: awaBars 1.2s both;
}

.awa-chart span:nth-child(4) {
  background: linear-gradient(
    180deg,
    var(--awa-orange-light),
    var(--awa-orange)
  );
}

.awa-activity {
  padding: 14px 10px;
  background: #f8fbfd;
  border: 1px solid #dfebf1;
  border-radius: 10px;
}

.awa-activity strong {
  display: block;
  margin-bottom: 12px;
  color: var(--awa-navy);
  font-size: 7px;
}

.awa-activity span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #667f93;
  font-size: 5.8px;
}

.awa-activity i {
  width: 6px;
  height: 6px;
  background: var(--awa-blue);
  border-radius: 50%;
}

.awa-activity i.orange {
  background: var(--awa-orange);
}

.awa-activity i.green {
  background: #26b86f;
}

.awa-floating-card {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  color: var(--awa-text);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(0, 35, 77, .1);
  border-radius: 11px;
  box-shadow: 0 15px 34px rgba(0, 19, 41, .22);
  animation: awaFloat 4.5s ease-in-out infinite;
}

.awa-floating-card span,
.awa-floating-card strong {
  display: block;
}

.awa-floating-card span {
  color: var(--awa-orange);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .8px;
}

.awa-floating-card strong {
  margin-top: 4px;
  color: var(--awa-navy);
  font-size: 8px;
}

.awa-floating-crm {
  top: 143px;
  right: 23px;
}

.awa-floating-automation {
  right: 52px;
  bottom: 36px;
  animation-delay: -2s;
}

/* Sections */

.awa-section {
  padding: 105px 0;
}

.awa-section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.awa-section-heading h2,
.awa-intro h2,
.awa-structure-copy h2 {
  margin: 17px 0 0;
  color: var(--awa-navy);
  font-size: clamp(32px, 4.3vw, 49px);
  line-height: 1.13;
  letter-spacing: -1.6px;
}

.awa-section-heading > p,
.awa-structure-copy > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--awa-muted);
  font-size: 13px;
  line-height: 1.8;
}

.awa-intro {
  padding: 92px 0;
  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(0, 101, 163, .06),
      transparent 25%
    ),
    linear-gradient(180deg, #f4f8fb, #fff);
}

.awa-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.awa-intro-copy p {
  margin: 0;
  color: var(--awa-muted);
  font-size: 13px;
  line-height: 1.85;
}

.awa-intro-copy p + p {
  margin-top: 16px;
}

.awa-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 55px;
}

.awa-comparison article {
  min-height: 170px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--awa-line);
  border-radius: 18px;
  box-shadow: 0 15px 36px rgba(0, 35, 77, .07);
}

.awa-comparison article.highlight {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-navy),
    var(--awa-blue)
  );
  border-color: transparent;
}

.awa-comparison-number {
  color: var(--awa-orange);
  font-size: 9px;
  font-weight: 800;
}

.awa-comparison strong {
  display: block;
  margin-top: 16px;
  color: var(--awa-navy);
  font-size: 14px;
}

.awa-comparison .highlight strong {
  color: #fff;
}

.awa-comparison p {
  margin: 9px 0 0;
  color: var(--awa-muted);
  font-size: 9px;
  line-height: 1.65;
}

.awa-comparison .highlight p {
  color: rgba(255, 255, 255, .7);
}

.awa-comparison-arrow {
  color: var(--awa-orange);
  font-size: 20px;
}

.awa-simple {
  background: #fff;
}

.awa-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.awa-app-card {
  position: relative;
  min-height: 365px;
  padding: 27px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--awa-line);
  border-radius: 19px;
  box-shadow: 0 16px 40px rgba(0, 35, 77, .065);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.awa-app-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  background: rgba(0, 101, 163, .035);
  border-radius: 50%;
}

.awa-app-card:hover {
  border-color: rgba(0, 101, 163, .25);
  box-shadow: 0 23px 50px rgba(0, 35, 77, .11);
  transform: translateY(-5px);
}

.awa-app-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-navy),
    var(--awa-cyan)
  );
  border-radius: 14px;
}

.awa-app-icon.orange {
  background: linear-gradient(
    135deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
}

.awa-app-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.awa-card-type {
  display: block;
  margin-top: 23px;
  color: var(--awa-blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.awa-app-card h3 {
  margin: 8px 0 0;
  color: var(--awa-navy);
  font-size: 18px;
  line-height: 1.3;
}

.awa-app-card > p {
  margin: 12px 0 0;
  color: var(--awa-muted);
  font-size: 9px;
  line-height: 1.7;
}

.awa-app-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.awa-app-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #49677e;
  font-size: 8px;
}

.awa-app-card li::before {
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--awa-blue);
  border-radius: 6px;
  font-size: 8px;
}

.awa-simple-note {
  display: grid;
  grid-template-columns: .65fr 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 25px 28px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-navy),
    #006b9f
  );
  border-radius: 18px;
}

.awa-simple-note strong {
  font-size: 13px;
}

.awa-simple-note p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  line-height: 1.65;
}

.awa-simple-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Advanced */

.awa-advanced {
  position: relative;
  color: #fff;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 102, 0, .28),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      var(--awa-deep),
      #003e6d 60%,
      #006997
    );
  overflow: hidden;
}

.awa-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.awa-circle-one {
  top: -260px;
  right: -210px;
  width: 590px;
  height: 590px;
  background: rgba(255, 255, 255, .045);
}

.awa-circle-two {
  right: 150px;
  bottom: -250px;
  width: 430px;
  height: 430px;
  background: rgba(255, 255, 255, .033);
}

.awa-advanced .awa-container {
  position: relative;
  z-index: 2;
}

.awa-heading-light h2 {
  color: #fff;
}

.awa-heading-light > p {
  color: rgba(255, 255, 255, .68);
}

.awa-label-light {
  color: #ffad76;
}

.awa-label-light::before {
  background: #fff;
}

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

.awa-advanced-grid article {
  min-height: 320px;
  padding: 29px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 19px;
  backdrop-filter: blur(8px);
  transition:
    background 190ms ease,
    transform 190ms ease;
}

.awa-advanced-grid article:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-5px);
}

.awa-advanced-number {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    #006da5,
    #00a4d6
  );
  border-radius: 12px;
  font-size: 9px;
  font-weight: 800;
}

.awa-advanced-number.orange {
  background: linear-gradient(
    135deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
}

.awa-advanced-grid h3 {
  margin: 27px 0 0;
  color: #fff;
  font-size: 19px;
}

.awa-advanced-grid p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  line-height: 1.75;
}

.awa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.awa-tags span {
  padding: 7px 9px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  font-size: 7px;
}

/* Structure */

.awa-structure {
  background:
    radial-gradient(
      circle at 7% 8%,
      rgba(0, 101, 163, .06),
      transparent 24%
    ),
    #f4f8fb;
}

.awa-structure-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.awa-structure-copy {
  position: sticky;
  top: 120px;
}

.awa-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--awa-blue);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.awa-resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--awa-line);
  border-radius: 20px;
  box-shadow: 0 19px 48px rgba(0, 35, 77, .08);
}

.awa-resource-grid article {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--awa-line);
  border-bottom: 1px solid var(--awa-line);
}

.awa-resource-grid article:nth-child(even) {
  border-right: 0;
}

.awa-resource-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}

.awa-resource-grid span {
  color: var(--awa-orange);
  font-size: 8px;
  font-weight: 800;
}

.awa-resource-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--awa-navy);
  font-size: 13px;
}

.awa-resource-grid small {
  display: block;
  margin-top: 7px;
  color: var(--awa-muted);
  font-size: 8px;
  line-height: 1.65;
}

/* Process */

.awa-process {
  background: #fff;
}

.awa-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.awa-process-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f8fb, #fff);
  border: 1px solid var(--awa-line);
  border-radius: 18px;
  transition:
    transform 190ms ease,
    box-shadow 190ms ease;
}

.awa-process-grid article:hover {
  box-shadow: 0 20px 43px rgba(0, 35, 77, .1);
  transform: translateY(-5px);
}

.awa-process-grid article::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  background: rgba(0, 101, 163, .04);
  border-radius: 50%;
}

.awa-process-grid article > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--awa-navy),
    var(--awa-cyan)
  );
  border-radius: 12px;
  font-size: 9px;
  font-weight: 800;
}

.awa-process-grid article:nth-child(even) > span {
  background: linear-gradient(
    135deg,
    var(--awa-orange),
    var(--awa-orange-light)
  );
}

.awa-process-grid small {
  display: block;
  margin-top: 25px;
  color: var(--awa-blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.awa-process-grid h3 {
  margin: 8px 0 0;
  color: var(--awa-navy);
  font-size: 17px;
}

.awa-process-grid p {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  color: var(--awa-muted);
  font-size: 9px;
  line-height: 1.7;
}

/* FAQ */

.awa-faq {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 102, 0, .045),
      transparent 24%
    ),
    #f3f7fa;
}

.awa-faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
}

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

.awa-faq-list details {
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--awa-line);
  border-radius: 14px;
}

.awa-faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--awa-navy);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.awa-faq-list summary::-webkit-details-marker {
  display: none;
}

.awa-faq-list summary span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--awa-blue);
  background: #eaf5fb;
  border-radius: 8px;
  font-size: 17px;
  transition: transform 180ms ease;
}

.awa-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.awa-faq-list details p {
  margin: -2px 0 20px;
  padding-right: 35px;
  color: var(--awa-muted);
  font-size: 9px;
  line-height: 1.75;
}

/* Final */

.awa-final {
  position: relative;
  padding: 85px 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(0, 153, 208, .4),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      var(--awa-deep),
      #005784
    );
  overflow: hidden;
}

.awa-final-circle {
  right: -170px;
  bottom: -240px;
  width: 470px;
  height: 470px;
  background: rgba(255, 255, 255, .045);
}

.awa-final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
}

.awa-final-inner > div {
  max-width: 760px;
}

.awa-final h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(31px, 4.1vw, 47px);
  line-height: 1.15;
  letter-spacing: -1.4px;
}

.awa-final p {
  max-width: 650px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.75;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes awaStatus {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(54, 214, 133, .12);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(54, 214, 133, 0);
  }
}

@keyframes awaBars {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

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

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

@media (max-width: 1050px) {
  .awa-hero {
    grid-template-columns: 1fr;
  }

  .awa-hero-copy {
    min-height: 650px;
  }

  .awa-hero-visual {
    min-height: 650px;
    padding-inline: max(45px, 8vw);
  }

  .awa-simple-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awa-structure-grid,
  .awa-faq-grid {
    grid-template-columns: 1fr;
  }

  .awa-structure-copy {
    position: static;
  }
}

@media (max-width: 780px) {
  .awa-section {
    padding: 82px 0;
  }

  .awa-hero {
    padding-top: 72px;
  }

  .awa-hero-copy {
    min-height: auto;
    padding: 70px 32px 58px;
  }

  .awa-hero-visual {
    min-height: 570px;
    padding: 55px 32px 70px;
  }

  .awa-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .awa-comparison {
    grid-template-columns: 1fr;
  }

  .awa-comparison-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

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

  .awa-simple-note {
    grid-template-columns: 1fr;
  }

  .awa-final-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .awa-container {
    width: min(100% - 26px, 1180px);
  }

  .awa-hero-copy {
    padding: 54px 21px 45px;
  }

  .awa-hero h1 {
    font-size: 38px;
    line-height: 1.11;
    letter-spacing: -1.4px;
  }

  .awa-hero-description {
    font-size: 12px;
  }

  .awa-hero-actions {
    display: grid;
  }

  .awa-button {
    width: 100%;
  }

  .awa-hero-points {
    display: grid;
  }

  .awa-hero-visual {
    min-height: 480px;
    padding: 42px 12px 66px;
  }

  .awa-visual-heading {
    padding-inline: 5px;
  }

  .awa-dashboard {
    grid-template-columns: 48px 1fr;
    min-height: 340px;
    border-radius: 16px;
  }

  .awa-dashboard-sidebar {
    gap: 14px;
    padding: 19px 8px;
  }

  .awa-dashboard-sidebar > span:not(.awa-sidebar-brand) {
    width: 22px;
    height: 22px;
  }

  .awa-dashboard-content {
    padding: 19px 10px;
  }

  .awa-dashboard-button {
    display: none;
  }

  .awa-metrics {
    gap: 4px;
  }

  .awa-metrics article {
    padding: 9px 5px;
  }

  .awa-metrics strong {
    font-size: 12px;
  }

  .awa-dashboard-lower {
    grid-template-columns: 1fr;
  }

  .awa-chart {
    height: 110px;
  }

  .awa-activity {
    display: none;
  }

  .awa-floating-crm {
    top: 104px;
    right: 6px;
  }

  .awa-floating-automation {
    right: 12px;
    bottom: 31px;
  }

  .awa-section-heading h2,
  .awa-intro h2,
  .awa-structure-copy h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .awa-simple-grid,
  .awa-advanced-grid,
  .awa-process-grid,
  .awa-resource-grid {
    grid-template-columns: 1fr;
  }

  .awa-app-card {
    min-height: auto;
  }

  .awa-resource-grid article {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid var(--awa-line);
  }

  .awa-resource-grid article:nth-last-child(2) {
    border-bottom: 1px solid var(--awa-line);
  }

  .awa-resource-grid article:last-child {
    border-bottom: 0;
  }

  .awa-process-grid article {
    min-height: auto;
  }

  .awa-faq-list summary {
    min-height: 72px;
    font-size: 10px;
  }

  .awa-final {
    padding: 70px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* AVANTHY APPS FINAL V4 — INÍCIO */

/* ==========================================================
   HERO — PRODUTO SAAS
   ========================================================== */

.awa-hero-v4 {
  position: relative;
  display: block;
  min-height: 790px;
  padding: 70px 0 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 36%,
      rgba(0, 176, 235, .20),
      transparent 25%
    ),
    radial-gradient(
      circle at 11% 88%,
      rgba(255, 102, 0, .13),
      transparent 27%
    ),
    linear-gradient(
      128deg,
      #00152e 0%,
      #002d58 48%,
      #004f7b 100%
    );
  isolation: isolate;
  overflow: hidden;
}

.awa-hero-v4::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9%;
  bottom: -47%;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, .025),
    0 0 0 210px rgba(255, 255, 255, .018);
}

.awa-v4-grid {
  position: absolute;
  z-index: -1;
  inset: 70px 0 0;
  opacity: .17;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, .08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .08) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 42%,
      #000 85%,
      transparent
    );
}

.awa-v4-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .24;
  pointer-events: none;
}

.awa-v4-glow-a {
  top: 8%;
  right: 6%;
  background: #00c8ff;
  animation: awaV4Glow 9s ease-in-out infinite;
}

.awa-v4-glow-b {
  bottom: -24%;
  left: -8%;
  background: #ff6600;
  animation: awaV4Glow 11s -4s ease-in-out infinite;
}

.awa-hero-shell {
  display: grid;
  width: min(1240px, calc(100% - 56px));
  min-height: 720px;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  margin-inline: auto;
  padding: 58px 0 64px;
}

.awa-hero-v4 .awa-hero-copy {
  min-width: 0;
  padding: 0;
  background: none;
}

.awa-hero-v4 .awa-kicker {
  color: #9bdfff;
}

.awa-hero-v4 .awa-kicker::before {
  box-shadow: 0 0 18px rgba(255, 102, 0, .5);
}

.awa-hero-v4 h1 {
  max-width: 670px;
  margin: 22px 0 0;
  color: #fff;
  background: none;
  font-size: clamp(44px, 4.65vw, 67px);
  font-weight: 700;
  line-height: 1.055;
  letter-spacing: -2.7px;
  -webkit-text-fill-color: currentColor;
}

.awa-hero-v4 h1 span {
  display: inline;
  color: #ff8635;
  text-shadow: 0 10px 34px rgba(255, 102, 0, .16);
}

.awa-hero-v4 .awa-hero-description {
  max-width: 610px;
  color: rgba(235, 247, 255, .72);
  font-size: 14px;
  line-height: 1.82;
}

.awa-hero-v4 .awa-button-orange {
  background:
    linear-gradient(
      135deg,
      #ff6100,
      #ff9b4d
    );
  box-shadow: 0 16px 36px rgba(255, 102, 0, .24);
}

.awa-button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.awa-button-ghost:hover,
.awa-button-ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .35);
}

.awa-hero-v4 .awa-hero-points span {
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(8px);
}

/* ==========================================================
   INTERFACE FICTÍCIA DO SISTEMA
   ========================================================== */

.awa-v4-stage {
  --mx: 0deg;
  --my: 0deg;

  position: relative;
  min-width: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.awa-v4-app {
  position: relative;
  z-index: 2;
  min-height: 520px;
  overflow: hidden;
  color: #18364f;
  background: rgba(249, 252, 254, .98);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 23px;
  box-shadow:
    0 42px 100px rgba(0, 10, 26, .5),
    0 0 0 1px rgba(0, 190, 255, .10),
    0 0 58px rgba(0, 170, 230, .12);
  transform:
    rotateX(var(--my))
    rotateY(var(--mx));
  transition:
    transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.awa-v4-appbar {
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #fff;
  border-bottom: 1px solid #e2ebf1;
}

.awa-v4-brand,
.awa-v4-app-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.awa-v4-brandmark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      #ff5e00,
      #ff9c4d
    );
  border-radius: 10px;
  box-shadow: 0 9px 20px rgba(255, 102, 0, .22);
  font-size: 14px;
  font-weight: 800;
}

.awa-v4-brand strong,
.awa-v4-brand small {
  display: block;
}

.awa-v4-brand strong {
  color: #00234d;
  font-size: 10px;
}

.awa-v4-brand small {
  margin-top: 3px;
  color: #8aa0b1;
  font-size: 6px;
}

.awa-v4-app-actions > span {
  width: 23px;
  height: 23px;
  background: #edf4f7;
  border: 1px solid #dce7ed;
  border-radius: 7px;
}

.awa-v4-app-actions b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #00345f,
      #0089bc
    );
  border-radius: 50%;
  font-size: 7px;
}

.awa-v4-appbody {
  display: grid;
  min-height: 446px;
  grid-template-columns: 64px 1fr;
}

.awa-v4-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 22px 9px;
  background:
    linear-gradient(
      180deg,
      #00234d,
      #003e68
    );
}

.awa-v4-sidebar button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, .5);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
}

.awa-v4-sidebar button.is-active {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(0, 157, 208, .9),
      rgba(0, 101, 163, .9)
    );
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 0 22px rgba(0, 183, 235, .26);
}

.awa-v4-sidebar svg,
.awa-v4-float svg,
.awa-v4-module-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.awa-v4-sidebar button:first-child svg {
  fill: currentColor;
  stroke: none;
}

.awa-v4-workspace {
  min-width: 0;
  padding: 24px 20px;
  background:
    linear-gradient(
      145deg,
      #f2f7fa,
      #fbfdfe
    );
}

.awa-v4-work-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.awa-v4-work-head small,
.awa-v4-work-head strong {
  display: block;
}

.awa-v4-work-head small {
  color: #0087bd;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1px;
}

.awa-v4-work-head strong {
  margin-top: 4px;
  color: #00234d;
  font-size: 13px;
}

.awa-v4-work-head > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  color: #59758a;
  background: #fff;
  border: 1px solid #dce8ee;
  border-radius: 999px;
  font-size: 6px;
}

.awa-v4-work-head > span i,
.awa-v4-live i {
  width: 6px;
  height: 6px;
  background: #2fd17e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 209, 126, .12);
}

.awa-v4-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.awa-v4-kpis article {
  position: relative;
  padding: 13px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #deeaef;
  border-radius: 11px;
}

.awa-v4-kpis article::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -23px;
  width: 48px;
  height: 48px;
  background: rgba(0, 145, 196, .06);
  border-radius: 50%;
}

.awa-v4-kpis small,
.awa-v4-kpis strong,
.awa-v4-kpis em {
  display: block;
  font-style: normal;
}

.awa-v4-kpis small {
  color: #7890a2;
  font-size: 6px;
}

.awa-v4-kpis strong {
  margin-top: 5px;
  color: #00234d;
  font-size: 17px;
}

.awa-v4-kpis em {
  position: absolute;
  top: 12px;
  right: 11px;
  color: #15925c;
  font-size: 5.5px;
  font-weight: 700;
}

.awa-v4-panels {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 9px;
  margin-top: 10px;
}

.awa-v4-panels > article {
  min-width: 0;
  height: 235px;
  padding: 15px;
  background: #fff;
  border: 1px solid #deeaef;
  border-radius: 12px;
}

.awa-v4-panels header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.awa-v4-panels header strong {
  color: #00234d;
  font-size: 8px;
}

.awa-v4-panels header small,
.awa-v4-panels header span {
  color: #8095a5;
  font-size: 5.5px;
}

.awa-v4-chart {
  display: flex;
  height: 155px;
  align-items: flex-end;
  gap: 8px;
  padding: 15px 8px 0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 35px,
      #edf2f5 36px
    );
}

.awa-v4-chart span {
  flex: 1;
  height: var(--h);
  background:
    linear-gradient(
      180deg,
      #00b5e4,
      #0065a3
    );
  border-radius: 4px 4px 1px 1px;
  transform-origin: bottom;
  animation:
    awaV4Bars 1.2s
    cubic-bezier(.2, .8, .2, 1)
    both;
}

.awa-v4-chart span:nth-child(4) {
  background:
    linear-gradient(
      180deg,
      #ff9b4c,
      #ff6100
    );
  box-shadow: 0 0 18px rgba(255, 102, 0, .2);
}

.awa-v4-pipeline-footer {
  display: flex;
  justify-content: space-around;
  color: #92a5b3;
  font-size: 5px;
}

.awa-v4-flow {
  display: grid;
  align-content: start;
  gap: 8px;
}

.awa-flow-card {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 10px 8px;
  background: #f5f9fb;
  border: 1px solid #e4edf2;
  border-radius: 8px;
  transition:
    transform .3s ease,
    background .3s ease,
    border .3s ease;
}

.awa-flow-card.is-active {
  background: #edf8fc;
  border-color: #bfe4f2;
  transform: translateX(-3px);
}

.awa-flow-card > i {
  width: 6px;
  height: 6px;
  background: #0087bd;
  border-radius: 50%;
}

.awa-flow-card > i.orange {
  background: #ff6b11;
}

.awa-flow-card > i.green {
  background: #26b971;
}

.awa-flow-card b,
.awa-flow-card small {
  display: block;
}

.awa-flow-card b {
  color: #173752;
  font-size: 5.8px;
}

.awa-flow-card small {
  margin-top: 2px;
  color: #8da0af;
  font-size: 4.8px;
}

.awa-flow-card em {
  color: #abc0ce;
  font-size: 5px;
  font-style: normal;
}

/* Cards flutuantes */

.awa-v4-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: #173752;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 12px;
  box-shadow:
    0 18px 45px rgba(0, 11, 26, .28),
    0 0 25px rgba(0, 180, 230, .10);
  backdrop-filter: blur(12px);
  animation:
    awaV4Float 4.6s
    ease-in-out infinite;
}

.awa-v4-float-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #003c6c,
      #00a6d8
    );
  border-radius: 9px;
}

.awa-v4-float-icon.orange {
  background:
    linear-gradient(
      135deg,
      #ff5f00,
      #ff9c4d
    );
}

.awa-v4-float small,
.awa-v4-float strong {
  display: block;
}

.awa-v4-float small {
  color: #0085b8;
  font-size: 5.2px;
  font-weight: 800;
  letter-spacing: .6px;
}

.awa-v4-float strong {
  margin-top: 3px;
  color: #00234d;
  font-size: 7px;
}

.awa-v4-float-crm {
  top: 93px;
  left: -24px;
}

.awa-v4-float-ai {
  right: -21px;
  bottom: 54px;
  animation-delay: -2.1s;
}

.awa-v4-live {
  position: absolute;
  z-index: 4;
  top: -13px;
  right: 21px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .8);
  background: rgba(0, 21, 46, .78);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(0, 190, 255, .15);
  backdrop-filter: blur(10px);
  font-size: 6px;
}

/* Órbitas decorativas */

.awa-v4-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(0, 198, 255, .22);
  border-radius: 50%;
  pointer-events: none;
}

.awa-v4-orbit-one {
  top: -55px;
  right: -150px;
  width: 620px;
  height: 620px;
  animation: awaV4Spin 24s linear infinite;
}

.awa-v4-orbit-two {
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-color: rgba(255, 126, 43, .17);
  animation: awaV4Spin 18s linear infinite reverse;
}

.awa-v4-orbit::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 16%;
  width: 8px;
  height: 8px;
  background: #00c9ff;
  border-radius: 50%;
  box-shadow: 0 0 18px #00c9ff;
}

.awa-v4-orbit-two::before {
  background: #ff7a25;
  box-shadow: 0 0 18px #ff7a25;
}

/* ==========================================================
   VITRINE DE APLICAÇÕES
   ========================================================== */

.awa-v4-showcase {
  position: relative;
  padding: 0 0 100px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #eef5f9 0,
      #fff 72%
    );
}

.awa-v4-marquee {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      #00325e,
      #007cae,
      #00325e
    );
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.awa-v4-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 25px;
  padding: 14px 0;
  animation: awaV4Marquee 32s linear infinite;
}

.awa-v4-marquee span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.awa-v4-marquee i {
  width: 5px;
  height: 5px;
  background: #ff7620;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 118, 32, .55);
}

.awa-v4-showcase-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: end;
  gap: 65px;
  padding-top: 88px;
}

.awa-v4-showcase-head h2 {
  max-width: 710px;
  margin: 17px 0 0;
  color: #00234d;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1.6px;
}

.awa-v4-showcase-head > p {
  margin: 0 0 4px;
  color: #657b8f;
  font-size: 12px;
  line-height: 1.8;
}

.awa-v4-screen-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  margin-top: 48px;
}

.awa-v4-mini-screen {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e6ed;
  border-radius: 19px;
  box-shadow: 0 22px 55px rgba(0, 35, 77, .09);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.awa-v4-mini-screen:hover {
  border-color: rgba(0, 126, 177, .3);
  box-shadow: 0 29px 65px rgba(0, 35, 77, .14);
  transform: translateY(-6px);
}

/* CRM em formato Kanban */

.awa-v4-screen-main {
  grid-row: 1 / 3;
  min-height: 455px;
  padding: 0 22px 25px;
}

.awa-v4-screen-main > header {
  display: flex;
  height: 59px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3ebf0;
}

.awa-v4-screen-main > header > span {
  display: flex;
  gap: 5px;
}

.awa-v4-screen-main > header i {
  width: 7px;
  height: 7px;
  background: #dbe5eb;
  border-radius: 50%;
}

.awa-v4-screen-main > header i:first-child {
  background: #ff7620;
}

.awa-v4-screen-main > header small {
  color: #668198;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.awa-v4-screen-main > header b {
  color: #9aafbd;
  font-size: 8px;
  letter-spacing: 2px;
}

.awa-v4-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 20px;
}

.awa-v4-kanban > div {
  min-width: 0;
  padding: 12px;
  background: #f3f7fa;
  border: 1px solid #e1eaf0;
  border-radius: 11px;
}

.awa-v4-kanban > div > small {
  display: block;
  margin-bottom: 13px;
  color: #59778e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .5px;
}

.awa-v4-kanban > div > span {
  display: block;
  margin-top: 8px;
  padding: 13px 10px;
  background: #fff;
  border: 1px solid #e0e9ee;
  border-radius: 9px;
  box-shadow: 0 6px 15px rgba(0, 35, 77, .04);
  transition: transform .22s ease;
}

.awa-v4-kanban > div > span:hover {
  transform: translateY(-3px);
}

.awa-v4-kanban span.hot {
  border-left: 3px solid #ff6a0b;
}

.awa-v4-kanban b,
.awa-v4-kanban em {
  display: block;
}

.awa-v4-kanban b {
  color: #173752;
  font-size: 7px;
}

.awa-v4-kanban em {
  margin-top: 5px;
  color: #8095a5;
  font-size: 5.5px;
  font-style: normal;
}

/* Cards laterais */

.awa-v4-screen-side {
  min-height: 220px;
  padding: 22px;
}

.awa-v4-screen-side::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -75px;
  width: 140px;
  height: 140px;
  background: rgba(0, 130, 180, .05);
  border-radius: 50%;
}

.awa-v4-screen-side > header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.awa-v4-module-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #00345f,
      #00a4d4
    );
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(0, 105, 165, .18);
}

.awa-v4-module-icon.orange {
  background:
    linear-gradient(
      135deg,
      #ff5e00,
      #ff9b4d
    );
}

.awa-v4-screen-side header small,
.awa-v4-screen-side header strong {
  display: block;
}

.awa-v4-screen-side header small {
  color: #0084b7;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .8px;
}

.awa-v4-screen-side header strong {
  margin-top: 4px;
  color: #00234d;
  font-size: 11px;
}

.awa-v4-donut {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 20px auto 0;
  background:
    conic-gradient(
      #008dc1 0 78%,
      #e6eef3 78%
    );
  border-radius: 50%;
  animation: awaV4Pulse 4s ease-in-out infinite;
}

.awa-v4-donut::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  background: #fff;
  border-radius: 50%;
}

.awa-v4-donut > span {
  position: relative;
  z-index: 1;
  text-align: center;
}

.awa-v4-donut strong,
.awa-v4-donut small {
  display: block;
}

.awa-v4-donut strong {
  color: #00234d;
  font-size: 15px;
}

.awa-v4-donut small {
  color: #8095a5;
  font-size: 5px;
}

.awa-v4-statline {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.awa-v4-statline > span {
  width: 27px;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      #ff6100,
      #ff9c4d
    );
  border-radius: 999px;
}

.awa-v4-statline b,
.awa-v4-statline small {
  display: block;
}

.awa-v4-statline b {
  color: #173752;
  font-size: 6px;
}

.awa-v4-statline small {
  color: #8aa0b0;
  font-size: 5px;
}

.awa-v4-screen-orange {
  background:
    linear-gradient(
      145deg,
      #fff,
      #fff8f3
    );
}

.awa-v4-automation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 31px;
}

.awa-v4-automation-flow span {
  padding: 8px 9px;
  color: #345b74;
  background: #fff;
  border: 1px solid #dfe9ef;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 35, 77, .05);
  font-size: 5.5px;
  font-weight: 700;
}

.awa-v4-automation-flow span:nth-of-type(2) {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #ff6100,
      #ff9344
    );
  border-color: transparent;
}

.awa-v4-automation-flow i {
  position: relative;
  width: 18px;
  height: 1px;
  background: #cddce5;
}

.awa-v4-automation-flow i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 4px solid #9eb5c4;
}

.awa-v4-automation-status {
  position: absolute;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #748ca0;
  font-size: 5.5px;
}

.awa-v4-automation-status i {
  width: 6px;
  height: 6px;
  background: #2bc378;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43, 195, 120, .1);
}

/* ==========================================================
   ACABAMENTO DAS SEÇÕES EXISTENTES
   ========================================================== */

.awa-app-card {
  background:
    linear-gradient(
      155deg,
      #fff 50%,
      #f5f9fb
    );
  border-color: #d9e6ed;
  box-shadow: 0 18px 45px rgba(0, 35, 77, .075);
}

.awa-app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  width: 46px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      #0065a3,
      #00a4d4
    );
  border-radius: 0 0 8px 8px;
  transition: width .28s ease;
}

.awa-app-card:nth-child(even)::before {
  background:
    linear-gradient(
      90deg,
      #ff6100,
      #ff9c4d
    );
}

.awa-app-card:hover::before {
  width: calc(100% - 54px);
}

.awa-app-icon {
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.awa-app-card:hover .awa-app-icon {
  box-shadow: 0 12px 26px rgba(0, 105, 165, .22);
  transform: rotate(-5deg) scale(1.07);
}

.awa-advanced-grid article {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}

.awa-advanced-grid article::after {
  content: "";
  position: absolute;
  right: -45%;
  bottom: -70%;
  left: 15%;
  height: 210px;
  background:
    radial-gradient(
      circle,
      rgba(0, 198, 255, .16),
      transparent 68%
    );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.awa-advanced-grid article:nth-child(2)::after {
  background:
    radial-gradient(
      circle,
      rgba(255, 118, 32, .18),
      transparent 68%
    );
}

.awa-advanced-grid article:hover {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(117, 224, 255, .32);
  box-shadow:
    0 20px 55px rgba(0, 13, 31, .24),
    inset 0 1px rgba(255, 255, 255, .1);
}

.awa-advanced-grid article:hover::after {
  opacity: 1;
}

.awa-resource-grid article {
  position: relative;
  transition:
    background .2s ease,
    transform .2s ease;
}

.awa-resource-grid article:hover {
  z-index: 1;
  background: #f7fbfd;
  box-shadow: 0 12px 28px rgba(0, 35, 77, .08);
  transform: translateY(-3px);
}

.awa-process-grid {
  position: relative;
}

.awa-process-grid::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 8%;
  left: 8%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      #0065a3,
      #00a4d4,
      #ff7a25,
      #0065a3
    );
  opacity: .2;
}

.awa-process-grid article {
  background:
    linear-gradient(
      155deg,
      #fff,
      #f4f8fb
    );
}

/* Entrada das seções */

[data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(27px) scale(.985);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(.2, .8, .2, 1),
    filter 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

/* ==========================================================
   ANIMAÇÕES
   ========================================================== */

@keyframes awaV4Glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-25px, 18px, 0) scale(1.1);
  }
}

@keyframes awaV4Spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

@keyframes awaV4Bars {
  from {
    opacity: .35;
    transform: scaleY(.05);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes awaV4Marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes awaV4Pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 141, 193, .05);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(0, 141, 193, .07);
  }
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1080px) {
  .awa-hero-shell {
    width: min(900px, calc(100% - 48px));
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 85px 0 95px;
  }

  .awa-hero-v4 .awa-hero-copy {
    max-width: 760px;
  }

  .awa-v4-stage {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .awa-v4-showcase-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .awa-v4-showcase-head > p {
    max-width: 700px;
  }

  .awa-process-grid::before {
    display: none;
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 760px) {
  .awa-hero-v4 {
    min-height: auto;
    padding-top: 70px;
  }

  .awa-hero-shell {
    width: min(100% - 30px, 700px);
    min-height: auto;
    gap: 55px;
    padding: 67px 0 78px;
  }

  .awa-hero-v4 h1 {
    font-size: clamp(39px, 11vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
  }

  .awa-hero-v4 .awa-hero-description {
    font-size: 12px;
    line-height: 1.75;
  }

  .awa-v4-stage {
    padding: 0 3px;
  }

  .awa-v4-app {
    min-height: 450px;
    border-radius: 18px;
  }

  .awa-v4-appbar {
    height: 61px;
    padding: 0 14px;
  }

  .awa-v4-app-actions > span {
    display: none;
  }

  .awa-v4-appbody {
    min-height: 389px;
    grid-template-columns: 49px 1fr;
  }

  .awa-v4-sidebar {
    padding: 17px 7px;
  }

  .awa-v4-sidebar button {
    width: 32px;
    height: 32px;
  }

  .awa-v4-workspace {
    padding: 18px 11px;
  }

  .awa-v4-work-head > span {
    display: none;
  }

  .awa-v4-kpis {
    gap: 5px;
  }

  .awa-v4-kpis article {
    padding: 10px 7px;
  }

  .awa-v4-kpis em {
    display: none;
  }

  .awa-v4-kpis strong {
    font-size: 13px;
  }

  .awa-v4-panels {
    grid-template-columns: 1fr;
  }

  .awa-v4-panels > article {
    height: 205px;
  }

  .awa-v4-flow {
    display: none;
  }

  .awa-v4-chart {
    height: 130px;
  }

  .awa-v4-float {
    padding: 8px 9px;
  }

  .awa-v4-float-crm {
    top: 78px;
    left: -5px;
  }

  .awa-v4-float-ai {
    right: -4px;
    bottom: 30px;
  }

  .awa-v4-live {
    right: 10px;
  }

  .awa-v4-showcase {
    padding-bottom: 78px;
  }

  .awa-v4-showcase-head {
    padding-top: 70px;
  }

  .awa-v4-screen-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 35px;
  }

  .awa-v4-screen-main {
    min-height: 385px;
    grid-row: auto;
  }

  .awa-v4-screen-side {
    min-height: 225px;
  }

  .awa-v4-kanban {
    gap: 5px;
  }

  .awa-v4-kanban > div {
    padding: 8px 5px;
  }

  .awa-v4-kanban > div > span {
    padding: 10px 6px;
  }
}

@media (max-width: 480px) {
  .awa-hero-shell {
    width: calc(100% - 24px);
    padding-top: 54px;
  }

  .awa-hero-v4 h1 {
    font-size: 37px;
    letter-spacing: -1.35px;
  }

  .awa-hero-v4 .awa-hero-actions {
    display: grid;
  }

  .awa-hero-v4 .awa-button {
    width: 100%;
  }

  .awa-hero-v4 .awa-hero-points {
    display: grid;
  }

  .awa-v4-brand strong {
    font-size: 8px;
  }

  .awa-v4-app {
    min-height: 420px;
  }

  .awa-v4-appbody {
    min-height: 359px;
  }

  .awa-v4-workspace {
    padding: 16px 8px;
  }

  .awa-v4-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .awa-v4-kpis article:nth-child(3) {
    display: none;
  }

  .awa-v4-chart {
    gap: 5px;
  }

  .awa-v4-float-crm {
    top: 70px;
  }

  .awa-v4-float-ai {
    bottom: 22px;
  }

  .awa-v4-float strong {
    font-size: 6.2px;
  }

  .awa-v4-float-icon {
    width: 26px;
    height: 26px;
  }

  .awa-v4-showcase-head h2 {
    font-size: 31px;
  }

  .awa-v4-screen-main {
    min-height: 355px;
    padding-inline: 12px;
  }

  .awa-v4-kanban {
    grid-template-columns: 1fr 1fr;
  }

  .awa-v4-kanban > div:nth-child(3) {
    display: none;
  }

  .awa-v4-marquee-track {
    gap: 18px;
  }

  .awa-v4-screen-side {
    padding: 19px;
  }
}

/* Respeita configurações de acessibilidade */

@media (prefers-reduced-motion: reduce) {
  .awa-v4-glow,
  .awa-v4-orbit,
  .awa-v4-float,
  .awa-v4-marquee-track,
  .awa-v4-chart span,
  .awa-v4-donut {
    animation: none !important;
  }

  .awa-v4-app {
    transform: none !important;
  }
}

/* AVANTHY APPS FINAL V4 — FIM */

