:root {
  --ao-navy: #071b3a;
  --ao-navy-2: #0b2a55;
  --ao-navy-3: #123966;
  --ao-blue: #2f5f98;
  --ao-sky: #dce8f5;
  --ao-bg: #f3f4f6;
  --ao-bg-2: #e9edf2;
  --ao-white: #ffffff;
  --ao-text: #111827;
  --ao-muted: #667085;
  --ao-muted-2: #8a94a6;
  --ao-border: #d8dee8;
  --ao-soft-border: #edf0f4;
  --ao-shadow: 0 20px 50px rgba(7, 27, 58, 0.08);
  --ao-shadow-strong: 0 28px 80px rgba(7, 27, 58, 0.16);
  --ao-transition: 280ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--ao-bg);
  color: var(--ao-text);
  overflow-x: hidden;
  font-weight: 400;
}

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

a:hover {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* TOP BAR */

.ao-topbar {
  width: 100%;
  background: var(--ao-navy);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  z-index: 1002;
}

.ao-topbar-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ao-topbar-left,
.ao-topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ao-topbar span,
.ao-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ao-topbar i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.ao-topbar a {
  transition: color var(--ao-transition);
}

.ao-topbar a:hover {
  color: var(--ao-white);
}

/* HEADER */

.ao-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ao-soft-border);
  transition: box-shadow var(--ao-transition), background var(--ao-transition);
}

.ao-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(7, 27, 58, 0.08);
}

.ao-header .navbar {
  min-height: 82px;
  padding: 0;
}

.ao-brand,
.ao-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ao-brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-size: 1.15rem;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.18);
}

.ao-brand-text {
  display: grid;
  line-height: 1.08;
}

.ao-brand-text strong {
  color: var(--ao-navy);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ao-brand-text small {
  color: var(--ao-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ao-nav-links {
  gap: 4px;
}

.ao-nav-links .nav-link {
  color: var(--ao-navy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 11px 13px !important;
  border-radius: 999px;
  transition: color var(--ao-transition), background var(--ao-transition);
}

.ao-nav-links .nav-link:hover,
.ao-nav-links .nav-link.active,
.ao-nav-links .show > .nav-link {
  color: var(--ao-blue);
  background: #f2f5f9;
}

.ao-dropdown {
  border: 1px solid var(--ao-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--ao-shadow);
  min-width: 280px;
}

.ao-dropdown .dropdown-item {
  border-radius: 12px;
  padding: 11px 13px;
  color: var(--ao-navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 11px;
}

.ao-dropdown .dropdown-item i {
  color: var(--ao-blue);
  width: 22px;
}

.ao-dropdown .dropdown-item:hover {
  background: #f2f5f9;
  color: var(--ao-blue);
}

.ao-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ao-menu-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ao-border);
  border-radius: 12px;
  color: var(--ao-navy);
  box-shadow: none !important;
}

.ao-menu-btn i {
  font-size: 1.15rem;
}

/* BUTTONS */

.ao-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform var(--ao-transition), background var(--ao-transition), color var(--ao-transition), box-shadow var(--ao-transition);
}

.ao-btn-primary {
  background: var(--ao-navy);
  color: var(--ao-white);
  box-shadow: 0 14px 32px rgba(7, 27, 58, 0.16);
}

.ao-btn-primary:hover {
  background: var(--ao-blue);
  color: var(--ao-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(47, 95, 152, 0.22);
}

.ao-btn-light {
  background: var(--ao-white);
  color: var(--ao-navy);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.ao-btn-light:hover {
  background: var(--ao-sky);
  color: var(--ao-navy);
  transform: translateY(-2px);
}

/* COMMON */

.ao-section-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #edf2f8;
  color: var(--ao-navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ao-section-tag i {
  color: var(--ao-blue);
}

.ao-section-heading {
  text-align: left;
  max-width: 900px;
  margin: 0 0 54px;
}

.ao-section-heading .ao-section-tag {
  margin: 0;
}

.ao-section-heading h2 {
  margin-top: 18px;
  color: var(--ao-navy);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.ao-section-heading p {
  margin-top: 18px;
  color: var(--ao-muted);
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

/* HOME PAGE HERO */

.ao-home-hero {
  position: relative;
  padding: 105px 0 90px;
  background: var(--ao-bg);
  overflow: hidden;
}

.ao-home-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 58%;
  background: linear-gradient(180deg, #ffffff 0%, var(--ao-bg) 100%);
  pointer-events: none;
}

.ao-hero-bg-shape {
  display: none;
}

.ao-hero-content {
  position: relative;
  z-index: 2;
}

.ao-hero-content h1 {
  margin-top: 20px;
  color: var(--ao-navy);
  font-size: clamp(2.8rem, 5.1vw, 5.8rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
  max-width: 760px;
}

.ao-hero-content p {
  margin-top: 24px;
  color: var(--ao-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 400;
  max-width: 680px;
}

.ao-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ao-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ao-navy);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color var(--ao-transition), transform var(--ao-transition);
}

.ao-hero-link i {
  color: var(--ao-blue);
  font-size: 1.15rem;
}

.ao-hero-link:hover {
  color: var(--ao-blue);
  transform: translateX(4px);
}

.ao-hero-trust-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ao-trust-avatar-group {
  display: flex;
  align-items: center;
}

.ao-trust-avatar-group img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ao-white);
  margin-left: -12px;
  box-shadow: 0 10px 22px rgba(7, 27, 58, 0.14);
}

.ao-trust-avatar-group img:first-child {
  margin-left: 0;
}

.ao-hero-trust-row strong {
  display: block;
  color: var(--ao-navy);
  font-weight: 600;
}

.ao-hero-trust-row span {
  display: block;
  color: var(--ao-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.ao-hero-visual {
  position: relative;
  min-height: 640px;
  z-index: 2;
}

.ao-hero-main-image {
  position: absolute;
  inset: 22px 0 22px 58px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ao-shadow-strong);
  border: 0;
}

.ao-hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ao-hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 27, 58, 0.48)),
    linear-gradient(90deg, rgba(7, 27, 58, 0.18), transparent);
}

.ao-floating-card,
.ao-floating-rating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--ao-border);
  border-radius: 4px;
  box-shadow: var(--ao-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ao-floating-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
}

.ao-floating-card i {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-size: 1.05rem;
}

.ao-floating-card strong,
.ao-floating-rating-card strong {
  display: block;
  color: var(--ao-navy);
  font-weight: 600;
}

.ao-floating-card span,
.ao-floating-rating-card span {
  display: block;
  color: var(--ao-muted);
  font-weight: 400;
  font-size: 0.84rem;
}

.ao-floating-card-one {
  left: 0;
  top: 110px;
  animation: aoFloat 4.5s ease-in-out infinite;
}

.ao-floating-card-two {
  right: 0;
  bottom: 160px;
  animation: aoFloat 4.8s ease-in-out infinite;
}

.ao-floating-rating-card {
  left: 28px;
  bottom: 55px;
  padding: 18px;
  width: min(320px, 86%);
  animation: aoFloat 5.1s ease-in-out infinite;
}

.ao-rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ao-blue);
  margin-bottom: 10px;
}

.ao-rating-stars.big {
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

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

/* MOVING RIBBON */

.ao-ribbon-section {
  overflow: hidden;
  background: var(--ao-navy);
  color: var(--ao-white);
  padding: 14px 0;
}

.ao-ribbon-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: aoRibbonMove 32s linear infinite;
}

.ao-ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.ao-ribbon-item i {
  color: rgba(255, 255, 255, 0.92);
}

@keyframes aoRibbonMove {
  from {
    transform: translateX(0);
  }

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

/* INTRO / SECTIONS */

.ao-intro-section,
.ao-services-section,
.ao-industries-section,
.ao-process-section,
.ao-testimonials-section {
  padding: 105px 0;
}

.ao-intro-section,
.ao-process-section {
  background: var(--ao-white);
}

.ao-services-section,
.ao-industries-section {
  background: var(--ao-bg);
}

.ao-testimonials-section {
  background: var(--ao-bg-2);
}

.ao-intro-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--ao-shadow);
  min-height: 560px;
}

.ao-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.ao-intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 27, 58, 0.58));
}

.ao-intro-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--ao-shadow);
}

.ao-intro-badge i {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-size: 1.1rem;
}

.ao-intro-badge span {
  color: var(--ao-navy);
  font-weight: 600;
  line-height: 1.35;
}

.ao-intro-content h2,
.ao-process-content h2 {
  margin-top: 18px;
  color: var(--ao-navy);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.ao-intro-content p,
.ao-process-content p {
  margin-top: 20px;
  color: var(--ao-muted);
  line-height: 1.8;
  font-weight: 400;
  font-size: 1rem;
}

.ao-intro-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ao-intro-point {
  display: flex;
  gap: 13px;
  padding: 18px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--ao-border);
}

.ao-intro-point i {
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-size: 0.8rem;
}

.ao-intro-point strong {
  display: block;
  color: var(--ao-navy);
  font-weight: 600;
  margin-bottom: 5px;
}

.ao-intro-point span {
  display: block;
  color: var(--ao-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 400;
}

/* SERVICES */

.ao-service-card {
  height: 100%;
  padding: 28px;
  border-radius: 4px;
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.06);
  transition: transform var(--ao-transition), box-shadow var(--ao-transition), border-color var(--ao-transition);
}

.ao-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ao-shadow);
  border-color: #bac6d6;
}

.ao-service-card.featured {
  background: var(--ao-navy);
  border-color: var(--ao-navy);
  color: var(--ao-white);
}

.ao-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.ao-service-card.featured .ao-service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ao-white);
}

.ao-service-card h3 {
  color: var(--ao-navy);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ao-service-card.featured h3 {
  color: var(--ao-white);
}

.ao-service-card p {
  color: var(--ao-muted);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 22px;
}

.ao-service-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.ao-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ao-blue);
  font-weight: 600;
  transition: color var(--ao-transition), transform var(--ao-transition);
}

.ao-service-card.featured a {
  color: var(--ao-white);
}

.ao-service-card a:hover {
  color: var(--ao-navy);
  transform: translateX(4px);
}

.ao-service-card.featured a:hover {
  color: var(--ao-sky);
}

/* TRUST SECTION */

.ao-trust-section {
  padding: 100px 0;
  background: var(--ao-white);
}

.ao-trust-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 6px;
  background: var(--ao-navy);
  border: 1px solid var(--ao-navy);
  box-shadow: var(--ao-shadow-strong);
}

.ao-trust-left h2 {
  margin-top: 18px;
  color: var(--ao-white);
  font-size: clamp(2rem, 3.3vw, 3.9rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.ao-trust-left p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-weight: 400;
  max-width: 720px;
}

.ao-trust-card .ao-section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ao-white);
}

.ao-trust-card .ao-section-tag i {
  color: var(--ao-white);
}

.ao-trust-rating-box {
  padding: 28px;
  border-radius: 4px;
  background: var(--ao-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--ao-shadow);
  text-align: center;
}

.ao-trustpilot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ao-navy);
  background: #edf2f8;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.ao-trustpilot-label i {
  color: var(--ao-blue);
}

.ao-rating-number {
  color: var(--ao-navy);
  font-size: 4.1rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.ao-rating-number span {
  font-size: 1.25rem;
  color: var(--ao-muted);
  letter-spacing: 0;
}

.ao-trust-rating-box p {
  margin-top: 12px;
  color: var(--ao-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* INDUSTRIES */

.ao-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ao-industry-card {
  position: relative;
  min-height: 430px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.1);
  background: var(--ao-navy);
  transition: transform var(--ao-transition), box-shadow var(--ao-transition);
}

.ao-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ao-shadow-strong);
}

.ao-industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.ao-industry-card:hover img {
  transform: scale(1.05);
}

.ao-industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.1), rgba(7, 27, 58, 0.88)),
    linear-gradient(90deg, rgba(7, 27, 58, 0.24), transparent);
}

.ao-industry-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--ao-white);
}

.ao-industry-card i {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-white);
  color: var(--ao-navy);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.ao-industry-card h3 {
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ao-industry-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* PROCESS */

.ao-process-content .ao-btn {
  margin-top: 28px;
}

.ao-process-steps {
  display: grid;
  gap: 16px;
}

.ao-process-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--ao-border);
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.05);
  transition: transform var(--ao-transition), box-shadow var(--ao-transition);
}

.ao-process-step:hover {
  transform: translateX(6px);
  box-shadow: var(--ao-shadow);
}

.ao-process-step span {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  font-weight: 600;
  font-size: 1rem;
}

.ao-process-step h3 {
  color: var(--ao-navy);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.ao-process-step p {
  color: var(--ao-muted);
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

/* TESTIMONIALS */

.ao-testimonial-card {
  height: 100%;
  padding: 28px;
  border-radius: 4px;
  background: var(--ao-white);
  border: 1px solid var(--ao-border);
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.06);
  transition: transform var(--ao-transition), box-shadow var(--ao-transition);
}

.ao-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ao-shadow);
}

.ao-testimonial-card.highlighted {
  background: var(--ao-navy);
  border-color: var(--ao-navy);
}

.ao-testimonial-card p {
  color: var(--ao-navy);
  line-height: 1.75;
  font-weight: 400;
  font-size: 1rem;
  margin: 14px 0 24px;
}

.ao-testimonial-card.highlighted p {
  color: rgba(255, 255, 255, 0.82);
}

.ao-testimonial-card.highlighted .ao-rating-stars {
  color: var(--ao-white);
}

.ao-testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ao-testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.ao-testimonial-author strong {
  display: block;
  color: var(--ao-navy);
  font-weight: 600;
}

.ao-testimonial-card.highlighted .ao-testimonial-author strong {
  color: var(--ao-white);
}

.ao-testimonial-author span {
  display: block;
  color: var(--ao-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.ao-testimonial-card.highlighted .ao-testimonial-author span {
  color: rgba(255, 255, 255, 0.62);
}

/* FINAL HOME CTA */

.ao-home-final-cta {
  padding: 105px 0 0;
  background: var(--ao-bg);
}

.ao-home-final-card {
  padding: clamp(34px, 6vw, 70px);
  border-radius: 6px;
  text-align: center;
  background: var(--ao-navy);
  color: var(--ao-white);
  box-shadow: var(--ao-shadow-strong);
  overflow: hidden;
  position: relative;
}

.ao-home-final-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.ao-home-final-card > * {
  position: relative;
  z-index: 2;
}

.ao-home-final-card .ao-section-tag {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ao-white);
}

.ao-home-final-card .ao-section-tag i {
  color: var(--ao-white);
}

.ao-home-final-card h2 {
  max-width: 950px;
  margin: 20px auto 0;
  font-size: clamp(2rem, 3.8vw, 4.3rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.ao-home-final-card p {
  max-width: 760px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  font-weight: 400;
}

/* FOOTER CTA */

.ao-footer-cta {
  padding: 90px 0 0;
  background: var(--ao-bg);
}

.ao-footer-cta-card {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 6px;
  background: var(--ao-navy);
  color: var(--ao-white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--ao-shadow-strong);
  overflow: hidden;
}

.ao-footer-cta-card::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.ao-footer-cta-card > * {
  position: relative;
  z-index: 2;
}

.ao-footer-cta-card .ao-section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ao-white);
}

.ao-footer-cta-card .ao-section-tag i {
  color: var(--ao-white);
}

.ao-footer-cta-card h2 {
  margin-top: 16px;
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.ao-footer-cta-card p {
  margin-top: 16px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 400;
  line-height: 1.75;
}

/* FOOTER */

.ao-footer {
  margin-top: -42px;
  padding: 130px 0 28px;
  background: #05162f;
  color: var(--ao-white);
}

.ao-footer .ao-brand-icon {
  background: var(--ao-white);
  color: var(--ao-navy);
}

.ao-footer .ao-brand-text strong {
  color: var(--ao-white);
}

.ao-footer .ao-brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

.ao-footer-about {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 400;
  max-width: 440px;
}

.ao-footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--ao-white);
}

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

.ao-footer-links a,
.ao-footer-contact a,
.ao-footer-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
  line-height: 1.5;
  transition: color var(--ao-transition), transform var(--ao-transition);
}

.ao-footer-links a:hover,
.ao-footer-contact a:hover {
  color: var(--ao-white);
}

.ao-footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.ao-footer-contact i {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 3px;
  width: 18px;
}

.ao-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.ao-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ao-white);
  transition: background var(--ao-transition), transform var(--ao-transition), color var(--ao-transition);
}

.ao-footer-socials a:hover {
  background: var(--ao-white);
  color: var(--ao-navy);
  transform: translateY(-3px);
}

.ao-footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ao-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.ao-footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ao-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  transition: color var(--ao-transition);
}

.ao-footer-bottom a:hover {
  color: var(--ao-white);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .ao-nav-links {
    gap: 2px;
  }

  .ao-nav-links .nav-link {
    padding: 10px 9px !important;
  }

  .ao-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ao-topbar {
    display: none;
  }

  .ao-header .navbar {
    min-height: 76px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 6px;
    background: var(--ao-white);
    border: 1px solid var(--ao-border);
    box-shadow: var(--ao-shadow);
  }

  .ao-nav-links {
    gap: 4px;
  }

  .ao-nav-links .nav-link {
    border-radius: 6px;
    padding: 13px 14px !important;
  }

  .ao-nav-actions {
    margin-top: 14px;
    align-items: stretch;
  }

  .ao-nav-actions .ao-btn {
    width: 100%;
  }

  .ao-home-hero {
    padding: 88px 0 70px;
  }

  .ao-hero-content h1 {
    font-size: clamp(2.6rem, 9vw, 5rem);
  }

  .ao-hero-visual {
    min-height: 600px;
  }

  .ao-hero-main-image {
    inset: 20px 0 20px 0;
  }

  .ao-floating-card-one {
    left: 20px;
  }

  .ao-floating-card-two {
    right: 20px;
  }

  .ao-intro-grid {
    grid-template-columns: 1fr;
  }

  .ao-trust-card {
    grid-template-columns: 1fr;
  }

  .ao-trust-rating-box {
    max-width: 420px;
  }

  .ao-footer-cta-card {
    grid-template-columns: 1fr;
  }

  .ao-footer {
    margin-top: -30px;
    padding-top: 110px;
  }

  .ao-process-step:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {
  .ao-intro-section,
  .ao-services-section,
  .ao-industries-section,
  .ao-process-section,
  .ao-testimonials-section,
  .ao-trust-section {
    padding: 78px 0;
  }

  .ao-section-heading {
    margin-bottom: 42px;
  }

  .ao-hero-trust-row {
    align-items: flex-start;
  }

  .ao-hero-visual {
    min-height: 560px;
  }

  .ao-floating-card {
    max-width: calc(100% - 40px);
  }

  .ao-floating-card-two {
    bottom: 150px;
  }

  .ao-floating-rating-card {
    left: 20px;
    bottom: 40px;
  }

  .ao-industry-grid {
    grid-template-columns: 1fr;
  }

  .ao-industry-card {
    min-height: 360px;
  }

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

  .ao-process-step span {
    width: 60px;
    height: 60px;
  }
}

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

  .ao-brand-icon {
    width: 44px;
    height: 44px;
  }

  .ao-brand-text strong {
    font-size: 1.05rem;
  }

  .ao-brand-text small {
    font-size: 0.62rem;
  }

  .ao-btn,
  .ao-hero-link {
    width: 100%;
  }

  .ao-hero-actions {
    align-items: stretch;
  }

  .ao-home-hero {
    padding: 70px 0 58px;
  }

  .ao-hero-content h1 {
    letter-spacing: -0.045em;
  }

  .ao-hero-content p {
    font-size: 0.98rem;
  }

  .ao-hero-trust-row {
    flex-direction: column;
  }

  .ao-hero-visual {
    min-height: 520px;
  }

  .ao-hero-main-image {
    border-radius: 6px;
  }

  .ao-floating-card {
    padding: 13px;
  }

  .ao-floating-card i {
    width: 40px;
    height: 40px;
  }

  .ao-floating-card-one {
    top: 70px;
  }

  .ao-floating-card-two {
    bottom: 160px;
  }

  .ao-intro-image,
  .ao-intro-image img {
    min-height: 430px;
  }

  .ao-intro-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .ao-intro-content h2,
  .ao-process-content h2,
  .ao-section-heading h2,
  .ao-trust-left h2,
  .ao-home-final-card h2 {
    letter-spacing: -0.035em;
  }

  .ao-rating-number {
    font-size: 3.6rem;
  }

  .ao-footer-cta {
    padding-top: 70px;
  }

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