:root {
  color: #17202a;
  background: #fbfcfd;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #17202a;
  --muted: #64707f;
  --line: #dfe5ec;
  --paper: #ffffff;
  --soft: #f2f6f9;
  --teal: #0f9fa8;
  --coral: #e8566f;
  --green: #35a66f;
  --gold: #d59b1d;
  --navy: #172d45;
  --shadow: 0 22px 70px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(242, 246, 249, 0.84) 0%, rgba(251, 252, 253, 0) 18rem),
    #fbfcfd;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(251, 252, 253, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  box-shadow: 0 10px 24px rgba(15, 159, 168, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #344253;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 2px;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-cta {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.18);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  min-height: 76svh;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) 0 clamp(34px, 5vw, 64px);
}

.hero::before {
  position: absolute;
  inset: 4% -30% auto 35%;
  height: 46%;
  content: "";
  background:
    radial-gradient(circle at 25% 30%, rgba(232, 86, 111, 0.2), transparent 28%),
    radial-gradient(circle at 72% 26%, rgba(15, 159, 168, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(213, 155, 29, 0.18), rgba(53, 166, 111, 0.12));
  filter: blur(20px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 1.4rem 0 0;
  color: #435166;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-button {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(15, 159, 168, 0.28);
}

.secondary-button {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.primary-button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 570px;
  margin-top: 2rem;
}

.hero-proof div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.hero-proof span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.image-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(15, 159, 168, 0.2), rgba(232, 86, 111, 0.16) 48%, rgba(213, 155, 29, 0.16));
}

.image-panel::after {
  position: absolute;
  inset: 10%;
  content: "";
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000000, transparent);
  opacity: 0.42;
}

.workspace-window {
  position: relative;
  z-index: 1;
  width: min(92%, 650px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.window-traffic {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.window-traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.window-traffic span:nth-child(2) {
  background: var(--gold);
}

.window-traffic span:nth-child(3) {
  background: var(--green);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
  min-height: 420px;
}

.phone-preview,
.dashboard-preview {
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.phone-preview {
  align-self: end;
  min-height: 360px;
  padding: 1rem;
  box-shadow: 0 16px 32px rgba(23, 32, 42, 0.12);
}

.status-row,
.dashboard-header,
.mobile-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
}

.status-row span,
.dashboard-header span,
.app-title-lines span,
.timeline span,
.mobile-actions span,
.visual-nav span,
.visual-body span {
  display: block;
  border-radius: 8px;
  background: #e5edf3;
}

.status-row span:first-child {
  width: 44px;
  height: 8px;
}

.status-row span:last-child {
  width: 30px;
  height: 8px;
}

.app-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: 2rem;
  color: #ffffff;
  border-radius: 8px;
  background: var(--coral);
}

.app-title-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.app-title-lines span:first-child {
  width: 78%;
  height: 14px;
  background: #1f2b38;
}

.app-title-lines span:last-child {
  width: 58%;
  height: 10px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  min-height: 122px;
  margin-top: 2rem;
  padding: 0.8rem;
  border-radius: 8px;
  background: #f3f7fa;
}

.chart-bars span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: var(--teal);
}

.chart-bars span:nth-child(1) {
  height: 42%;
}

.chart-bars span:nth-child(2) {
  height: 78%;
  background: var(--coral);
}

.chart-bars span:nth-child(3) {
  height: 58%;
  background: var(--gold);
}

.chart-bars span:nth-child(4) {
  height: 92%;
  background: var(--green);
}

.mobile-actions {
  margin-top: 1rem;
}

.mobile-actions span {
  width: 48%;
  height: 38px;
}

.dashboard-preview {
  min-height: 390px;
  padding: 1rem;
}

.dashboard-header span:first-child {
  width: 46%;
  height: 16px;
  background: #1f2b38;
}

.dashboard-header span:last-child {
  width: 26%;
  height: 16px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.dashboard-kpis span {
  height: 82px;
  border-radius: 8px;
  background: #f1f6f8;
}

.dashboard-kpis span:nth-child(2) {
  background: rgba(15, 159, 168, 0.16);
}

.dashboard-kpis span:nth-child(3) {
  background: rgba(232, 86, 111, 0.14);
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.timeline span {
  height: 44px;
}

.timeline span:nth-child(2) {
  width: 88%;
  background: rgba(213, 155, 29, 0.18);
}

.timeline span:nth-child(3) {
  width: 74%;
  background: rgba(53, 166, 111, 0.18);
}

.timeline span:nth-child(4) {
  width: 92%;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 12px 40px rgba(23, 32, 42, 0.06);
}

.service-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 78px;
  padding: 1rem;
  color: #263545;
  background: #ffffff;
  font-weight: 800;
}

.service-strip svg {
  color: var(--coral);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0 0;
}

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

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.contact-copy h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card,
.work-card,
.process-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(23, 32, 42, 0.06);
}

.service-card {
  min-height: 315px;
  padding: 1.35rem;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--teal);
  border-radius: 8px;
  background: rgba(15, 159, 168, 0.11);
}

.service-card:nth-child(2) .icon-box {
  color: var(--coral);
  background: rgba(232, 86, 111, 0.11);
}

.service-card:nth-child(3) .icon-box {
  color: var(--green);
  background: rgba(53, 166, 111, 0.11);
}

.service-card:nth-child(4) .icon-box {
  color: var(--gold);
  background: rgba(213, 155, 29, 0.14);
}

.service-card h3,
.work-card h3,
.process-item h3 {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p,
.process-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-row span {
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3a4858;
  background: #f7fafc;
  font-size: 0.78rem;
  font-weight: 800;
}

.work {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.work-card {
  position: relative;
  min-height: 430px;
  padding: 1rem;
  overflow: hidden;
}

.project-visual {
  display: grid;
  grid-template-rows: 44px 1fr;
  min-height: 255px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f8fb;
}

.work-card.coral .project-visual {
  background: linear-gradient(135deg, rgba(232, 86, 111, 0.2), #f8fbfc 62%);
}

.work-card.teal .project-visual {
  background: linear-gradient(135deg, rgba(15, 159, 168, 0.22), #f8fbfc 62%);
}

.work-card.green .project-visual {
  background: linear-gradient(135deg, rgba(53, 166, 111, 0.2), #f8fbfc 62%);
}

.visual-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.76);
}

.visual-nav span {
  width: 48px;
  height: 9px;
}

.visual-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  padding: 1rem;
}

.visual-body span:first-child {
  grid-row: span 2;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.08);
}

.visual-body span:nth-child(2) {
  background: rgba(23, 32, 42, 0.14);
}

.visual-body span:nth-child(3) {
  background: rgba(23, 32, 42, 0.22);
}

.work-card p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.metric {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-item {
  min-height: 230px;
  padding: 1.25rem;
}

.process-item > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}

.contact-copy {
  align-self: center;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  color: var(--ink);
  font-weight: 850;
}

.contact-methods svg {
  color: var(--coral);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #303e4e;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 128px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 159, 168, 0.12);
}

.form-success {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  min-height: 64svh;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0 clamp(44px, 7vw, 84px);
}

.page-hero::before {
  position: absolute;
  inset: 10% -18% auto 42%;
  height: 52%;
  content: "";
  background:
    radial-gradient(circle at 22% 28%, rgba(15, 159, 168, 0.2), transparent 30%),
    radial-gradient(circle at 70% 32%, rgba(232, 86, 111, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(213, 155, 29, 0.16), rgba(53, 166, 111, 0.12));
  filter: blur(20px);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
}

.about-visual,
.support-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.about-visual div {
  min-height: 170px;
  padding: 1.2rem;
  background: #ffffff;
}

.about-visual span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.about-visual strong {
  display: block;
  margin-top: 3.2rem;
  color: var(--teal);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.about-visual div:nth-child(2) strong {
  color: var(--coral);
}

.about-visual div:nth-child(3) strong {
  color: var(--gold);
}

.about-visual div:nth-child(4) strong {
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.story-copy p {
  margin: 0;
}

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

.value-card {
  padding: 1.35rem;
  box-shadow: 0 12px 36px rgba(23, 32, 42, 0.06);
}

.value-card h3,
.support-card h2 {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.value-card p,
.support-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-card {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 22px 70px rgba(23, 32, 42, 0.12);
}

.support-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.support-list div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.support-list strong,
.support-list span {
  display: block;
}

.support-list strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.support-list span {
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.5;
}

.page-contact,
.support-contact {
  padding-top: clamp(52px, 8vw, 96px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 110px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 800;
}

footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: -1;
  }

  .hero-media {
    min-height: 460px;
  }

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

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

  .work-card {
    min-height: auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .split-section,
  .value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar {
    min-height: 64px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-proof,
  .service-strip,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 390px;
  }

  .workspace-window {
    width: 96%;
  }

  .workspace-grid {
    grid-template-columns: 0.82fr 1fr;
    min-height: 300px;
  }

  .phone-preview {
    min-height: 275px;
    padding: 0.8rem;
  }

  .dashboard-preview {
    min-height: 300px;
    padding: 0.8rem;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis span {
    height: 38px;
  }

  .timeline span {
    height: 34px;
  }

  .section {
    padding-top: 76px;
  }

  .section-heading h2,
  .contact-copy h2,
  .page-hero h1 {
    line-height: 1.08;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 0;
  }
}

@media (max-width: 480px) {
  .topbar,
  .hero,
  .page-hero,
  .section,
  .service-strip,
  .contact-section,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }

  .workspace-window {
    padding: 0.65rem;
  }

  .workspace-grid {
    gap: 0.6rem;
    min-height: 260px;
  }

  .app-badge {
    width: 42px;
    height: 42px;
    margin-top: 1.2rem;
  }

  .chart-bars {
    min-height: 86px;
  }

  .mobile-actions span {
    height: 30px;
  }

  .project-visual {
    min-height: 210px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
