:root {
  --aw-blue-950: #06213f;
  --aw-blue-900: #08345f;
  --aw-blue-800: #0b4f8a;
  --aw-blue-700: #1168ad;
  --aw-blue-100: #e8f4ff;

  --aw-green-800: #087448;
  --aw-green-700: #0c8f5a;
  --aw-green-600: #10a66a;
  --aw-green-100: #e8fff4;

  --aw-neutral-950: #111827;
  --aw-neutral-800: #1f2937;
  --aw-neutral-700: #374151;
  --aw-neutral-600: #4b5563;
  --aw-neutral-500: #6b7280;
  --aw-neutral-300: #d1d5db;
  --aw-neutral-200: #e5e7eb;
  --aw-neutral-100: #f5f7fb;

  --aw-white: #ffffff;

  --aw-shadow: 0 24px 70px rgba(8, 52, 95, 0.14);
  --aw-shadow-soft: 0 14px 36px rgba(8, 52, 95, 0.10);
  --aw-shadow-green: 0 18px 40px rgba(12, 143, 90, 0.28);

  --aw-radius-xl: 30px;
  --aw-radius-lg: 22px;
  --aw-radius-md: 16px;
  --aw-radius-sm: 12px;

  --aw-header-height: 82px;
  --aw-container-safe: min(100% - 32px, 1140px);

  --aw-transition-fast: 160ms ease;
  --aw-transition: 220ms ease;
  --aw-transition-slow: 560ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--aw-header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--aw-neutral-950);
  background:
    radial-gradient(circle at top right, rgba(16, 166, 106, 0.10), transparent 34rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f5f7fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

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

a:hover,
a:focus {
  color: inherit;
}

p {
  margin-top: 0;
  color: var(--aw-neutral-700);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--aw-neutral-950);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5.8vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.35rem);
}

:focus-visible {
  outline: 4px solid rgba(16, 166, 106, 0.28);
  outline-offset: 4px;
  border-radius: 12px;
}

::selection {
  color: var(--aw-white);
  background: var(--aw-green-700);
}

.container {
  max-width: 1140px;
}

.section-padding {
  padding: 96px 0;
}

.aw-skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--aw-white);
  background: var(--aw-blue-900);
  font-weight: 800;
  box-shadow: var(--aw-shadow-soft);
  transition: top var(--aw-transition);
}

.aw-skip-link:focus {
  top: 18px;
}

.aw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(8, 52, 95, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(8, 52, 95, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
  .aw-header {
    background: var(--aw-white);
  }
}

.aw-navbar {
  min-height: var(--aw-header-height);
  padding-top: 12px;
  padding-bottom: 12px;
}

.aw-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: calc(100vw - 92px);
  color: var(--aw-blue-950);
  font-weight: 850;
  white-space: nowrap;
}

.aw-brand:hover,
.aw-brand:focus {
  color: var(--aw-blue-950);
}

.aw-brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: var(--aw-white);
  background: linear-gradient(135deg, var(--aw-blue-800), var(--aw-green-600));
  box-shadow: 0 12px 24px rgba(12, 143, 90, 0.22);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.aw-brand-text {
  display: block;
  overflow: hidden;
  color: var(--aw-blue-950);
  font-size: 1rem;
  text-overflow: ellipsis;
}

.aw-toggler {
  width: 44px;
  height: 44px;
  margin-left: 10px;
  padding: 0;
  border: 1px solid rgba(8, 52, 95, 0.10);
  border-radius: 14px;
  background: rgba(232, 244, 255, 0.78);
  box-shadow: none;
}

.aw-toggler:hover {
  background: var(--aw-blue-100);
}

.aw-toggler:focus {
  box-shadow: 0 0 0 4px rgba(16, 166, 106, 0.18);
}

.aw-navbar-collapse {
  flex-grow: 1;
}

.aw-menu {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-menu .nav-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-menu .nav-link,
.aw-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--aw-neutral-700);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color var(--aw-transition-fast),
    background var(--aw-transition-fast),
    transform var(--aw-transition-fast);
}

.aw-menu .nav-link:hover,
.aw-menu .nav-link:focus,
.aw-menu .nav-link.active,
.aw-menu .nav-link[aria-current="page"] {
  color: var(--aw-blue-900);
  background: var(--aw-blue-100);
}

.aw-menu .nav-link:hover {
  transform: translateY(-1px);
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--aw-transition-fast),
    box-shadow var(--aw-transition-fast),
    background var(--aw-transition-fast),
    border-color var(--aw-transition-fast);
}

.aw-btn i {
  font-size: 1em;
  line-height: 1;
}

.aw-btn:hover {
  transform: translateY(-2px);
}

.aw-btn:active {
  transform: translateY(0);
}

.aw-btn-lg {
  min-height: 56px;
  padding: 16px 26px;
  font-size: 1rem;
}

.aw-btn-whatsapp {
  color: var(--aw-white);
  background: linear-gradient(135deg, var(--aw-green-600), var(--aw-green-800));
  box-shadow: var(--aw-shadow-green);
}

.aw-btn-whatsapp:hover,
.aw-btn-whatsapp:focus {
  color: var(--aw-white);
  box-shadow: 0 22px 48px rgba(12, 143, 90, 0.34);
}

.aw-btn-outline {
  border: 1px solid rgba(8, 52, 95, 0.16);
  color: var(--aw-blue-900);
  background: rgba(255, 255, 255, 0.78);
}

.aw-btn-outline:hover,
.aw-btn-outline:focus {
  border-color: rgba(8, 52, 95, 0.22);
  color: var(--aw-blue-900);
  background: var(--aw-blue-100);
}

.aw-hero {
  position: relative;
  overflow: hidden;
  padding-top: 106px;
  isolation: isolate;
}

.aw-hero::before {
  position: absolute;
  top: -320px;
  right: -260px;
  z-index: -1;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 166, 106, 0.22), rgba(17, 104, 173, 0.08), transparent 65%);
  content: "";
  pointer-events: none;
}

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

.aw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--aw-green-700);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.aw-eyebrow i {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--aw-green-600);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 10px rgba(16, 166, 106, 0.20));
}

.aw-hero-title {
  margin-bottom: 0;
}

.aw-hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.aw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.aw-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 38px;
}

.aw-trust-item,
.aw-trust-row div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(8, 52, 95, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--aw-shadow-soft);
}

.aw-trust-row strong,
.aw-trust-row span {
  display: block;
}

.aw-trust-row strong {
  color: var(--aw-blue-900);
  font-size: 1.12rem;
  line-height: 1.1;
}

.aw-trust-row span {
  margin-top: 4px;
  color: var(--aw-neutral-500);
  font-size: 0.9rem;
  line-height: 1.3;
}

.aw-hero-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(8, 52, 95, 0.10);
  border-radius: var(--aw-radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--aw-shadow);
}

.aw-hero-media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 52, 95, 0.14), rgba(16, 166, 106, 0.10)),
    url("https://images.unsplash.com/photo-1584516150909-c43483ee7932?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat,
    linear-gradient(135deg, var(--aw-blue-100), var(--aw-green-100));
}

.aw-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(270px, calc(100% - 36px));
  max-width: 270px;
  padding: 14px;
  border: 1px solid rgba(8, 52, 95, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--aw-shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .aw-floating-card {
    background: var(--aw-white);
  }
}

.aw-floating-card-top {
  top: 42px;
  left: -10px;
}

.aw-floating-card-bottom {
  right: -10px;
  bottom: 42px;
}

.aw-card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--aw-green-700);
  background: var(--aw-green-100);
  font-size: 1.08rem;
}

.aw-floating-card strong,
.aw-floating-card small {
  display: block;
}

.aw-floating-card strong {
  color: var(--aw-blue-950);
  line-height: 1.2;
}

.aw-floating-card small {
  margin-top: 3px;
  color: var(--aw-neutral-500);
  line-height: 1.3;
}

.aw-section-copy {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
}

.aw-services {
  background: var(--aw-white);
}

.aw-service-card,
.aw-testimonial-card {
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(8, 52, 95, 0.10);
  border-radius: var(--aw-radius-lg);
  background: var(--aw-white);
  box-shadow: var(--aw-shadow-soft);
  transition:
    transform var(--aw-transition),
    box-shadow var(--aw-transition),
    border-color var(--aw-transition);
}

.aw-service-card:hover,
.aw-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 166, 106, 0.28);
  box-shadow: var(--aw-shadow);
}

.aw-service-icon {
  display: inline-grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  color: var(--aw-blue-900);
  background: linear-gradient(135deg, var(--aw-blue-100), var(--aw-green-100));
  font-size: 1.55rem;
}

.aw-service-card h3 {
  margin-bottom: 0;
}

.aw-service-card p {
  margin: 14px 0 22px;
}

.aw-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aw-green-700);
  font-weight: 900;
  line-height: 1.2;
}

.aw-card-link i {
  font-size: 0.95rem;
  transition: transform var(--aw-transition-fast);
}

.aw-card-link:hover,
.aw-card-link:focus {
  color: var(--aw-green-800);
}

.aw-card-link:hover i,
.aw-card-link:focus i {
  transform: translateX(4px);
}

.aw-benefits {
  color: var(--aw-white);
  background:
    radial-gradient(circle at top left, rgba(16, 166, 106, 0.24), transparent 36rem),
    linear-gradient(135deg, var(--aw-blue-950), var(--aw-blue-800));
}

.aw-benefits h2,
.aw-benefits .aw-eyebrow {
  color: var(--aw-white);
}

.aw-benefits .aw-eyebrow i {
  color: var(--aw-green-100);
}

.aw-benefits p,
.aw-benefits .aw-section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.aw-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--aw-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 800;
  line-height: 1.35;
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .aw-benefit-item {
    background: rgba(255, 255, 255, 0.12);
  }
}

.aw-benefit-item i {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--aw-green-100);
  background: rgba(255, 255, 255, 0.12);
}

.aw-video-section {
  background: var(--aw-neutral-100);
}

.aw-video-placeholder {
  display: grid;
  width: 100%;
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 32px;
  border: 1px solid rgba(8, 52, 95, 0.12);
  border-radius: var(--aw-radius-xl);
  color: var(--aw-white);
  background:
    linear-gradient(135deg, rgba(8, 52, 95, 0.62), rgba(16, 166, 106, 0.38)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat,
    linear-gradient(135deg, var(--aw-blue-900), var(--aw-green-700));
  box-shadow: var(--aw-shadow);
  text-align: center;
  cursor: pointer;
  appearance: none;
}

.aw-video-placeholder:hover .aw-play-icon,
.aw-video-placeholder:focus .aw-play-icon {
  transform: scale(1.06);
}

.aw-video-placeholder strong {
  color: var(--aw-white);
  font-size: 1.18rem;
}

.aw-video-placeholder small {
  color: rgba(255, 255, 255, 0.78);
}

.aw-video-placeholder.is-video-pending {
  background:
    linear-gradient(135deg, rgba(8, 52, 95, 0.92), rgba(12, 143, 90, 0.82)),
    linear-gradient(135deg, var(--aw-blue-900), var(--aw-green-700));
}

.aw-play-icon {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 999px;
  color: var(--aw-blue-900);
  background: var(--aw-white);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
  font-size: 1.25rem;
  transition: transform var(--aw-transition-fast);
}

.aw-testimonials {
  background: var(--aw-white);
}

.aw-testimonial-card {
  margin: 0;
}

.aw-testimonial-card p {
  margin-bottom: 20px;
  color: var(--aw-neutral-700);
  font-size: 1.02rem;
}

.aw-testimonial-card footer {
  color: var(--aw-blue-900);
  font-weight: 900;
}

.aw-team {
  background: var(--aw-neutral-100);
}

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

.aw-team-photo {
  min-height: 260px;
  border-radius: 24px;
  background-color: var(--aw-blue-100);
  background-position: center;
  background-size: cover;
  box-shadow: var(--aw-shadow-soft);
}

.aw-team-photo-a {
  min-height: 420px;
  grid-row: span 2;
  background-image:
    linear-gradient(135deg, rgba(8, 52, 95, 0.08), rgba(16, 166, 106, 0.08)),
    url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=900&q=80");
}

.aw-team-photo-b {
  background-image:
    linear-gradient(135deg, rgba(8, 52, 95, 0.08), rgba(16, 166, 106, 0.08)),
    url("https://images.unsplash.com/photo-1582750433449-648ed127bb54?auto=format&fit=crop&w=900&q=80");
}

.aw-team-photo-c {
  background-image:
    linear-gradient(135deg, rgba(8, 52, 95, 0.08), rgba(16, 166, 106, 0.08)),
    url("https://images.unsplash.com/photo-1622253692010-333f2da6031d?auto=format&fit=crop&w=900&q=80");
}

.aw-final-cta {
  padding: 72px 0;
  background: var(--aw-neutral-100);
}

.aw-final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: var(--aw-radius-xl);
  color: var(--aw-white);
  background:
    radial-gradient(circle at top right, rgba(16, 166, 106, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--aw-blue-900), var(--aw-blue-700));
  box-shadow: var(--aw-shadow);
}

.aw-final-cta-content {
  min-width: 0;
}

.aw-final-cta-card h2 {
  margin-bottom: 12px;
  color: var(--aw-white);
}

.aw-final-cta-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.aw-final-cta-card .aw-eyebrow {
  color: var(--aw-white);
}

.aw-final-cta-card .aw-eyebrow i {
  color: var(--aw-green-100);
}

.aw-footer {
  padding: 70px 0 28px;
  color: var(--aw-white);
  background: var(--aw-blue-950);
}

.aw-footer p,
.aw-footer li,
.aw-footer a,
.aw-footer span {
  color: rgba(255, 255, 255, 0.74);
}

.aw-footer a:hover,
.aw-footer a:focus {
  color: var(--aw-white);
}

.aw-footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--aw-white) !important;
  font-size: 1.25rem;
  font-weight: 900;
}

.aw-footer h3 {
  margin-bottom: 16px;
  color: var(--aw-white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

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

.aw-footer-list li,
.aw-footer-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.aw-footer-list i {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--aw-green-100);
  text-align: center;
}

.aw-footer-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.aw-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.aw-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.aw-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--aw-transition-slow),
    transform var(--aw-transition-slow);
  will-change: opacity, transform;
}

.aw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .aw-hero {
    min-height: calc(100vh - var(--aw-header-height));
    display: flex;
    align-items: center;
  }

  .aw-hero-title {
    max-width: 760px;
  }
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: clamp(2.45rem, 5.7vw, 4.65rem);
  }

  .aw-hero-card {
    min-height: 520px;
  }

  .aw-hero-media {
    min-height: 480px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --aw-header-height: 74px;
  }

  h1 {
    font-size: clamp(2.35rem, 8vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
  }

  .aw-navbar {
    min-height: var(--aw-header-height);
  }

  .aw-navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(8, 52, 95, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--aw-shadow-soft);
  }

  .aw-menu {
    gap: 6px;
    width: 100%;
  }

  .aw-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 14px 16px;
    background: rgba(8, 52, 95, 0.04);
  }

  .aw-navbar-collapse .aw-btn-whatsapp {
    width: 100%;
    margin-top: 12px;
  }

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

  .aw-hero-card {
    min-height: 460px;
  }

  .aw-hero-media {
    min-height: 420px;
  }

  .aw-floating-card-top {
    left: 26px;
  }

  .aw-floating-card-bottom {
    right: 26px;
  }

  .aw-final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .aw-final-cta-card .aw-btn {
    width: auto;
  }
}

@media (max-width: 767.98px) {
  :root {
    --aw-radius-xl: 24px;
    --aw-radius-lg: 20px;
  }

  body {
    background:
      radial-gradient(circle at top right, rgba(16, 166, 106, 0.09), transparent 24rem),
      linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f5f7fb 100%);
  }

  .section-padding {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.28rem, 12vw, 3.65rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .aw-brand {
    gap: 10px;
  }

  .aw-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .aw-brand-text {
    max-width: 190px;
    white-space: normal;
    line-height: 1.08;
  }

  .aw-hero {
    padding-top: 70px;
  }

  .aw-hero-copy {
    margin-top: 20px;
  }

  .aw-hero-actions {
    width: 100%;
    margin-top: 28px;
  }

  .aw-hero-actions .aw-btn {
    width: 100%;
  }

  .aw-trust-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .aw-hero-card {
    min-height: auto;
    padding: 12px;
  }

  .aw-hero-media {
    min-height: 340px;
  }

  .aw-floating-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .aw-service-card,
  .aw-testimonial-card {
    padding: 26px;
  }

  .aw-benefit-item {
    min-height: auto;
    padding: 18px;
  }

  .aw-video-placeholder {
    min-height: 300px;
    padding: 24px;
  }

  .aw-play-icon {
    width: 64px;
    height: 64px;
  }

  .aw-team-grid {
    grid-template-columns: 1fr;
  }

  .aw-team-photo,
  .aw-team-photo-a {
    min-height: 280px;
    grid-row: auto;
  }

  .aw-final-cta {
    padding: 60px 0;
  }

  .aw-final-cta-card {
    padding: 28px;
  }

  .aw-final-cta-card .aw-btn {
    width: 100%;
  }

  .aw-footer {
    padding-top: 58px;
  }

  .aw-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .aw-eyebrow {
    gap: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.10em;
  }

  .aw-btn-lg {
    min-height: 54px;
    padding: 15px 22px;
  }

  .aw-navbar-collapse {
    padding: 14px;
  }

  .aw-hero-media {
    min-height: 310px;
  }

  .aw-trust-item,
  .aw-trust-row div {
    padding: 16px;
  }

  .aw-service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.42rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.12rem, 12vw, 3.15rem);
  }

  .aw-brand-mark {
    width: 40px;
    height: 40px;
  }

  .aw-brand-text {
    max-width: 160px;
    font-size: 0.9rem;
  }

  .aw-service-card,
  .aw-testimonial-card {
    padding: 24px;
  }

  .aw-final-cta-card {
    padding: 24px;
  }

  .aw-video-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .aw-brand-text {
    max-width: 132px;
  }

  .aw-btn {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.94rem;
  }

  .aw-hero-media {
    min-height: 280px;
  }
}

@media (hover: none) {
  .aw-btn:hover,
  .aw-menu .nav-link:hover,
  .aw-service-card:hover,
  .aw-testimonial-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .aw-reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .aw-header,
  .aw-hero-actions,
  .aw-video-section,
  .aw-final-cta,
  .aw-footer-bottom {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .section-padding {
    padding: 32px 0;
  }

  .aw-service-card,
  .aw-testimonial-card,
  .aw-hero-card,
  .aw-final-cta-card {
    box-shadow: none;
  }
}