:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-line: #e3e8f4;
  --text: #111827;
  --muted: #697386;
  --navy: #111a2f;
  --blue: #2f3e9f;
  --blue-strong: #243181;
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
  --shadow-card: 0 18px 46px rgba(17, 24, 39, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(110, 130, 255, 0.06), transparent 18%),
    radial-gradient(circle at bottom right, rgba(110, 130, 255, 0.05), transparent 18%),
    var(--bg);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section-space { padding: 56px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.topbar,
.main-nav,
.hero-grid,
.product-badge,
.price-row,
.hero-actions,
.trusted-strip,
.logo-row,
.section-heading--with-controls,
.slider-controls,
.newsletter-panel,
.newsletter-form,
.process-panel,
.support-strip,
.sticky-cta__inner,
.footer-shell {
  display: flex;
}

.topbar {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

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

.brand-logo {
  width: 112px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.main-nav a { color: #2e3347; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link--dropdown::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.button {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  font-weight: 700;
}

.button:hover,
.gallery-nav:hover,
.round-button:hover,
.gallery-thumb:hover,
.process-tab:hover { transform: translateY(-1px); }

.button--nav,
.button--primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-strong));
  color: white;
  box-shadow: 0 12px 24px rgba(47, 62, 159, 0.22);
}

.button--nav {
  padding: 10px 18px;
  font-size: 12px;
}

.button--secondary {
  background: white;
  color: #29324a;
  border: 1px solid var(--surface-line);
}

.button--dark-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button--dark {
  background: #232937;
  color: white;
}

.sticky-cta {
  position: fixed;
  inset: 14px 0 auto;
  transform: translateY(-140%);
  transition: transform 220ms ease;
  z-index: 30;
  pointer-events: none;
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__inner {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(17, 24, 39, 0.08);
  pointer-events: auto;
}

.micro-copy,
.label,
.breadcrumb,
.price-note,
.section-heading p,
.trusted-strip p,
.info-card p,
.newsletter-panel p,
.application-card p,
.testimonial-card span,
.portfolio-card p,
.support-strip p,
.cta-copy p,
.cta-copy small,
.footer-links-grid a,
.footer-links-grid h4 { color: var(--muted); }

.micro-copy,
.label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.hero-section { padding-top: 22px; }

.hero-grid {
  align-items: start;
  gap: 42px;
}

.gallery-column { flex: 1.02; }
.product-column { flex: 0.92; }

.breadcrumb {
  margin: 0 0 14px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.breadcrumb span {
  position: relative;
}

.breadcrumb span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}

.gallery-card,
.pricing-box,
.info-card,
.newsletter-panel,
.application-card,
.process-panel,
.testimonial-card,
.portfolio-card,
.support-strip,
.download-list,
.cta-shell,
.footer-shell {
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: var(--shadow-soft);
}

.gallery-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.gallery-stage {
  min-height: 438px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f1f4fa, #eef2fb);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav,
.round-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: white;
  color: #29324a;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  border: 1px solid var(--surface-line);
  background: white;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.04);
}

.gallery-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(47, 62, 159, 0.12);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  color: #4b5565;
}

.cert-badge::before {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 4px;
  color: var(--blue);
  background: rgba(47, 62, 159, 0.08);
  content: "✓";
}

.cert-badge--ce::before {
  content: "CE";
  font-size: 8px;
  font-weight: 800;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  max-width: 11ch;
}

.product-meta { margin-top: 20px; }

.product-meta ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.product-meta li {
  position: relative;
  padding-left: 22px;
  line-height: 1.35;
  color: #243042;
  font-size: 15px;
}

.product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 62, 159, 0.12);
}

.pricing-box {
  margin-top: 22px;
  padding: 14px 14px 16px;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

.price-row strong { font-size: 18px; }
.price-note {
  display: inline-flex;
  margin: 12px 8px 0 0;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 6px;
  background: #fff2c6;
  color: #9a6600;
}

.hero-actions {
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trusted-strip {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
  text-align: center;
}

.logo-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
  width: 100%;
}

.logo-row img {
  width: 130px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.specs-band {
  background: #151d2d;
  padding-top: 70px;
  padding-bottom: 66px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.section-heading--light h2,
.section-heading--light p { color: white; }

.section-heading--light {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--light p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.section-heading--compact { margin-bottom: 18px; }

.section-heading--with-controls {
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.industry-copy {
  max-width: 620px;
}

.industry-copy h2 {
  max-width: 10ch;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.industry-copy p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
}

.slider-controls {
  gap: 12px;
  flex: 0 0 auto;
  padding-top: 0;
}

.section-heading--center {
  text-align: center;
  justify-items: center;
}

.section-heading--center p { max-width: 730px; }

.specs-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.specs-table th,
.specs-table td {
  padding: 14px 18px;
  text-align: left;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.specs-table th {
  background: rgba(139, 152, 177, 0.28);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
}

.specs-table tbody tr:last-child td {
  border-bottom: 0;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.specs-band .button--dark-outline {
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  padding: 10px 20px;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
}

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

.info-card {
  border-radius: 14px;
  padding: 18px 16px 16px;
  min-height: 170px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.info-card__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  line-height: 1;
}

.info-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.info-card p,
.application-card p,
.portfolio-card p,
.testimonial-card p {
  line-height: 1.65;
  font-size: 14px;
}

.button--feature-cta {
  width: auto;
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
}

.faq-section { padding-top: 34px; }

.faq-section .section-heading h2 span {
  color: var(--blue);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 10px;
  padding: 0 16px;
  background: white;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 40px 16px 0;
  font-weight: 600;
  list-style: none;
  position: relative;
  font-size: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #f8f9fc;
  transform: translateY(-50%);
}

.faq-item summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #9aa3b2;
  border-bottom: 1.5px solid #9aa3b2;
  transform: translateY(-70%) rotate(45deg);
  z-index: 1;
}

.faq-item[open] summary::before {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.newsletter-panel {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.newsletter-copy h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.newsletter-copy p {
  max-width: 440px;
  line-height: 1.6;
}

.newsletter-form {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.newsletter-form input,
.cta-form input {
  border: 1px solid var(--surface-line);
  border-radius: 10px;
  padding: 10px 14px;
  background: white;
}

.newsletter-form .button {
  padding-top: 9px;
  padding-bottom: 9px;
}

.application-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
}

.application-card {
  overflow: hidden;
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  background: #171e33;
  color: white;
  border: 0;
  box-shadow: none;
}

.application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 47, 0.05) 0%, rgba(17, 26, 47, 0.2) 38%, rgba(17, 26, 47, 0.86) 100%);
}

.application-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px 16px 16px;
}

.application-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 500;
}

.application-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.process-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.process-tab {
  border: 1px solid var(--surface-line);
  background: white;
  color: #3b4353;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  box-shadow: none;
}

.process-tab.is-active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.process-panel {
  align-items: stretch;
  gap: 24px;
  padding: 20px;
  border-radius: 18px;
}

.process-copy,
.process-media { flex: 1; }

.process-copy h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.process-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.process-copy ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  line-height: 1.65;
}

.process-copy li {
  position: relative;
  padding-left: 18px;
}

.process-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.process-copy.is-hidden { display: none; }

.process-media img {
  width: 100%;
  height: 100%;
  min-height: 242px;
  object-fit: cover;
  border-radius: 14px;
}

.testimonials-section { padding-top: 40px; }

.testimonial-grid,
.portfolio-grid,
.footer-links-grid {
  display: grid;
  gap: 16px;
}

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

.testimonial-card {
  border-radius: 20px;
  padding: 18px 20px 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  color: var(--blue);
  font-size: 56px;
  line-height: 0.8;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}

.testimonial-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.testimonial-card p {
  margin: 0 0 24px;
  flex: 1;
  color: #606978;
}

.testimonial-card strong,
.application-card h3,
.portfolio-card h3 {
  display: block;
  margin-bottom: 6px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e8ebf3;
  flex: 0 0 auto;
}

.testimonial-author strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 12px;
}

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

.portfolio-card {
  border-radius: 18px;
  padding: 16px;
}

.portfolio-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  border-radius: 10px;
  margin: 14px 0;
}

.portfolio-card h3 {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.portfolio-card p {
  margin: 0;
  color: #606978;
}

.portfolio-card .button--secondary {
  width: 100%;
  border-radius: 10px;
  color: var(--blue);
  border-color: #cfd6ea;
  background: #f7f9ff;
  box-shadow: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.support-strip {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 22px;
}

.support-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.support-strip strong span {
  color: var(--blue);
}

.support-strip p {
  margin: 0;
  font-size: 14px;
}

.support-strip .button--primary {
  width: auto;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: none;
}

.download-list {
  display: grid;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: none;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 14px;
}

.download-item:last-child { border-bottom: 0; }

.download-item span:last-child {
  color: var(--blue);
  font-weight: 700;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 286px;
  align-items: center;
  column-gap: 44px;
  row-gap: 24px;
  border-radius: 24px;
  padding: 34px 38px;
  background: #2e3a88;
  color: white;
}

.cta-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  margin-bottom: 14px;
  line-height: 1.08;
  max-width: 12ch;
}

.cta-copy p,
.cta-copy small {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  line-height: 1.75;
}

.cta-copy p {
  max-width: 44ch;
  margin: 0 0 26px;
}

.cta-copy small {
  max-width: 520px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-form {
  width: 286px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
  justify-self: end;
}

.cta-form h2 {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
  color: #111827;
}

.cta-form input,
.cta-phone-row select {
  border-color: #d9dfeb;
  background: #ffffff;
}

.cta-phone-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
}

.cta-phone-row select {
  border: 1px solid var(--surface-line);
  border-radius: 10px;
  padding: 10px 8px;
  font: inherit;
  color: #111827;
}

.cta-form .button--dark {
  margin-top: 2px;
  border-radius: 10px;
  padding-top: 11px;
  padding-bottom: 11px;
  background: #232937;
  box-shadow: none;
}

.site-footer { padding-top: 18px; }

.footer-shell {
  flex-direction: column;
  gap: 34px;
  padding: 34px 34px 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.footer-brand {
  flex: 0 0 auto;
}

.brand-logo--footer {
  width: 140px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-summary h3 {
  max-width: 18ch;
  font-size: 20px;
  line-height: 1.2;
  text-align: right;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 500;
  color: #111827;
}

.footer-summary h3 span {
  color: var(--blue);
  font-weight: 700;
}

.footer-links-grid {
  grid-template-columns: 0.9fr 1.3fr 1.1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.footer-links-grid h4 {
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #111827;
}

.footer-links-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact a {
  max-width: 26ch;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.footer-bottom p,
.footer-legal-links a {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .process-panel,
  .newsletter-panel,
  .support-strip { flex-direction: column; }

  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-track,
  .testimonial-grid,
  .portfolio-grid,
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-topbar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-summary h3 { text-align: left; }
  .section-heading--with-controls { align-items: flex-start; }
  .cta-shell {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .cta-form {
    width: min(420px, 100%);
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .main-nav { gap: 14px; font-size: 13px; }
  .gallery-card { grid-template-columns: 34px minmax(0, 1fr) 34px; }
  .gallery-stage { min-height: 300px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .feature-grid,
  .application-track,
  .testimonial-grid,
  .portfolio-grid,
  .footer-links-grid { grid-template-columns: 1fr; }

  .newsletter-form { width: 100%; flex-direction: column; align-items: stretch; }
  .button { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .sticky-cta__inner { flex-direction: column; align-items: stretch; }
  .footer-shell { padding: 24px 0 8px; }
  .footer-topbar { padding: 18px; }
  .footer-legal-links { flex-wrap: wrap; gap: 16px; }
  .brand-logo { width: 104px; }
  .logo-row { gap: 24px; }
  .logo-row img { width: 108px; }
  .button--feature-cta { width: auto; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 1rem)); }
  .topbar { flex-direction: column; align-items: flex-start; }
  .main-nav { width: 100%; justify-content: space-between; flex-wrap: wrap; }
  .section-space { padding: 42px 0; }
  .process-copy h3,
  .section-heading h2,
  .cta-copy h2 { font-size: 28px; }
  .support-strip,
  .cta-shell { padding: 18px; }
}
