:root {
  --navy: #00063f;
  --ink: #050817;
  --panel: #07132d;
  --cyan: #6ccef5;
  --cyan-soft: rgba(108, 206, 245, 0.16);
  --orange: #fc832b;
  --white: #ffffff;
  --muted: #aeb8c9;
  --line: rgba(108, 206, 245, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

img {
  max-width: 100%;
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.nav-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 104px;
  padding: 20px 0;
}

.site-nav.scrolled,
.site-nav.menu-open {
  background: rgba(0, 6, 63, 0.94);
  border-bottom: 1px solid rgba(108, 206, 245, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 64px;
}

.brand span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #dbe7f5;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
  color: var(--orange);
}

.nav-links a.nav-active {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  padding: 0;
}

.nav-dropdown-toggle i {
  font-size: 0.68rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  display: none;
  min-width: 230px;
  border: 1px solid rgba(108, 206, 245, 0.24);
  background: rgba(5, 8, 23, 0.98);
  padding: 10px;
  margin-top: 14px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  padding: 9px 10px;
  color: #dbe7f5;
  font-size: 0.82rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(108, 206, 245, 0.08);
}

.nav-cta {
  border: 1px solid rgba(108, 206, 245, 0.42);
  border-radius: 999px;
  padding: 10px 17px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 650;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-cta:hover {
  background: rgba(108, 206, 245, 0.1);
  border-color: var(--cyan);
}

.menu-button {
  display: none;
  border: 1px solid rgba(108, 206, 245, 0.42);
  background: rgba(0, 6, 63, 0.35);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  font-size: 1.2rem;
}

.hero-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(1.45);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82));
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(1024px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 128px 0 96px;
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.faa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  border: 1px solid rgba(108, 206, 245, 0.3);
  background: rgba(108, 206, 245, 0.15);
  color: var(--cyan);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  backdrop-filter: blur(12px);
}

.section-label,
.app-kicker {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.hero-title span {
  color: var(--cyan);
}

.matched-hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left !important;
}

.hero-copy {
  max-width: 672px;
  margin: 40px auto 0;
  color: #f4f4f5;
  font-size: 1.125rem;
  line-height: 1.55;
  text-align: center;
}

.matched-hero-copy {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.matched-hero-actions {
  margin-top: 2.5rem;
  gap: 0.75rem;
}

.matched-hero-actions > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.92rem;
  line-height: 1.15rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.matched-hero-actions > :first-child {
  border: 1px solid rgba(255, 132, 34, 0.7);
  background: linear-gradient(135deg, #ff7a1a, #f05a18);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.2);
  color: #fff;
  font-weight: 600;
}

.matched-hero-actions > :last-child {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(5, 8, 23, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.matched-hero-actions > :first-child:hover {
  background: linear-gradient(135deg, #ff8a2d, #e95a16);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.25);
  transform: translateY(-1px);
}

.matched-hero-actions > :last-child:hover {
  background: linear-gradient(135deg, #ff8a2d, #e95a16);
  border-color: rgba(255, 132, 34, 0.8);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.25);
  transform: translateY(-1px);
}

.matched-hero-actions .button {
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.15rem;
  border-radius: 9999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 19px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button.primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.text-link {
  color: var(--cyan);
  padding-inline: 6px;
}

.hero-actions .button {
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0 1.2rem;
  font-size: 0.92rem;
  line-height: 1;
  gap: 9px;
  border-radius: 999px;
}

.hero-actions .button.primary {
  background: linear-gradient(135deg, #ff7a1a, #f05a18);
  border-color: rgba(255, 132, 34, 0.7);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.2);
  font-weight: 600;
}

.hero-actions .button.primary:hover {
  background: linear-gradient(135deg, #ff8a2d, #e95a16);
  border-color: rgba(255, 132, 34, 0.8);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.25);
}

.hero-actions .button.secondary {
  background: rgba(5, 8, 23, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.hero-actions .button.secondary:hover {
  border-color: rgba(108, 206, 245, 0.9);
  box-shadow: 0 0 0 1px rgba(108, 206, 245, 0.55), 0 12px 26px rgba(108, 206, 245, 0.16);
}

.button.primary span {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-0.02em);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  color: #f4f4f5;
  font-size: 0.92rem;
}

.hero-proof div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-proof i {
  color: var(--cyan);
  font-size: 2rem;
}

@media (min-width: 768px) {
  .hero-title,
  .matched-hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .faa-badge {
    background-color: rgba(251, 146, 60, 0.18) !important;
    color: #fb923c !important;
    border: 1px solid rgba(251, 146, 60, 0.4) !important;
  }
}

.hero-summary-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(8, 14, 34, 0.96), rgba(5, 8, 23, 0.98));
}

.hero-summary-cards div {
  min-width: 0;
  min-height: 150px;
  padding: 28px 30px;
  border: 1px solid rgba(108, 206, 245, 0.24);
  background: rgba(5, 8, 23, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-summary-cards span {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.hero-summary-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-summary-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
}

.platform-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: stretch;
  padding: clamp(32px, 4vw, 52px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(108, 206, 245, 0.16), transparent 34%),
    linear-gradient(180deg, #050817 0%, #00063f 100%);
  color: var(--white);
}

.platform-statement {
  align-self: center;
}

.platform-statement h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.15vw, 3.2rem);
  line-height: 1.08;
}

.signal-board {
  display: grid;
  border: 1px solid rgba(108, 206, 245, 0.24);
  background: rgba(7, 19, 45, 0.72);
}

.signal-board div {
  padding: 22px;
  border-bottom: 1px solid rgba(108, 206, 245, 0.18);
}

.signal-board div:last-child {
  border-bottom: 0;
}

.signal-board span {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-board strong {
  display: block;
  margin-top: 10px;
  color: #f8fbff;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  font-weight: 650;
  line-height: 1.25;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.15vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lead,
.split-copy p,
.contact-section p {
  color: #d6dfec;
  font-size: 1.18rem;
  line-height: 1.7;
}

.dark-section {
  background:
    linear-gradient(180deg, #00063f 0%, #050817 100%);
}

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

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

.studio-section {
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background: #050817;
}

.studio-section .section-heading {
  margin-bottom: 34px;
}

.studio-heading {
  max-width: none;
}

.studio-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.studio-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 620px;
  border: 1px solid rgba(108, 206, 245, 0.2);
  overflow: hidden;
}

.studio-lanes article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(108, 206, 245, 0.18);
}

.studio-lanes article:last-child {
  border-right: 0;
}

.studio-lanes img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.08);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.studio-lanes article:hover img {
  transform: scale(1.05);
  filter: brightness(0.72) saturate(1.18);
}

.lane-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 23, 0.94) 42%);
}

.lane-copy span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lane-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.lane-copy p {
  color: #d9e3f0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.lane-copy a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 750;
}

.local-seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: start;
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(108, 206, 245, 0.12);
  background: linear-gradient(180deg, #050817 0%, #00063f 100%);
}

.local-seo-section .section-heading {
  max-width: 620px;
}

.local-seo-section h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.06;
}

.local-seo-copy {
  display: grid;
  gap: 18px;
  color: #dbe7f5;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.65;
}

.local-seo-copy p {
  margin: 0;
}

.production-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(0, 6, 63, 0.96) 0%, rgba(5, 8, 23, 0.98) 56%, rgba(7, 19, 45, 0.94) 100%),
    #050817;
  border-top: 1px solid rgba(108, 206, 245, 0.14);
  border-bottom: 1px solid rgba(108, 206, 245, 0.14);
}

.production-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.04;
}

.production-copy p {
  max-width: 640px;
  color: #d6dfec;
  font-size: 1.14rem;
  line-height: 1.7;
}

.production-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.production-tags span {
  border: 1px solid rgba(108, 206, 245, 0.28);
  background: rgba(108, 206, 245, 0.08);
  color: var(--cyan);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: clamp(330px, 34vw, 420px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(108, 206, 245, 0.26);
  background: #07132d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.production-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.12) contrast(1.04);
}

.production-frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(108, 206, 245, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 206, 245, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, transparent 38%, rgba(5, 8, 23, 0.88) 100%);
  background-size: 80px 80px, 80px 80px, auto;
}

.production-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border-left: 3px solid var(--orange);
  background: rgba(5, 8, 23, 0.78);
  backdrop-filter: blur(14px);
  padding: 17px 19px;
}

.production-overlay span {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.production-overlay strong {
  display: block;
  margin-top: 8px;
  color: #f8fbff;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.production-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(108, 206, 245, 0.2);
  background: rgba(108, 206, 245, 0.2);
}

.production-notes article {
  min-width: 0;
  background: rgba(7, 19, 45, 0.9);
  padding: 22px;
}

.production-notes span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.production-notes h3 {
  margin: 10px 0 8px;
  font-size: 1.24rem;
  font-weight: 700;
}

.production-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.image-card,
.app-card,
.workflow-grid div {
  border: 1px solid rgba(108, 206, 245, 0.2);
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card div {
  padding: 22px;
}

.image-card i,
.app-icon {
  color: var(--cyan);
  font-size: 1.55rem;
}

.image-card h3,
.app-card h3,
.workflow-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.32rem;
  font-weight: 700;
}

.image-card p,
.app-card p,
.workflow-grid p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.intelligence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 6, 63, 0.94), rgba(5, 8, 23, 0.98)),
    #050817;
  color: var(--white);
}

.intelligence-section .split-copy {
  max-width: 720px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.metric-row div {
  border-left: 3px solid var(--orange);
  background: rgba(7, 19, 45, 0.88);
  border-top: 1px solid rgba(108, 206, 245, 0.16);
  border-right: 1px solid rgba(108, 206, 245, 0.16);
  border-bottom: 1px solid rgba(108, 206, 245, 0.16);
  padding: 15px;
}

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

.metric-row strong {
  color: var(--white);
  font-weight: 700;
}

.metric-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.visual-stack {
  position: relative;
  width: min(100%, 620px);
  justify-self: end;
  border: 1px solid rgba(0, 6, 63, 0.18);
  background: #0a0f2e;
  padding: 12px;
}

.visual-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 44%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(108, 206, 245, 0.92);
}

.data-tags {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.data-tags span {
  border: 1px solid rgba(108, 206, 245, 0.42);
  background: rgba(0, 6, 63, 0.76);
  color: var(--cyan);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.software-section {
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #050817 0%, #00063f 100%);
}

.software-heading {
  margin-bottom: 42px;
}

.app-card {
  padding: 24px;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(108, 206, 245, 0.34);
  border-radius: 8px;
  background: rgba(108, 206, 245, 0.08);
}

.app-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
}

.systems-section {
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #00063f 0%, #050817 100%);
  color: var(--white);
}

.systems-section .section-heading {
  margin-bottom: 38px;
}

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

.workflow-grid div {
  background: rgba(7, 19, 45, 0.86);
  border-color: rgba(108, 206, 245, 0.2);
  padding: 26px;
}

.workflow-grid span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.workflow-grid p {
  color: var(--muted);
}

.faq-section {
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.faq-grid article {
  border: 1px solid rgba(108, 206, 245, 0.22);
  background: rgba(7, 19, 45, 0.74);
  padding: 24px;
}

.faq-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.08rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
  padding: clamp(38px, 4.5vw, 63px) clamp(20px, 5vw, 72px);
  background: var(--navy);
}

.contact-section p {
  color: #d6dfec;
}

form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(108, 206, 245, 0.24);
  background: rgba(7, 19, 45, 0.92);
  border-radius: 8px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(108, 206, 245, 0.28);
  border-radius: 8px;
  background: #050817;
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 64px 0 40px;
  background: var(--navy);
  color: var(--muted);
}

.footer-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 64px;
}

.site-footer img {
  width: 150px;
  margin-bottom: 22px;
}

.footer-logo-white {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.footer-socials {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.footer-socials a {
  color: var(--muted);
  font-size: 2.15rem;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-socials a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    margin-left: 0;
    padding: 22px;
    background: rgba(0, 6, 63, 0.98);
    border-bottom: 1px solid rgba(108, 206, 245, 0.18);
  }

  .nav-links.open {
    display: grid;
    gap: 18px;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    margin-top: 10px;
    border-color: rgba(108, 206, 245, 0.18);
    background: rgba(7, 19, 45, 0.74);
  }

  .brand span {
    display: none;
  }

  .platform-strip,
  .hero-summary-cards,
  .production-section,
  .intelligence-section,
  .contact-section,
  .local-seo-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .app-grid,
  .workflow-grid,
  .faq-grid,
  .studio-lanes,
  .production-notes {
    grid-template-columns: 1fr;
  }

  .studio-lanes {
    min-height: auto;
  }

  .studio-heading h2 {
    white-space: normal;
  }

  .studio-lanes article {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(108, 206, 245, 0.18);
  }

  .production-stage {
    width: 100%;
    min-height: 360px;
    justify-self: stretch;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    min-height: 96px;
  }

  .brand img {
    width: auto;
    height: 56px;
  }

  .nav-links {
    top: 96px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .production-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .production-stage {
    min-height: 300px;
  }

  .production-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

}
