:root {
  --bg: #E9F1FA;
  --paper: #FFFFFF;
  --ink: #0A2A43;
  --muted: #4A6A80;
  --line: #C9E2F4;
  --green: #00ABE4;
  --green-dark: #007EAB;
  --teal: #00ABE4;
  --mint: #DDF4FC;
  --blue: #00ABE4;
  --soft: #F5FAFE;
  --shadow: 0 28px 80px rgba(0, 80, 130, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 18px;
  color: #FFFFFF;
  background: #00ABE4;
  font-size: 0.9rem;
  font-weight: 650;
  text-align: center;
}

.top-strip a {
  color: #FFFFFF;
  font-weight: 900;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(233, 241, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--green);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero,
.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-banner {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.banner-slides {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: #0A2A43;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(30px, 5vw, 68px);
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 42, 67, 0.92), rgba(0, 171, 228, 0.5) 46%, rgba(10, 42, 67, 0.05));
}

.light-slide .banner-overlay {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.18));
}

.banner-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
}

.banner-copy .eyebrow,
.banner-copy .hero-text {
  color: #E9F1FA;
}

.light-slide .banner-copy .eyebrow {
  color: var(--green-dark);
}

.light-slide .banner-copy,
.light-slide .banner-copy .hero-text {
  color: var(--ink);
}

.banner-copy h1 {
  max-width: 660px;
  font-size: clamp(2.45rem, 5.4vw, 5.2rem);
}

.banner-media {
  display: grid;
  place-items: center;
}

.banner-media img {
  width: min(100%, 660px);
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.28));
}

.custom-banner-art {
  min-height: 430px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.22), rgba(8, 124, 133, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.custom-device {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
  width: min(86%, 480px);
}

.custom-device span {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  color: #0A2A43;
  background: #FFFFFF;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 950;
}

.custom-device span:nth-child(1),
.custom-device span:nth-child(4) {
  color: #fff;
  background: var(--green);
}

.banner-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.banner-arrow {
  position: absolute;
  top: calc(34px + 280px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(10, 42, 67, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.banner-prev {
  left: 18px;
}

.banner-next {
  right: 18px;
}

.banner-controls button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.banner-controls button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 122px);
  padding: 68px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3.08rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-text,
.page-hero p,
.intro-grid p,
.card p,
.service-item p,
.surface p,
.solution-card p,
.proof-grid span {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--paper);
  border-color: var(--line);
}

.whatsapp-button {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
}

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

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-row dt {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 950;
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-visual {
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 171, 228, 0.18), rgba(233, 241, 250, 0.86));
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.app-window {
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 171, 228, 0.2);
  border-radius: 8px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.window-bar img {
  width: 36px;
}

.window-bar span {
  font-weight: 950;
}

.window-bar strong {
  margin-left: auto;
  padding: 5px 8px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.76rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 430px;
}

.dashboard-layout aside {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 18px;
  background: #0A2A43;
}

.dashboard-layout aside span {
  display: block;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.dashboard-layout aside .active-dot {
  background: var(--green);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-header,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-header {
  align-items: center;
}

.dashboard-header div,
.mini-grid article {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-header small,
.mini-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-header strong,
.mini-grid strong {
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.1;
}

.dashboard-header > span {
  justify-self: end;
  padding: 12px 16px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
  font-weight: 950;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 150px;
  margin: 22px 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bar-chart i {
  display: block;
  min-height: 38px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-radius: 6px 6px 0 0;
}

.bar-chart i:nth-child(2) { height: 70px; }
.bar-chart i:nth-child(3) { height: 108px; }
.bar-chart i:nth-child(4) { height: 82px; }
.bar-chart i:nth-child(5) { height: 122px; }
.bar-chart i:nth-child(6) { height: 96px; }

.section {
  padding: 76px 0;
}

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

.section-heading p:last-child {
  color: var(--muted);
}

.logo-cloud {
  display: grid;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-cloud p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.logo-cloud div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-cloud span {
  padding: 10px 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.intro-grid,
.split,
.contact-grid,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

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

.product-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16, 27, 21, 0.08);
}

.product-card.accent {
  background: linear-gradient(135deg, #FFFFFF, #E9F1FA);
}

.product-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-box {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.demo-box strong {
  color: var(--green-dark);
}

.demo-box span {
  color: var(--muted);
  font-weight: 750;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-link {
  color: var(--green-dark);
  font-weight: 900;
}

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

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

.card,
.surface,
.form-card,
.service-item,
.solution-card,
.proof-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card,
.surface,
.form-card,
.service-item,
.solution-card,
.proof-grid article {
  padding: 28px;
}

.solution-card.feature {
  color: #fff;
  background: linear-gradient(135deg, #0A2A43, var(--green));
  border-color: transparent;
}

.solution-card.feature p,
.solution-card.feature .tag {
  color: #E9F1FA;
}

.solution-grid .solution-card:nth-child(3) {
  color: #fff;
  background: linear-gradient(135deg, #0A2A43, var(--green));
  border-color: transparent;
}

.solution-grid .solution-card:nth-child(3) p,
.solution-grid .solution-card:nth-child(3) .tag {
  color: #E9F1FA;
}

.card-number,
.tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.highlight-band {
  width: 100%;
  max-width: none;
  padding: 86px max(18px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: #0A2A43;
}

.highlight-band .eyebrow,
.highlight-band p {
  color: #E9F1FA;
}

.journey {
  display: grid;
  gap: 12px;
}

.journey article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.journey strong {
  color: #8DE3FF;
}

.journey span {
  font-weight: 850;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.quote {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  border-radius: 8px;
}

.quote p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
}

.page-hero {
  padding: 92px 0 48px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.demo-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-card h2 {
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.demo-card p {
  margin: 0;
  color: var(--muted);
}

.blog-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.blog-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.blog-toolbar {
  padding-top: 18px;
  padding-bottom: 18px;
}

.blog-toolbar label {
  max-width: 620px;
}

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

.blog-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.post-media img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  color: #fff;
  background: linear-gradient(135deg, #0A2A43, var(--green-dark), var(--green));
}

.post-placeholder span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 900;
}

.post-body {
  padding: 24px;
}

.post-body h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.post-body p {
  color: var(--muted);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.post-meta a,
.back-link {
  color: var(--green-dark);
  font-weight: 900;
}

.blog-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 24px;
}

.admin-login-section {
  display: grid;
  justify-items: center;
  padding-top: 26px;
}

.admin-login-card {
  width: min(100%, 460px);
  box-shadow: var(--shadow);
}

.admin-login-card h2 {
  margin-bottom: 18px;
}

.admin-panel[hidden],
.admin-login-section[hidden] {
  display: none;
}

.admin-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.admin-panel-header h2 {
  margin-bottom: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.admin-post-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-post-item strong,
.admin-post-item span {
  display: block;
}

.admin-post-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-post-item button {
  padding: 8px 10px;
  color: #8f1d1d;
  background: #fff;
  border: 1px solid #f0c9c9;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.article-view {
  max-width: 900px;
}

.article-view h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.article-date {
  color: var(--muted);
  font-weight: 800;
}

.article-image {
  overflow: hidden;
  margin: 32px 0;
  aspect-ratio: 16 / 9;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-content {
  color: var(--ink);
  font-size: 1.12rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) 1fr;
  gap: 22px;
}

.testimonial-band,
.cta-panel {
  border-radius: 8px;
}

.testimonial-band {
  padding: 38px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 1.22rem;
  font-weight: 850;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 0;
}

.form-card {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 48px 18px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 172px;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 900;
}

.privacy-content {
  padding-top: 24px;
}

.privacy-content .surface {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin: 18px 0 4px;
  font-size: 1.45rem;
}

.privacy-content p {
  color: var(--muted);
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100% - 36px, 1040px);
  margin: 0 auto;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: 260px;
}

.cookie-actions a {
  color: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.cookie-actions button {
  min-height: 40px;
  padding: 9px 18px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 6px;
  }

  .hero,
  .banner-slide,
  .intro-grid,
  .split,
  .contact-grid,
  .service-item,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .banner-slides {
    min-height: 620px;
  }

  .hero {
    min-height: auto;
  }

  .cards-three {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-page-hero {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-admin-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-panel-header {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .segment-grid,
  .build-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .trust-row,
  .dashboard-header,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-layout aside {
    grid-template-columns: repeat(4, 1fr);
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 138px;
  }

  .site-header {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
  }

  .hero,
  .page-hero,
  .section {
    width: min(100% - 28px, 1160px);
  }

  .hero-banner {
    width: min(100% - 28px, 1240px);
    padding-top: 22px;
  }

  .banner-slides {
    min-height: 640px;
  }

  .banner-slide {
    padding: 24px;
    background-position: 62% center;
  }

  .banner-overlay {
    background: linear-gradient(180deg, rgba(16, 38, 26, 0.92), rgba(16, 38, 26, 0.62), rgba(16, 38, 26, 0.16));
  }

  .light-slide .banner-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18));
  }

  .banner-arrow {
    top: calc(22px + 320px);
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .custom-device {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .product-visual,
  .card,
  .surface,
  .form-card,
  .service-item,
  .solution-card,
  .proof-grid article {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cookie-notice {
    display: grid;
    gap: 14px;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .cookie-actions {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }

  .cookie-actions a,
  .cookie-actions button {
    width: 100%;
    text-align: center;
  }
}
