/* ============================================================
   SWIZZ GLOBAL AG — Corporate Website Stylesheet
   www.swizz-ag.ch
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CSS Variables ---------------------------------------- */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #162536;
  --red:         #C41230;
  --red-dark:    #A00E28;
  --white:       #FFFFFF;
  --grey-light:  #F4F5F7;
  --grey-border: #E5E7EB;
  --grey-mid:    #9CA3AF;
  --text-primary:#1A1A1A;
  --text-muted:  #6B7280;
  --max-width:   1200px;
  --nav-height:  76px;
  --radius:      4px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --transition:  0.2s ease;
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--text-primary); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--grey {
  background: var(--grey-light);
}

.section--navy {
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p { color: var(--white); }

.section--navy .lead { color: rgba(255,255,255,0.75); }

.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header p {
  max-width: 640px;
  color: var(--text-muted);
  margin-top: 12px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--navy);
  background: var(--grey-light);
}

.nav__links a.active {
  color: var(--red);
}

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
}

.nav__cta:hover {
  background: var(--red-dark) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Nav overlay for mobile */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--grey-border);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--red); }

.nav__mobile .nav__cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  padding: 12px 24px !important;
  border-radius: var(--radius);
}

/* Page content offset for fixed nav */
.page-content { padding-top: var(--nav-height); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero--tall { min-height: 680px; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Page Hero (inner pages) ------------------------------ */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  font-size: 1.05rem;
  margin: 0;
}

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--red);
}

.card h3 { margin-bottom: 12px; }

.card p { color: var(--text-muted); font-size: 0.9375rem; }

/* Service cards on grey background */
.section--grey .card {
  background: var(--white);
}

/* --- Service Detail Blocks -------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--grey-border);
}

.service-block:last-child { border-bottom: none; }

.service-block--reverse .service-block__content { order: 2; }
.service-block--reverse .service-block__visual { order: 1; }

.service-block__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.service-block h2 { margin-bottom: 16px; }

.service-block p { color: var(--text-muted); }

.service-block__list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.service-block__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
}

.service-block__visual {
  background: var(--grey-light);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Stats bar -------------------------------------------- */
.stats-bar {
  background: var(--red);
  padding: 40px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* --- Insights cards --------------------------------------- */
.insight-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.insight-card__body {
  padding: 28px 28px 24px;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.insight-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(196,18,48,0.08);
  padding: 3px 10px;
  border-radius: 2px;
}

.insight-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.insight-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.insight-card p { color: var(--text-muted); font-size: 0.9rem; }

.insight-card__footer {
  padding: 16px 28px;
  border-top: 1px solid var(--grey-border);
  background: var(--grey-light);
}

.insight-card__footer a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.insight-card__footer a:hover { gap: 10px; }

/* --- Table ------------------------------------------------ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-border);
  color: var(--text-primary);
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:nth-child(even) td { background: var(--grey-light); }

/* --- Contact strip / CTA band ----------------------------- */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; }

/* --- Contact form ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 8px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-detail__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-detail__text strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-reg {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-border);
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.08);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* --- Team cards ------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--grey-light);
  margin: 0 auto 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--grey-mid);
  border: 3px solid var(--grey-border);
}

.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h4 { margin-bottom: 4px; font-size: 1rem; }

.team-card__title {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p { font-size: 0.875rem; color: var(--text-muted); }

/* --- Company info strip ----------------------------------- */
.company-strip {
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  padding: 28px 0;
}

.company-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.company-strip__item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.company-strip__item p {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* --- Download CTA ----------------------------------------- */
.download-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.download-block__icon {
  width: 48px;
  height: 48px;
  background: rgba(196,18,48,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.download-block__text h4 { margin-bottom: 4px; font-size: 0.975rem; }
.download-block__text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* --- Report page ------------------------------------------ */
.report-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.report-meta span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.report-meta strong {
  color: var(--white);
}

.report-body { max-width: 800px; }
.report-body h2 { margin: 40px 0 16px; }
.report-body h3 { margin: 32px 0 12px; color: var(--red); font-size: 1.1rem; }
.report-body p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.75; }
.report-body ul { margin: 16px 0 20px 20px; }
.report-body ul li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.9375rem; list-style: disc; }

.report-disclaimer {
  background: rgba(196,18,48,0.06);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.report-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-border);
  background: var(--white);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb__list a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb__list a:hover { color: var(--red); }

.breadcrumb__list li::after {
  content: '/';
  margin-left: 8px;
  color: var(--grey-border);
}

.breadcrumb__list li:last-child::after { display: none; }
.breadcrumb__list li:last-child { color: var(--text-primary); font-weight: 500; }

/* --- Legal pages ------------------------------------------ */
.legal-content {
  max-width: 760px;
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--navy);
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.legal-content a { color: var(--red); text-decoration: underline; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__about {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__col h5 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}

.footer__bottom a {
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom-links { display: flex; gap: 24px; }

/* Swiss flag accent */
.swiss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.swiss-badge svg { flex-shrink: 0; }

/* --- Dividers / Utilities --------------------------------- */
.red-bar {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 20px;
}

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-red    { color: var(--red); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Alert / notice box */
.notice {
  background: var(--grey-light);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .company-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block--reverse .service-block__content { order: 0; }
  .service-block--reverse .service-block__visual { order: 0; }
  .service-block__visual { min-height: 240px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section { padding: 56px 0; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero--tall { min-height: 560px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .company-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

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

  .download-block { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .company-strip__grid { grid-template-columns: 1fr 1fr; }
}
