:root {
  color-scheme: light;
  --ink: #07100f;
  --graphite: #121819;
  --muted: #61706e;
  --line: #dce8e2;
  --surface: #f7faf8;
  --surface-strong: #edf5f1;
  --white: #ffffff;
  --emerald: #12b981;
  --emerald-dark: #087f5b;
  --cyan: #1b8fe3;
  --amber: #f0b44c;
  --wine: #792946;
  --shadow: 0 22px 70px rgba(7, 16, 15, 0.12);
  --shadow-soft: 0 16px 40px rgba(7, 16, 15, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--graphite);
  background: var(--surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf8 34%, #ffffff 100%);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
}

section {
  position: relative;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header--scrolled {
  padding: 10px 0;
  background: rgba(7, 16, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 15, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  background: linear-gradient(135deg, var(--emerald), var(--amber));
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(18, 185, 129, 0.35);
}

.brand span:last-child {
  display: grid;
  line-height: 1.08;
  white-space: nowrap;
}

.brand strong {
  color: #8df3c5;
}

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

.nav-links > a:not(.btn),
.nav-links > button:not(.btn) {
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 11px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.nav-links > a:not(.btn):hover,
.nav-links > button:not(.btn):hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--graphite);
  font-weight: 760;
  border-radius: var(--radius-sm);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  white-space: nowrap;
}

.btn svg {
  flex: 0 0 auto;
}

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

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--emerald), var(--amber));
  box-shadow: 0 18px 42px rgba(18, 185, 129, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary--light {
  color: var(--graphite);
  background: #ffffff;
  border-color: rgba(7, 16, 15, 0.12);
}

.btn-crm {
  color: var(--white);
  background: linear-gradient(135deg, #0b3544, var(--wine));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(7, 16, 15, 0.16);
}

.btn-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.9rem;
}

.hero {
  min-height: 88svh;
  padding: 140px 0 70px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(3, 9, 9, 0.96) 0%, rgba(5, 15, 14, 0.9) 38%, rgba(5, 15, 14, 0.46) 70%, rgba(5, 15, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 9, 9, 0.2), rgba(3, 9, 9, 0.82)),
    url("grupo-street-system-hero.jpg");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(247, 250, 248, 0), var(--surface));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--emerald-dark);
  font-size: 0.82rem;
  font-weight: 820;
  background: rgba(18, 185, 129, 0.12);
  border: 1px solid rgba(18, 185, 129, 0.22);
  border-radius: var(--radius-sm);
}

.hero-kicker {
  color: #a7f7d2;
  background: rgba(18, 185, 129, 0.14);
  border-color: rgba(167, 247, 210, 0.24);
}

.hero h1 {
  max-width: 15ch;
  margin: 22px 0 20px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  font-weight: 880;
}

.hero p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
}

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

.hero-stats {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  color: var(--white);
  font-size: 1.04rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.section {
  padding: 94px 0;
}

.section-alt {
  background: var(--surface-strong);
}

.section-header {
  max-width: 760px;
}

.section-header--center {
  margin: 0 auto 38px;
  text-align: center;
}

.section-header h2 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 860;
}

.section-header p,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy {
  max-width: 710px;
  margin-top: 18px;
}

.about-grid,
.crm-grid,
.integrations-grid,
.lead-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.pillar-grid {
  display: grid;
  gap: 16px;
}

.pillar-card,
.solution-card,
.benefit-card,
.plan-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 16, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pillar-card {
  min-height: 152px;
  padding: 23px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-dark);
  background: rgba(18, 185, 129, 0.12);
  border-radius: var(--radius-sm);
}

.icon-badge--dark {
  color: #a7f7d2;
  background: #10231f;
}

.pillar-card h3,
.solution-card h3,
.benefit-card h3,
.plan-card h3 {
  margin: 16px 0 9px;
  color: var(--ink);
  font-size: 1.12rem;
}

.pillar-card p,
.solution-card p,
.benefit-card p,
.plan-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

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

.solution-card {
  min-height: 370px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.solution-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.solution-topline > span {
  color: var(--emerald-dark);
  font-size: 0.83rem;
  font-weight: 800;
  background: rgba(18, 185, 129, 0.12);
  padding: 7px 9px;
  border-radius: var(--radius-sm);
}

.solution-card ul,
.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.solution-card li,
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #34403e;
  font-size: 0.94rem;
}

.solution-card li svg,
.plan-card li svg {
  flex: 0 0 auto;
  color: var(--emerald-dark);
  margin-top: 2px;
}

.text-action {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  color: var(--emerald-dark);
  background: transparent;
  font-weight: 820;
}

.crm-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 16, 15, 0.96), rgba(7, 16, 15, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(18, 185, 129, 0.16), transparent 34%);
}

.crm-section .section-header h2,
.crm-section .section-header p {
  color: var(--white);
}

.crm-section .section-header p {
  color: rgba(255, 255, 255, 0.74);
}

.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.crm-panel {
  overflow: hidden;
  background: #0f1718;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.crm-panel-header {
  display: flex;
  gap: 8px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-panel-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--emerald);
}

.crm-panel-header span:nth-child(2) {
  background: var(--amber);
}

.crm-panel-header span:nth-child(3) {
  background: var(--cyan);
}

.crm-panel-body {
  padding: 24px;
  display: grid;
  gap: 20px;
}

.crm-panel-main {
  min-height: 224px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(18, 185, 129, 0.18), rgba(27, 143, 227, 0.1)),
    #131f20;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.crm-panel-main span {
  color: rgba(255, 255, 255, 0.7);
}

.crm-panel-main strong {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.bar-chart {
  height: 72px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.bar-chart i {
  width: 100%;
  background: linear-gradient(180deg, var(--amber), var(--emerald));
  border-radius: 5px 5px 0 0;
}

.crm-feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.crm-feature-cloud span {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

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

.benefit-card {
  min-height: 232px;
  padding: 22px;
}

.benefit-card > svg {
  color: var(--emerald-dark);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.segment-tile {
  min-height: 98px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid rgba(7, 16, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.segment-tile svg {
  flex: 0 0 auto;
  color: var(--wine);
}

.segment-tile span {
  font-weight: 760;
}

.integrations-section {
  background: #ffffff;
}

.integration-note {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 14px;
  color: var(--emerald-dark);
  background: rgba(18, 185, 129, 0.11);
  border: 1px solid rgba(18, 185, 129, 0.18);
  border-radius: var(--radius);
  font-weight: 720;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.logo-cloud span {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  color: var(--graphite);
  background:
    linear-gradient(180deg, #ffffff, #f5faf7);
  border: 1px solid rgba(7, 16, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 780;
}

.logo-cloud svg {
  color: var(--cyan);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.plan-card {
  min-height: 470px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.plan-card--highlight {
  border-color: rgba(18, 185, 129, 0.34);
  box-shadow: 0 20px 60px rgba(18, 185, 129, 0.16);
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-head strong {
  color: var(--emerald-dark);
  font-size: 0.82rem;
}

.plan-tag {
  width: fit-content;
  padding: 7px 9px;
  color: var(--wine);
  background: rgba(121, 41, 70, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 820;
}

.plan-price {
  margin-top: 18px;
}

.plan-price strong,
.plan-price span {
  display: block;
}

.plan-price strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.1;
}

.plan-price span {
  color: var(--muted);
  margin-top: 4px;
}

.btn-plan {
  margin-top: auto;
  color: var(--white);
  background: var(--graphite);
}

.testimonials-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8f5 100%);
}

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

.testimonial-card {
  min-height: 282px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card svg {
  color: var(--amber);
}

.testimonial-card p {
  margin: 20px 0;
  color: #2e3937;
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(7, 16, 15, 0.09);
  border-radius: var(--radius);
}

.faq-item summary {
  list-style: none;
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  background: transparent;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item svg {
  flex: 0 0 auto;
  color: var(--emerald-dark);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

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

.lead-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 18, 17, 0.98), rgba(20, 30, 31, 0.96)),
    linear-gradient(90deg, rgba(18, 185, 129, 0.08), rgba(240, 180, 76, 0.07));
}

.lead-section .section-header h2,
.lead-section .section-header p {
  color: var(--white);
}

.lead-section .section-header p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.lead-points span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.lead-points svg {
  flex: 0 0 auto;
  color: var(--emerald);
  margin-top: 2px;
}

.lead-form {
  padding: 26px;
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #263331;
  font-size: 0.92rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--graphite);
  background: #f8fbf9;
  border: 1px solid #d7e4de;
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 124px;
}

input:focus,
select:focus,
textarea:focus {
  background: #ffffff;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(18, 185, 129, 0.14);
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.form-status,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-status--success {
  color: #09563f;
  background: rgba(18, 185, 129, 0.14);
}

.form-status--error {
  color: #8f1d35;
  background: rgba(121, 41, 70, 0.1);
}

.form-status--loading {
  color: #6b4b08;
  background: rgba(240, 180, 76, 0.16);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07100f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr) minmax(220px, 0.8fr);
  gap: 38px;
  padding: 56px 0;
}

.brand--footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 22px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-contact a:hover,
.social-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.social-links a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.reveal-up {
  animation: reveal-up 700ms ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .project-grid,
  .benefit-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .crm-grid,
  .integrations-grid,
  .lead-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(7, 16, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-links--open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    min-height: 86svh;
    padding-top: 122px;
    background-position: 62% center;
  }

  .hero h1 {
    max-width: 14ch;
  }

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

  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    width: min(calc(100% - 20px), 1240px);
    padding-left: 10px;
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 44px;
    background-image:
      linear-gradient(180deg, rgba(3, 9, 9, 0.9) 0%, rgba(3, 9, 9, 0.78) 44%, rgba(3, 9, 9, 0.9) 100%),
      url("grupo-street-system-hero.jpg");
    background-position: 64% center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.5vw, 3rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .crm-actions {
    display: grid;
  }

  .hero-actions .btn,
  .crm-actions .btn {
    width: 100%;
  }

  .project-grid,
  .benefit-grid,
  .segment-grid,
  .logo-cloud,
  .plan-grid,
  .testimonial-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-header--center {
    text-align: left;
  }

  .solution-card,
  .plan-card {
    min-height: auto;
  }

  .crm-panel-body,
  .lead-form {
    padding: 18px;
  }

  .footer-bottom {
    width: min(calc(100% - 28px), var(--container));
    display: grid;
  }
}

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