:root {
  --n2m-bg: #c7d4d8;
  --n2m-bg-deep: #b7c7cc;
  --n2m-surface: #f8fbfb;
  --n2m-surface-dark: #071f2c;
  --n2m-text: #0a2634;
  --n2m-muted: #405b66;
  --n2m-border: #a9c2c7;
  --n2m-brand: #006f68;
  --n2m-marketing: #00756d;
  --n2m-network: #0968b2;
  --n2m-success: #16875f;
  --n2m-warning: #d4a82d;
  --n2m-radius: 20px;
  --n2m-shadow-sm: 0 10px 24px rgba(7, 31, 44, 0.09);
  --n2m-shadow-md: 0 22px 55px rgba(7, 31, 44, 0.15);
  --n2m-max: 1240px;
  --n2m-section: clamp(64px, 8vw, 104px);
  --n2m-focus: 0 0 0 4px rgba(0, 183, 168, 0.28);
}

html {
  scroll-padding-top: 104px;
}

body.site-v2 {
  color: var(--n2m-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 183, 168, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(22, 136, 232, 0.13), transparent 32rem),
    linear-gradient(180deg, #d8e2e4, var(--n2m-bg) 46%, var(--n2m-bg-deep));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--n2m-surface-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--n2m-brand);
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(8, 44, 60, 0.14);
  background: rgba(224, 234, 236, 0.94);
  box-shadow: 0 8px 24px rgba(7, 31, 44, 0.07);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--n2m-max));
  min-height: 82px;
  margin: 0 auto;
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  width: 300px;
  height: 75px;
}

.brand-picture,
.brand-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-picture img {
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 5px;
  min-width: 0;
  color: var(--n2m-text);
  font-size: 0.82rem;
  font-weight: 750;
}

.global-nav > a,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 9px;
  border-radius: 10px;
  color: var(--n2m-text);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.global-nav > a {
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.2;
  overflow: visible;
  transition: color 0.18s ease, background 0.18s ease;
}

.global-nav > a::before {
  display: none;
  content: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  margin-left: 6px;
  color: var(--n2m-muted);
  content: "\25BE";
  font-size: 0.72rem;
}

.global-nav > a:hover,
.global-nav > a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  color: #fff;
  background: var(--n2m-surface-dark);
}

.global-nav > a:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  display: grid;
  gap: 4px;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(0, 183, 168, 0.28);
  border-radius: 14px;
  background: #f7fbfb;
  box-shadow: var(--n2m-shadow-md);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--n2m-text);
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #fff;
  background: var(--n2m-surface-dark);
}

.global-nav .nav-cta {
  margin-left: 5px;
  padding-inline: 14px;
  color: #fff;
  background: linear-gradient(100deg, var(--n2m-brand), #087fbc);
  box-shadow: 0 8px 18px rgba(0, 128, 164, 0.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--n2m-border);
  border-radius: 10px;
  color: var(--n2m-text);
  background: var(--n2m-surface);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.v2-main {
  max-width: none;
  padding: 0;
}

.section-shell {
  width: min(100% - 40px, var(--n2m-max));
  margin: 0 auto;
}

.v2-section {
  padding: var(--n2m-section) 0;
}

.v2-section.compact {
  padding: clamp(48px, 6vw, 76px) 0;
}

.v2-section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 183, 168, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(22, 136, 232, 0.18), transparent 30rem),
    var(--n2m-surface-dark);
}

.v2-section.soft {
  border-block: 1px solid rgba(8, 44, 60, 0.1);
  background: rgba(245, 250, 250, 0.52);
}

.v2-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(64px, 8vw, 100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.v2-eyebrow {
  margin: 0 0 16px;
  color: #00665f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.network-accent .v2-eyebrow,
.network-text {
  color: #075fa5;
}

.v2-section.dark .v2-eyebrow {
  color: #58ded1;
}

.v2-hero h1,
.v2-heading h2,
.feature-lead h2,
.cta-banner h2 {
  margin: 0;
  color: var(--n2m-text);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.v2-hero h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
}

.v2-hero .hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--n2m-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.v2-button.primary,
.division-card.marketing .v2-button {
  color: #fff;
  background: var(--n2m-marketing);
  box-shadow: 0 10px 24px rgba(0, 169, 157, 0.2);
}

.v2-button.network,
.division-card.network .v2-button {
  color: #fff;
  background: var(--n2m-network);
  box-shadow: 0 10px 24px rgba(22, 136, 232, 0.22);
}

.v2-button.secondary {
  border-color: #4d6a74;
  color: var(--n2m-text);
  background: rgba(255, 255, 255, 0.52);
}

.hero-microcopy {
  margin: 18px 0 0;
  color: var(--n2m-muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.dual-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(7, 31, 44, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, #f7fbfa 0 50%, #e8f3fb 50% 100%);
  box-shadow: var(--n2m-shadow-md);
  overflow: hidden;
}

.visual-half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 30px;
}

.visual-half.marketing {
  left: 0;
}

.visual-half.network {
  right: 0;
}

.browser-frame {
  margin-top: 74px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--n2m-shadow-sm);
  transform: rotate(-3deg);
}

.browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fbab6;
}

.browser-line {
  height: 9px;
  margin: 8px 0;
  border-radius: 999px;
  background: #d4e8e6;
}

.browser-line.short {
  width: 58%;
  background: var(--n2m-marketing);
}

.analytics-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 92px;
  margin-top: 16px;
}

.analytics-bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(#1ad7c5, #008f85);
}

.network-map {
  position: relative;
  height: 270px;
  margin-top: 78px;
}

.network-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #56b6ff;
  border-radius: 18px;
  color: #fff;
  background: #0b3550;
  box-shadow: 0 0 24px rgba(22, 136, 232, 0.35);
  font-size: 0.7rem;
  font-weight: 850;
}

.network-node.core { top: 96px; left: calc(50% - 29px); }
.network-node.wifi { top: 16px; left: 12px; }
.network-node.cam { top: 18px; right: 8px; }
.network-node.nas { bottom: 6px; left: 16px; }
.network-node.lock { right: 10px; bottom: 8px; }

.network-map::before,
.network-map::after {
  position: absolute;
  inset: 48px 42px;
  border: 2px solid rgba(22, 136, 232, 0.36);
  border-radius: 50%;
  content: "";
  transform: rotate(35deg);
}

.network-map::after {
  transform: rotate(-35deg);
}

.v2-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.v2-heading.center {
  margin-inline: auto;
  text-align: center;
}

.v2-heading h2,
.feature-lead h2,
.cta-banner h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.v2-heading p:not(.v2-eyebrow),
.feature-lead p,
.section-intro {
  margin: 18px 0 0;
  color: var(--n2m-muted);
  font-size: 1.05rem;
}

.division-grid,
.card-grid,
.pricing-grid,
.case-grid,
.process-grid,
.outcome-grid,
.values-grid {
  display: grid;
  gap: 20px;
}

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

.division-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--n2m-border);
  border-top: 5px solid var(--n2m-marketing);
  border-radius: 24px;
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-md);
}

.division-card.network {
  border-top-color: var(--n2m-network);
}

.division-card h2 {
  margin: 8px 0 14px;
  color: var(--n2m-text);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.division-card > p:not(.v2-eyebrow) {
  color: var(--n2m-muted);
}

.check-list,
.plain-list,
.price-card ul,
.service-detail ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.price-card li,
.service-detail li {
  position: relative;
  margin: 9px 0;
  padding-left: 24px;
  color: var(--n2m-muted);
}

.check-list li::before,
.price-card li::before,
.service-detail li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--n2m-marketing);
  content: "\2713";
  font-weight: 900;
}

.network .check-list li::before,
.network-accent .check-list li::before {
  color: var(--n2m-network);
}

.card-grid.three,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.v2-card,
.service-detail,
.value-card,
.process-step,
.case-card,
.price-card {
  padding: 27px;
  border: 1px solid var(--n2m-border);
  border-radius: var(--n2m-radius);
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-sm);
}

.v2-card h3,
.service-detail h3,
.value-card h3,
.process-step h3,
.case-card h3,
.price-card h3 {
  margin: 0 0 10px;
  color: var(--n2m-text);
  font-size: 1.28rem;
  line-height: 1.25;
}

.v2-card p,
.service-detail p,
.value-card p,
.process-step p,
.case-card p,
.price-card p {
  margin: 0;
  color: var(--n2m-muted);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: #006f68;
  font-weight: 850;
}

.network-accent .card-link {
  color: #075fa5;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
}

.process-step {
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 18px;
  color: var(--n2m-brand);
  content: "0" counter(process);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.metric-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.metric-flow span {
  padding: 12px 15px;
  border: 1px solid rgba(0, 169, 157, 0.28);
  border-radius: 10px;
  color: var(--n2m-text);
  background: #f8fbfb;
  font-weight: 800;
}

.metric-flow b {
  color: var(--n2m-marketing);
}

.trust-callout,
.disclaimer-block {
  padding: 24px 27px;
  border-left: 5px solid var(--n2m-brand);
  border-radius: 0 16px 16px 0;
  color: var(--n2m-muted);
  background: rgba(248, 251, 251, 0.82);
  box-shadow: var(--n2m-shadow-sm);
}

.disclaimer-block.network {
  border-left-color: var(--n2m-network);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--n2m-border);
  border-radius: 14px;
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-sm);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--n2m-text);
  font-weight: 850;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--n2m-muted);
}

.division-switcher {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--n2m-border);
  border-radius: 16px;
  background: rgba(248, 251, 251, 0.72);
}

.division-switcher a {
  color: var(--n2m-text);
  font-weight: 850;
}

.case-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card,
.price-card {
  display: flex;
  flex-direction: column;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 9px;
  border-radius: 999px;
  color: #075f59;
  background: #d7efed;
  font-size: 0.73rem;
  font-weight: 800;
}

.case-card .card-link,
.price-card .v2-button {
  margin-top: auto;
}

.price-card.featured {
  border: 2px solid var(--n2m-marketing);
  transform: translateY(-8px);
}

.price-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--n2m-marketing);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 12px;
  color: var(--n2m-text);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-group + .pricing-group {
  margin-top: 64px;
}

.pricing-group h2 {
  margin-bottom: 24px;
  color: var(--n2m-text);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.case-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--n2m-border);
  border-radius: 22px;
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-md);
}

.case-detail + .case-detail {
  margin-top: 28px;
}

.case-detail h2 {
  margin: 0 0 18px;
  color: var(--n2m-text);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.1;
}

.case-facts {
  padding: 22px;
  border-radius: 16px;
  background: #e5f0f1;
}

.case-facts h3 {
  margin-top: 0;
}

.breadcrumbs {
  padding-top: 22px;
  color: var(--n2m-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: #006f68;
  font-weight: 750;
}

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

.contact-path {
  padding: 30px;
  border: 1px solid var(--n2m-border);
  border-top: 5px solid var(--n2m-marketing);
  border-radius: 20px;
  background: rgba(248, 251, 251, 0.88);
  box-shadow: var(--n2m-shadow-sm);
}

.contact-path.network {
  border-top-color: var(--n2m-network);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.about-profile-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--n2m-border);
  border-radius: 24px;
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-md);
}

.about-profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 25%;
}

.about-profile-card figcaption {
  display: grid;
  gap: 3px;
  padding: 16px 8px 6px;
}

.about-profile-card figcaption strong {
  color: var(--n2m-text);
  font-size: 1.1rem;
}

.about-profile-card figcaption span {
  color: var(--n2m-muted);
}

.story-timeline {
  display: grid;
  gap: 28px;
}

.story-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--n2m-border);
  border-radius: 24px;
  background: rgba(248, 251, 251, 0.9);
  box-shadow: var(--n2m-shadow-sm);
}

.story-chapter.reverse .story-media,
.story-chapter.reverse .story-milestone {
  order: 2;
}

.story-media {
  margin: 0;
}

.story-media img {
  width: 100%;
  max-height: 430px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 16px 32px rgba(7, 31, 44, 0.15);
}

.story-media.grad img {
  object-position: center 16%;
}

.story-milestone {
  display: grid;
  place-content: center;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(0, 183, 168, 0.32);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(22, 136, 232, 0.28), transparent 42%),
    var(--n2m-surface-dark);
  box-shadow: 0 16px 32px rgba(7, 31, 44, 0.15);
}

.story-milestone strong {
  color: var(--n2m-brand);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
}

.story-milestone span {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-content h2,
.contact-path h2,
.contact-side-copy h2,
.consultation-form h2,
.credential-panel h2 {
  margin: 0 0 14px;
  color: var(--n2m-text);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.story-content p:last-child,
.contact-path p,
.contact-side-copy p {
  color: var(--n2m-muted);
}

.about-principles {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.about-statement {
  margin-top: 26px !important;
  padding-left: 20px;
  border-left: 4px solid var(--n2m-brand);
  color: var(--n2m-text) !important;
  font-size: 1.13rem !important;
  font-weight: 800;
}

.credential-panel {
  padding: 28px;
  border: 1px solid var(--n2m-border);
  border-radius: 20px;
  background: rgba(248, 251, 251, 0.88);
  box-shadow: var(--n2m-shadow-sm);
}

.credential-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--n2m-muted);
}

.contact-v2-hero {
  padding-bottom: 44px;
  text-align: center;
}

.contact-v2-hero .hero-copy {
  margin-inline: auto;
}

.contact-path h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.contact-side-copy {
  position: sticky;
  top: 112px;
}

.contact-direct {
  display: grid;
  gap: 7px;
  margin: 28px 0 18px;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  background: var(--n2m-surface-dark);
}

.contact-direct a {
  color: #58ded1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.small-print {
  font-size: 0.9rem;
}

.consultation-form .form-heading h2 {
  color: #fff;
}

.consultation-form .form-heading p:last-child {
  color: #bdd2d8;
}

.conditional-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(127, 191, 205, 0.34);
  border-radius: 12px;
  background: rgba(11, 53, 80, 0.5);
}

.conditional-fields[hidden],
.honeypot-field {
  display: none !important;
}

.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #7ee3d6;
  font-weight: 750;
}

.policy-content {
  max-width: 860px;
}

.policy-content h2 {
  margin: 34px 0 10px;
  color: var(--n2m-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--n2m-muted);
}

.policy-content a {
  color: #006f68;
  font-weight: 800;
}

.site-v2 .planner-tools {
  top: 102px;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 183, 168, 0.32);
  border-radius: 24px;
  color: #fff;
  background: var(--n2m-surface-dark);
  box-shadow: var(--n2m-shadow-md);
}

.consultation-form .form-heading,
.consultation-form .full-field,
.consultation-form .form-actions {
  grid-column: 1 / -1;
}

.consultation-form label,
.consultation-form fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #dcecf0;
  font-weight: 750;
}

.consultation-form fieldset {
  padding: 16px;
  border: 1px solid rgba(127, 191, 205, 0.34);
  border-radius: 12px;
}

.consultation-form legend {
  padding: 0 6px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #7094a0;
  border-radius: 9px;
  color: var(--n2m-text);
  background: #fff;
  font: inherit;
}

.consultation-form textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-field {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px !important;
}

.checkbox-field input {
  flex: 0 0 auto;
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.form-note {
  margin: 12px 0 0;
  color: #bdd2d8;
  font-size: 0.9rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(0, 183, 168, 0.34);
  border-radius: 24px;
  color: #fff;
  background: var(--n2m-surface-dark);
  box-shadow: var(--n2m-shadow-md);
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #c7dce1;
}

.global-footer {
  color: #d7e7eb;
  background: #041722;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  width: min(100% - 40px, var(--n2m-max));
  margin: 0 auto;
  padding: 64px 0 46px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-grid h2 {
  font-size: 1.35rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--n2m-border);
  border-radius: 24px;
  background: rgba(248, 251, 251, 0.88);
  box-shadow: var(--n2m-shadow-md);
}

.brand-story picture,
.brand-story img {
  display: block;
  width: 100%;
}

.brand-story img {
  height: auto;
  object-fit: contain;
}

.brand-story h2 {
  margin: 0;
  color: var(--n2m-text);
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  line-height: 1.08;
}

.brand-story p:not(.v2-eyebrow) {
  margin: 18px 0 0;
  color: var(--n2m-muted);
}

.footer-grid h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p {
  color: #aac3cb;
}

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

.footer-grid a {
  color: #d7e7eb;
}

.footer-grid a:hover {
  color: #58ded1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--n2m-max));
  margin: 0 auto;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(174, 210, 219, 0.17);
  color: #92adb6;
  font-size: 0.85rem;
}

.footer-closing {
  color: #58ded1;
  font-weight: 850;
}

.global-header a:focus-visible,
.global-header summary:focus-visible,
.menu-toggle:focus-visible,
.v2-button:focus-visible,
.card-link:focus-visible,
.global-footer a:focus-visible,
.consultation-form input:focus-visible,
.consultation-form select:focus-visible,
.consultation-form textarea:focus-visible,
.faq-list summary:focus-visible {
  outline: none;
  box-shadow: var(--n2m-focus);
}

@media (max-width: 1240px) {
  .site-brand {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-flex;
  }

  .global-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    max-height: calc(100vh - 82px);
    padding: 18px 20px 30px;
    border-top: 1px solid var(--n2m-border);
    background: #edf4f4;
    box-shadow: var(--n2m-shadow-md);
    overflow-y: auto;
  }

  .global-nav.open {
    display: grid;
  }

  .global-nav > a,
  .nav-dropdown > summary {
    width: 100%;
    padding: 11px 13px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    border: 0;
    background: #dfecec;
    box-shadow: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid,
  .contact-layout,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .brand-story picture {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .about-profile-card {
    width: min(100%, 500px);
  }

  .contact-side-copy {
    position: static;
  }

  .dual-visual {
    min-height: 390px;
  }

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

  .card-grid.three,
  .case-grid,
  .pricing-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 24px, var(--n2m-max));
  }

  .site-brand {
    width: 50px;
    height: 50px;
  }

  .section-shell {
    width: min(100% - 28px, var(--n2m-max));
  }

  .v2-hero {
    padding-top: 54px;
  }

  .v2-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .division-grid,
  .card-grid.two,
  .card-grid.three,
  .outcome-grid,
  .values-grid,
  .process-grid,
  .case-grid,
  .pricing-grid,
  .contact-paths,
  .consultation-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-chapter,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .story-chapter.reverse .story-media,
  .story-chapter.reverse .story-milestone {
    order: 0;
  }

  .site-v2 .planner-tools {
    position: static;
  }

  .conditional-fields {
    grid-template-columns: 1fr;
  }

  .consultation-form .form-heading,
  .consultation-form .full-field,
  .consultation-form .form-actions,
  .checkbox-field {
    grid-column: 1;
  }

  .dual-visual {
    min-height: 520px;
  }

  .visual-half {
    width: 100%;
    height: 50%;
  }

  .visual-half.marketing {
    inset: 0 0 auto;
  }

  .visual-half.network {
    inset: auto 0 0;
  }

  .browser-frame {
    margin-top: 20px;
  }

  .network-map {
    height: 220px;
    margin-top: 10px;
  }

  .price-card.featured {
    transform: none;
  }

  .division-switcher,
  .cta-banner,
  .footer-bottom {
    display: block;
  }

  .division-switcher a,
  .footer-bottom > * + * {
    display: block;
    margin-top: 12px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .v2-button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .site-brand {
    width: 46px;
    height: 46px;
  }

  .v2-card,
  .service-detail,
  .value-card,
  .process-step,
  .case-card,
  .price-card,
  .division-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
