﻿@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #05070c;
  --bg-soft: #0b101a;
  --bg-elevated: #111827;
  --accent: #ff3434;
  --accent-soft: #ff5f5f;
  --text: #ffffff;
  --muted: #b9c0cc;
  --line: rgba(255, 255, 255, 0.15);
  --radius: 16px;
  --container: 1180px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(circle at top right, rgba(255, 52, 52, 0.1), transparent 40%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-family: "Archivo", "Manrope", sans-serif;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(2.6rem, 4.8vw, 4.2rem) 0;
}

.section-alt {
  background: transparent;
}

.section-title {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.lead {
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 52, 52, 0.55);
}

.card h3 {
  margin-bottom: 0.7rem;
}

.kicker {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.btn-link {
  color: var(--accent-soft);
  font-weight: 700;
}

.btn-link:hover {
  color: var(--accent);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-list a {
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-list a:hover {
  color: var(--accent-soft);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar-social a {
  color: var(--muted);
}

.topbar-social a:hover {
  color: var(--accent-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 12, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.header-main {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 7, 12, 0.93), rgba(5, 7, 12, 0.4) 60%, rgba(5, 7, 12, 0.78));
}

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

.hero-home {
  min-height: min(82vh, 760px);
  display: flex;
  align-items: center;
  background-image: url("../kvadra-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  max-width: 780px;
  padding: clamp(5.5rem, 10vw, 8.4rem) 0 clamp(4.4rem, 8vw, 7rem);
  text-align: left;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.hero-badges {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.page-hero {
  padding: clamp(3rem, 6vw, 4.6rem) 0;
  background: linear-gradient(180deg, rgba(255, 52, 52, 0.11), rgba(255, 52, 52, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.faq-page .page-hero,
body.kontakt-page .page-hero {
  padding-bottom: clamp(2.2rem, 4.3vw, 3.1rem);
}

body.faq-page .page-hero + .section,
body.kontakt-page .page-hero + .section {
  padding-top: clamp(1.8rem, 3.6vw, 2.6rem);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--accent-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 52, 52, 0.16);
  color: var(--accent);
  font-weight: 800;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-bottom: 0;
  flex-grow: 1;
}

.service-card .btn-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
}

@media (min-width: 961px) {
  #sluzby-prehlad .grid.grid-3 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #sluzby-prehlad .service-card {
    order: 1;
    grid-column: span 2;
  }

  #sluzby-prehlad .service-card--new {
    order: 1;
    grid-column: span 2;
  }
}

.service-highlights .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.service-highlights .card:hover {
  transform: none;
  border-color: transparent;
}

.service-highlights .card h3 {
  position: relative;
  padding-top: 0.9rem;
  margin-top: 0.35rem;
}

.service-highlights .card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.service-cta .cta-band {
  align-items: center;
}

.service-cta .service-cta-copy {
  max-width: 660px;
}

.service-cta .service-cta-copy h2 {
  margin-bottom: 0.55rem;
}

.service-cta .service-cta-copy p {
  margin-bottom: 0;
}

.page-hero + .section .container.grid.grid-2 {
  position: relative;
  gap: 2.2rem;
}

.page-hero + .section .container.grid.grid-2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.page-hero + .section .container.grid.grid-2 > .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.page-hero + .section .container.grid.grid-2 > .card:hover {
  transform: none;
  border-color: transparent;
}

.page-hero + .section .container.grid.grid-2 > .card:first-child {
  padding-right: 1.6rem;
}

.page-hero + .section .container.grid.grid-2 > .card:last-child {
  padding-left: 1.6rem;
}


.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.05), rgba(5, 7, 12, 0.72));
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 7, 12, 0.7);
  backdrop-filter: blur(4px);
}

.about-badge strong {
  display: block;
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.9rem;
  color: var(--text);
}

.about-copy {
  padding: 0.1rem 0.2rem;
}

.about-copy h2 {
  margin-bottom: 0.85rem;
}

.about-values {
  margin-top: 1rem;
}

.about-values h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.bullet-list {
  display: grid;
  gap: 0.65rem;
}

.bullet-list li {
  display: flex;
  gap: 0.6rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  margin-top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 8px;
}

.trust-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.01);
}

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

.trust-item {
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.who-grid .card,
.references-grid .card,
.blog-grid .card {
  min-height: 100%;
}

.who-grid .card,
.references-grid .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0.15rem 0 0;
}

.who-grid .card:hover,
.references-grid .card:hover {
  transform: none;
  border-color: transparent;
}

.who-grid .card h3,
.references-grid .card h3 {
  position: relative;
  padding-top: 1rem;
  margin-top: 0.2rem;
}

.who-grid .card h3::before,
.references-grid .card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.reference-gallery {
  column-count: 3;
  column-gap: 1rem;
}

.reference-shot {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.reference-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.reference-shot:hover img {
  transform: scale(1.04);
}

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

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 64px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-meta p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.faq-item h2 {
  margin: 0;
  padding: 1rem 1.1rem 0.5rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.faq-item > p {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 1rem 1.1rem;
  font: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer-inner {
  padding: 0 1.1rem 1rem;
}

.cta-panel {
  margin-top: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 52, 52, 0.5);
  background: linear-gradient(130deg, rgba(255, 52, 52, 0.2), rgba(255, 52, 52, 0.06));
  padding: clamp(1.2rem, 2.6vw, 2rem);
}

.cta-panel p {
  color: #f8d4d4;
}

.cta-band {
  margin: clamp(1.2rem, 2.6vw, 1.8rem) 0 0;
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(255, 52, 52, 0.45);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255, 52, 52, 0.16), rgba(255, 52, 52, 0.04));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-center {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.cta-band.cta-band-red {
  background: var(--accent);
  border-color: var(--accent);
}

.cta-band.cta-band-red .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band.cta-band-red h2,
.cta-band.cta-band-red p {
  color: var(--text);
}

.btn-light {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-light:hover {
  background: #ffe8e8;
  border-color: #ffe8e8;
  color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.2rem;
}

.info-list {
  display: grid;
  gap: 0.9rem;
}

.info-item {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0.95rem 0 0;
  background: transparent;
}

.info-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.info-item h2,
.info-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.info-item p,
.info-item li,
.info-item a {
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.02);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(5, 7, 12, 0.8);
  color: var(--text);
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0.18rem 0 0;
  accent-color: var(--accent);
}

.field-full {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.5;
}

.form-consent a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--accent);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-messages {
  margin-bottom: 0.8rem;
}

.form-messages .success-message,
.form-messages .error-messages {
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
}

.form-messages .success-message {
  border: 1px solid #2f9f63;
  background: rgba(47, 159, 99, 0.16);
}

.form-messages .success-message p,
.form-messages .error-messages p {
  margin: 0;
  color: var(--text);
}

.form-messages .error-messages {
  border: 1px solid #d95757;
  background: rgba(217, 87, 87, 0.18);
}

.small-note {
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  padding-top: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.1rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 0.8rem;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--accent-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .main-nav ul {
    gap: 0.7rem;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .header-cta .btn {
    padding-inline: 1rem;
  }
}

@media (max-width: 960px) {
  body.nav-open {
    overflow: hidden;
  }

  .page-hero + .section .container.grid.grid-2 {
    gap: 1.4rem;
  }

  .page-hero + .section .container.grid.grid-2::before {
    display: none;
  }

  .page-hero + .section .container.grid.grid-2 > .card:first-child,
  .page-hero + .section .container.grid.grid-2 > .card:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 360px;
  }

  .section {
    padding: clamp(2.3rem, 4.6vw, 3.4rem) 0;
  }

  .section-title {
    margin-bottom: 1.1rem;
  }

  .page-hero {
    padding: clamp(2.6rem, 5.2vw, 3.8rem) 0;
  }

  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    background: #070b12;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.2s ease;
    padding: 1rem 1.2rem 1.3rem;
  }

  .nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav a {
    font-size: 1.03rem;
  }

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

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

  .reference-gallery {
    column-count: 2;
  }

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

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

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

@media (max-width: 760px) {
  .about-media {
    min-height: 300px;
  }

  .about-badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    margin-bottom: 0.95rem;
  }

  .page-hero {
    padding: 2.2rem 0;
  }

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

  .main-nav {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .brand img {
    height: 34px;
  }

  .hero-copy {
    padding-top: 4.5rem;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .reference-gallery {
    column-count: 1;
  }

  .cta-band {
    margin-top: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-center {
    margin-top: 1rem;
  }
}

