:root {
  --meraki-green: #111518;
  --meraki-green-dark: #000000;
  --meraki-green-bg: rgba(17, 21, 24, 0.08);

  --meraki-orange: #da291c;
  --meraki-orange-dark: #b31e13;
  --meraki-orange-bg: rgba(218, 41, 28, 0.12);

  --meraki-blue: #0088cc;
  --meraki-blue-dark: #006b9e;
  --meraki-blue-bg: rgba(0, 136, 204, 0.12);

  --teal: #da291c;
  --teal-dark: #b31e13;
  --teal-soft: #fcedec;

  --bg: #f8f9f9;
  --surface: #ffffff;
  --surface-2: #f4f6f6;
  --surface-3: #fcfcfc;
  --surface-dark: #111518;

  --text: #1a1e22;
  --text-soft: #38424a;
  --muted: #667782;
  --muted-2: #86949d;

  --border: rgba(33, 57, 71, 0.10);
  --border-strong: rgba(33, 57, 71, 0.18);

  --shadow-sm: 0 12px 30px rgba(24, 38, 48, 0.06);
  --shadow-md: 0 24px 60px rgba(20, 34, 44, 0.12);
  --shadow-lg: 0 40px 100px rgba(12, 26, 36, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1180px;
  --transition: 0.24s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

button,
input,
textarea {
  font: inherit;
}

.container,
.pc-container,
.pc-footer-inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section,
.pc-section,
.contact-section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 13, 16, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 74px;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ffffff;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-hamburger span {
  background: #ffffff !important;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 113, 107, 0.18);
}

.nav-cta:hover {
  background: var(--teal-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 39;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 28, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.mobile-menu.is-open .mobile-overlay {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 96px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 28px 70px rgba(4, 8, 18, 0.15);
}

.mobile-menu.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--text);
}

.mobile-link:hover {
  background: var(--surface-2);
  color: var(--teal);
}

.mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(216, 41, 47, 0.10);
}

.eyebrow-outline {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--meraki-orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(243, 112, 50, 0.24);
}

.btn-primary:hover {
  background: var(--meraki-orange-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(33, 57, 71, 0.12);
  box-shadow: 0 8px 18px rgba(17, 24, 31, 0.04);
}

.btn-secondary:hover {
  background: var(--surface-2);
  border-color: rgba(33, 57, 71, 0.18);
}

.hero-meraki {
  padding: 60px 0 64px;
  position: relative;
  background: #0a0d10;
  color: #ffffff;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-meraki h1,
.hero-meraki p {
  color: #ffffff;
}

.hero-bg-subtle {
  position: absolute;
  inset: 0;
  background: url('img/Forti-footer.jpg') center top / cover no-repeat;
  opacity: 0.50;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left-inner {
  max-width: 600px;
}

.hero-left h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.8rem, 4.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.hero-subline {
  margin: 0 0 16px;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.05rem;
}

.hero-text {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #bac6cf;
}

.hero-btn-row {
  margin-top: 30px;
}

.hero-brand-row {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(33, 57, 71, 0.10);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-brand-row>span {
  color: var(--muted-2);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-brand-list {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.hero-brand-list img {
  height: 24px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--meraki-orange-bg) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 510px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.hero-media {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-media:hover img {
  transform: scale(1.03);
}

.mini-list {
  display: grid;
  gap: 16px;
}

.mini-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-meraki-green {
  background: var(--meraki-green);
  color: #fff;
}

.icon-meraki-orange {
  background: var(--meraki-orange);
  color: #fff;
}

.icon-meraki-blue {
  background: var(--teal);
  color: #fff;
}

.chip-meraki-green {
  background: var(--meraki-green-bg);
  color: var(--meraki-green-dark);
  border: 1px solid rgba(120, 190, 32, 0.20);
}

.chip-meraki-orange {
  background: var(--meraki-orange-bg);
  color: var(--meraki-orange-dark);
  border: 1px solid rgba(243, 112, 50, 0.20);
}

.chip-meraki-blue {
  background: var(--meraki-blue-bg);
  color: var(--meraki-blue-dark);
  border: 1px solid rgba(110, 199, 192, 0.24);
}

.mini-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--text);
}

.mini-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.social-proof-banner {
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(20, 26, 31, 0.04) 100%);
  padding: 44px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.proof-kicker {
  margin: 0 0 32px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
}

.proof-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(17, 24, 31, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 24, 31, 0.08);
}

.proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.quick-services {
  position: relative;
  padding: 60px 0 88px;
}

.quick-services-head {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.quick-services-head h2,
.pc-section-head h2,
.diagnostic-copy h2,
.contact-grid h2,
.scenario-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
}

.quick-services-head p,
.pc-section-head p,
.diagnostic-copy p,
.contact-grid p,
.scenario-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.qs-card,
.contact-form-card,
.diagnostic-box,
.cl-item,
.bn-stat,
.bn-response,
.scenario-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.qs-card {
  border-radius: 24px;
  overflow: hidden;
}

.qs-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qs-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-card:hover .qs-image img {
  transform: scale(1.05);
}

.qs-content {
  padding: 24px 22px;
}

.qs-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  color: var(--text);
}

.qs-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.pc-section-dark {
  background: linear-gradient(145deg, #1f2a38 0%, #111822 100%);
  color: #fff;
  padding-top: 56px;
}

.pc-section-soft {
  background: linear-gradient(180deg, rgba(17, 21, 24, 0.02), rgba(17, 21, 24, 0.05));
}

.pc-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.pc-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head-light h2,
.section-head-light p {
  color: #fff;
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.82);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.bn {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  padding: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.bn:hover {
  transform: translateY(-4px);
}

.bn-hero {
  grid-column: span 7;
  justify-content: flex-end;
  background-color: #111518;
  background-image:
    linear-gradient(180deg, rgba(17, 21, 24, 0) 0%, rgba(17, 21, 24, 0.9) 60%, #111518 80%, #111518 100%),
    url('img/fortiai-protect.png');
  background-position: center center, center top;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
  box-shadow: inset 0 -3px 0 0 #111518;
}

.bn-hero h3,
.bn-dark h4 {
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.bn-hero h3 {
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bn-hero p,
.bn-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.bn-stat {
  grid-column: span 5;
  justify-content: center;
}

.stat-num {
  margin-bottom: 16px;
  font-size: 3.2rem;
  line-height: 0.95;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
}

.stat-suffix {
  display: block;
  font-size: 1.38rem;
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.bn-stat h4,
.bn-response h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.bn-stat p,
.bn-response p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.bn-response {
  grid-column: span 5;
  justify-content: center;
}

.bn-icon,
.bn-dark-icon,
.cl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.bn-icon {
  margin-bottom: 20px;
}

.bn-dark {
  grid-column: span 7;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  background-color: #111518;
  background-image: linear-gradient(135deg, rgba(17, 21, 24, 0.95), #111518);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.bn-dark-icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.scenario-shell {
  display: grid;
  gap: 28px;
}

.scenario-copy {
  max-width: 760px;
}

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

.scenario-card {
  border-radius: 22px;
  padding: 24px;
}

.scenario-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--text);
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.diagnostic-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-radius: 28px;
  padding: 38px;
}

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

.diagnostic-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  align-items: stretch;
}

.contact-grid p {
  margin: 0 0 22px;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
}

.cl-text-label {
  font-size: 0.78rem;
  color: var(--muted-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cl-text-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form-card {
  border-radius: 28px;
  padding: 30px;
}

.contact-form-card h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.contact-form-card>p {
  margin: 0 0 18px;
  color: var(--muted);
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.84rem;
}

.pc-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-soft);
}

.pc-input {
  width: 100%;
  min-height: 56px;
  margin-bottom: 16px;
  padding: 0 16px;
  border: 1px solid rgba(33, 57, 71, 0.12);
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pc-input::placeholder {
  color: var(--muted-2);
}

.pc-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 113, 107, 0.10);
}

.pc-input.error {
  border-color: rgba(239, 68, 68, 0.52);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}

textarea.pc-input {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.pc-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--meraki-orange), var(--meraki-orange-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(243, 112, 50, 0.24);
}

.pc-submit:hover {
  transform: translateY(-2px);
}

.pc-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  display: none;
}

.form-msg.success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #14532d;
}

.form-msg.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}

.pc-footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.pc-input:focus-visible,
textarea:focus-visible,
.nav-hamburger:focus-visible {
  outline: 3px solid rgba(0, 113, 107, 0.24);
  outline-offset: 3px;
}

@media (max-width: 1180px) {

  .hero-container,
  .diagnostic-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bn-hero,
  .bn-stat,
  .bn-response,
  .bn-dark {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {

  .section,
  .pc-section,
  .contact-section {
    padding: 64px 0;
  }

  .container,
  .pc-container,
  .pc-footer-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger,
  .mobile-menu {
    display: flex;
  }

  .brand img {
    height: 54px;
  }

  .hero-meraki {
    min-height: auto;
    padding: 30px 0 60px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-left-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-left h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    line-height: 1.05;
  }

  .hero-btn-row {
    flex-direction: column;
  }

  .hero-btn-row .btn {
    width: 100%;
  }

  .hero-right {
    min-height: auto;
    padding: 10px 0 20px;
  }

  .hero-right::before {
    top: 40%;
  }

  .hero-card {
    width: 100%;
    padding: 18px;
    border-radius: 24px;
  }

  .hero-media img {
    height: 200px;
  }

  .proof-list {
    display: grid;
    text-align: center;
    gap: 18px;
  }

  .quick-services-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form-card,
  .diagnostic-box,
  .bn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bn-dark {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {

  .quick-services-head h2,
  .pc-section-head h2,
  .diagnostic-copy h2,
  .contact-grid h2,
  .scenario-copy h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
  }

  .btn,
  .pc-submit {
    min-height: 52px;
    font-size: 0.94rem;
  }

  .hero-card {
    width: min(100%, calc(100% - 20px));
  }

  .form-trust {
    gap: 8px;
  }

  .form-trust span {
    width: 100%;
    justify-content: center;
  }
}