:root {
  --ff-ink: #071d34;
  --ff-deep: #0c2744;
  --ff-lime: #9ae33c;
  --ff-mint: #54d685;
  --ff-cyan: #28aee4;
  --ff-blue: #1f77e8;
  --ff-paper: #f7fafc;
  --ff-card: #fff;
  --ff-muted: #5d6b7c;
  --ff-line: #e2eaf2;
  --ff-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --ff-wordmark-weight: 760;
  --ff-solutions-spacing: 13px;
  --ff-logo-scale: 1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ff-paper);
  color: var(--ff-ink);
  font-family: var(--ff-font);
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.brand-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(120deg, var(--ff-ink), var(--ff-deep));
  border-bottom: 4px solid var(--ff-blue);
  box-shadow: 0 10px 30px rgba(7, 29, 52, 0.14);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dynamic-logo {
  display: block;
  width: 238px;
  max-width: 62vw;
  transform: scale(var(--ff-logo-scale));
  transform-origin: left center;
}
.dynamic-logo .bar-lime {
  fill: var(--ff-lime);
}
.dynamic-logo .bar-mint {
  fill: var(--ff-mint);
}
.dynamic-logo .bar-cyan {
  fill: var(--ff-cyan);
}
.dynamic-logo .bar-blue {
  fill: var(--ff-blue);
}
.dynamic-logo .wordmark {
  fill: #fff;
  font-weight: var(--ff-wordmark-weight);
}
.dynamic-logo .solutions {
  fill: var(--ff-lime);
  letter-spacing: var(--ff-solutions-spacing);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
}
.header-nav a {
  opacity: 0.88;
}
.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--ff-lime);
  opacity: 1;
}
.nav-cta {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}
.nav-cta:hover {
  background: #fff;
  color: var(--ff-ink) !important;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ff-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding-bottom: 15px;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--ff-lime);
}
h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}
p {
  color: var(--ff-muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  padding: 0.92rem 1.15rem;
  background: var(--ff-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 119, 232, 0.22);
  transition: 0.2s transform, 0.2s filter;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}
.button.secondary {
  background: #fff;
  color: var(--ff-ink);
  box-shadow: 0 8px 24px rgba(7, 29, 52, 0.09);
  border: 1px solid var(--ff-line);
}
.section {
  padding: 90px 0;
}
.section-tint {
  background: #fff;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
}
.section-heading p {
  max-width: 400px;
  margin: 0;
  font-size: 1.05rem;
}
.hero-home {
  background: radial-gradient(
      circle at 88% 10%,
      rgba(40, 174, 228, 0.18),
      transparent 30%
    ),
    linear-gradient(125deg, #06182d, var(--ff-deep));
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero-home:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -170px;
  background: radial-gradient(
    circle,
    rgba(154, 227, 60, 0.17),
    transparent 67%
  );
  pointer-events: none;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  margin-bottom: 75px;
}
.hero-home h1 {
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  margin: 0.8rem 0 1.25rem;
  max-width: 780px;
}
.hero-home h1 span {
  color: var(--ff-lime);
}
.hero-home p {
  color: #d4e1ee;
  max-width: 650px;
  font-size: 1.1rem;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.hero-proof {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  color: #d7e7f4;
  font-size: 0.92rem;
  font-weight: 700;
}
.hero-proof strong {
  color: #fff;
  font-size: 1.4rem;
  display: block;
}
.hero-art {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}
.hero-art .art-panel {
  width: min(100%, 480px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7px);
}
.art-panel img {
  width: 100%;
  display: block;
}
.floating-card {
  position: absolute;
  background: #fff;
  color: var(--ff-ink);
  padding: 15px 17px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}
.floating-card.one {
  left: 0;
  bottom: 48px;
}
.floating-card.two {
  right: -10px;
  top: 36px;
}
.floating-card small {
  display: block;
  color: var(--ff-muted);
  font-weight: 700;
  margin-top: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: 22px;
  padding: 28px;
  overflow: hidden;
  transition: 0.2s transform, 0.2s box-shadow;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(7, 29, 52, 0.1);
}
.service-card:after {
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, var(--ff-lime), var(--ff-blue));
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(154, 227, 60, 0.18),
    rgba(31, 119, 232, 0.1)
  );
  display: grid;
  place-items: center;
  margin-bottom: 19px;
}
.service-icon img {
  height: 30px;
  width: 30px;
}
.service-card h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}
.service-card p {
  margin: 0 0 18px;
}
.text-link {
  font-weight: 900;
  color: var(--ff-blue);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  border-top: 2px solid var(--ff-line);
  padding-top: 20px;
  position: relative;
}
.process-step:before {
  content: attr(data-number);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ff-ink);
  color: #fff;
  font-weight: 900;
  margin-top: -40px;
  margin-bottom: 16px;
}
.process-step:nth-child(2):before {
  background: var(--ff-lime);
  color: var(--ff-ink);
}
.process-step:nth-child(3):before {
  background: var(--ff-cyan);
}
.process-step:nth-child(4):before {
  background: var(--ff-blue);
}
.process-step h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}
.process-step p {
  font-size: 0.95rem;
  margin: 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: 22px;
  overflow: hidden;
}
.work-thumb {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  padding: 18px;
}
.work-thumb img {
  max-width: 100%;
  max-height: 100%;
}
.work-copy {
  padding: 20px 22px;
}
.work-copy h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
}
.work-copy p {
  margin: 0;
  font-size: 0.94rem;
}
.quote-strip {
  background: linear-gradient(120deg, var(--ff-ink), var(--ff-deep));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0 72%,
    rgba(154, 227, 60, 0.12) 72% 74%,
    transparent 74% 76%,
    rgba(31, 119, 232, 0.16) 76% 78%,
    transparent 78%
  );
}
.quote-inner {
  position: relative;
  z-index: 1;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.quote-inner h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  max-width: 850px;
  margin: 0.5rem 0 0;
}
.quote-inner p {
  color: #d5e5f0;
  margin: 0;
}
.cta-section {
  background: linear-gradient(115deg, var(--ff-ink), var(--ff-deep));
  color: #fff;
}
.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 78px 0;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 0.6rem 0;
}
.cta-content p {
  margin: 0;
  color: #d5e1ee;
  max-width: 600px;
}
.site-footer {
  background: #061629;
  color: #c6d3df;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-inner .dynamic-logo {
  width: 170px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 750;
}
.footer-inner p {
  margin: 0;
  font-size: 0.86rem;
}
.contact-hero {
  padding: 92px 0 44px;
  background: linear-gradient(125deg, #071d34, #0c2744);
  color: #fff;
}
.contact-hero h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
  margin: 0.7rem 0 1rem;
}
.contact-hero p {
  color: #d5e1ee;
  max-width: 650px;
  font-size: 1.1rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.contact-panel,
.contact-form {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(7, 29, 52, 0.06);
}
.contact-panel h2,
.contact-form h2 {
  font-size: 1.65rem;
  margin: 0 0 12px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 13px;
}
.contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-details img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.contact-details strong {
  display: block;
}
.contact-details span {
  color: var(--ff-muted);
  font-size: 0.94rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 850;
  font-size: 0.88rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e2eb;
  border-radius: 12px;
  padding: 0.83rem 0.9rem;
  font: inherit;
  color: var(--ff-ink);
  background: #fff;
  outline: none;
  transition: 0.15s border, 0.15s box-shadow;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ff-blue);
  box-shadow: 0 0 0 4px rgba(31, 119, 232, 0.12);
}
.form-note {
  font-size: 0.83rem;
  margin: 13px 0 0;
}
.success-message {
  display: none;
  margin: 16px 0 0;
  padding: 13px 14px;
  background: rgba(84, 214, 133, 0.13);
  border: 1px solid rgba(84, 214, 133, 0.45);
  border-radius: 12px;
  color: #246c3e;
  font-weight: 750;
}
.success-message.show {
  display: block;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: 14px;
  padding: 16px 18px;
}
.faq-list summary {
  font-weight: 850;
  cursor: pointer;
}
.faq-list p {
  margin: 10px 0 0;
  font-size: 0.94rem;
}
.nav-active {
  color: var(--ff-lime) !important;
  opacity: 1 !important;
}
@media (max-width: 960px) {
  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 68px 0;
    min-height: auto;
  }
  .hero-art {
    min-height: 370px;
  }
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
  }
  .section-heading,
  .quote-inner,
  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-nav {
    display: none;
  }
  .contact-layout {
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }
  .header-inner {
    min-height: 74px;
  }
  .dynamic-logo {
    width: 206px;
  }
  .section {
    padding: 62px 0;
  }
  .hero-home h1 {
    font-size: 3.05rem;
  }
  .hero-art {
    min-height: 300px;
  }
  .floating-card {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-hero {
    padding-top: 70px;
  }
  .contact-panel,
  .contact-form {
    padding: 23px;
  }
}

.development-section {
  background: linear-gradient(125deg, #06182d, var(--ff-deep));
  color: #fff;
  overflow: hidden;
  position: relative;
}
.development-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 0 68%,
    rgba(154, 227, 60, 0.12) 68% 70%,
    transparent 70% 72%,
    rgba(31, 119, 232, 0.14) 72% 74%,
    transparent 74%
  );
}
.development-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.development-copy {
  padding: 90px 0;
}
.development-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.85rem);
  margin: 0.75rem 0 1.25rem;
}
.development-copy p {
  color: #d4e1ee;
  max-width: 665px;
  font-size: 1.08rem;
}
.development-art {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}
.development-art .art-panel {
  width: min(100%, 490px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7px);
}
.development-art .art-panel img {
  width: 100%;
  display: block;
}
.development-art .floating-card {
  position: absolute;
}
.development-art .floating-card.one {
  left: -10px;
  bottom: 48px;
}
.development-art .floating-card.two {
  right: -10px;
  top: 34px;
}
.platform-strip {
  background: #fff;
  border-top: 1px solid var(--ff-line);
  border-bottom: 1px solid var(--ff-line);
}
.platform-strip-inner {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: end;
}
.platform-strip h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
}
.platform-strip p {
  font-size: 1.08rem;
  margin: 0;
}
.development-cards .service-card:nth-child(1):after {
  background: linear-gradient(90deg, var(--ff-lime), var(--ff-mint));
}
.development-cards .service-card:nth-child(2):after {
  background: linear-gradient(90deg, var(--ff-mint), var(--ff-cyan));
}
.development-cards .service-card:nth-child(3):after {
  background: linear-gradient(90deg, var(--ff-cyan), var(--ff-blue));
}
@media (max-width: 960px) {
  .development-grid,
  .platform-strip-inner {
    grid-template-columns: 1fr;
  }
  .development-copy {
    padding: 68px 0 20px;
  }
  .development-art {
    min-height: 360px;
  }
  .development-art .floating-card {
    display: none;
  }
}
@media (max-width: 540px) {
  .development-copy h2 {
    font-size: 2.7rem;
  }
  .development-art {
    min-height: 270px;
  }
}

/* Mobile-first product experience */
.mobile-app-nav {
  display: none;
}
.mobile-experience {
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbff 0%, #ffffff 52%, #eef8ff 100%);
}
.mobile-experience-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.mobile-copy h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.7rem);
  margin: 0.7rem 0 1.15rem;
}
.mobile-copy > p {
  max-width: 650px;
  font-size: 1.08rem;
  margin-bottom: 26px;
}
.mobile-benefits {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
}
.mobile-benefits > div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--ff-line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(7, 29, 52, 0.05);
}
.mobile-benefits img {
  width: 25px;
  height: 25px;
  color: var(--ff-blue);
  flex: 0 0 auto;
}
.mobile-benefits strong {
  display: block;
  color: var(--ff-ink);
  margin-bottom: 2px;
}
.mobile-benefits span {
  font-size: 0.93rem;
  color: var(--ff-muted);
}
.mobile-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.mobile-visual-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 119, 232, 0.17),
    rgba(154, 227, 60, 0.1) 44%,
    transparent 70%
  );
}
.mobile-visual > img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  filter: drop-shadow(0 28px 36px rgba(7, 29, 52, 0.16));
}
@media (max-width: 960px) {
  .mobile-experience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mobile-visual {
    min-height: 340px;
    order: -1;
  }
  .mobile-visual > img {
    width: min(100%, 500px);
  }
}
@media (max-width: 700px) {
  body {
    padding-bottom: 80px;
  }
  .site-footer {
    padding-bottom: 24px;
  }
  .mobile-app-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    z-index: 80;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 68px;
    padding: 8px max(12px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: rgba(6, 24, 45, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 26px rgba(7, 29, 52, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
  .mobile-app-nav a {
    display: grid;
    justify-items: center;
    gap: 4px;
    align-content: center;
    color: #aac0d4;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    min-height: 51px;
    border-radius: 14px;
  }
  .mobile-app-nav a img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    opacity: 0.86;
  }
  .mobile-app-nav a.active,
  .mobile-app-nav a:hover {
    color: #fff;
  }
  .mobile-app-nav a.active img,
  .mobile-app-nav a:hover img {
    filter: none;
    opacity: 1;
  }
  .mobile-app-nav .mobile-nav-cta {
    background: linear-gradient(135deg, var(--ff-lime), #62c738);
    color: var(--ff-ink);
    margin: 0 2px;
    box-shadow: 0 7px 16px rgba(154, 227, 60, 0.25);
  }
  .mobile-app-nav .mobile-nav-cta img {
    filter: none;
    opacity: 1;
  }
  .header-inner {
    min-height: 66px;
  }
  .dynamic-logo {
    width: 178px;
  }
  .hero-grid {
    padding: 44px 0 50px;
  }
  .hero-home h1 {
    font-size: clamp(2.55rem, 11vw, 3.7rem);
    line-height: 1.01;
  }
  .hero-home p {
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    text-align: center;
    width: 100%;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    font-size: 0.74rem;
  }
  .hero-proof strong {
    font-size: 1rem;
  }
  .hero-art {
    min-height: 260px;
    margin-top: 4px;
  }
  .hero-art .art-panel {
    padding: 15px;
    border-radius: 22px;
  }
  .mobile-experience {
    padding-top: 54px;
  }
  .mobile-copy h2 {
    font-size: 2.45rem;
  }
  .mobile-copy > p {
    font-size: 1rem;
  }
  .mobile-visual {
    min-height: 260px;
  }
  .mobile-benefits > div {
    padding: 13px;
  }
  .section-heading h2 {
    font-size: 2.2rem;
  }
  .contact-hero h1 {
    font-size: 3rem;
  }
  .platform-strip-inner {
    padding: 54px 0;
  }
  .platform-strip h2 {
    font-size: 2.25rem;
  }
  .development-copy {
    padding: 54px 0 10px;
  }
  .development-copy h2 {
    font-size: 2.5rem;
  }
}
