/* ============================================================
   Vis Portal Limited — wisetech.buzz
   Theme: DARK  (near-black background, light text)
   Accent: Magenta  #FF4D8D  +  Mint  #3DDC97
   ============================================================ */

:root {
  --bg: #0B0E14;
  --bg-2: #0F141D;
  --surface: #151B27;
  --surface-2: #1B2230;
  --border: #252E3E;
  --border-soft: #1D2433;
  --text: #E9ECF2;
  --muted: #9BA6B8;
  --muted-2: #6E7A8C;
  --accent: #FF4D8D;
  --accent-deep: #E03B7A;
  --accent-tint: #2B1622;
  --mint: #3DDC97;
  --mint-tint: #12322A;
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--mint);
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ============================================================
   FULLSCREEN OVERLAY NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: #0D1119;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #FF4D8D 0%, #E03B7A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.brand-mark span {
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  z-index: 130;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: #141B28;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.3s ease;
}

.nav-toggle:hover {
  background-color: #1B2230;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fullscreen-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background-color: #0A0D13;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.45s ease, visibility 0.45s ease;
}

.fullscreen-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.fullscreen-nav .nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.fullscreen-nav .nav-links a {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 6px 18px;
  transition: color 0.2s ease;
}

.fullscreen-nav .nav-links a:hover {
  color: var(--accent);
}

.fullscreen-nav .nav-cta {
  margin-top: 34px;
}

.fullscreen-nav .nav-contact {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted-2);
}

/* ============================================================
   HERO — centered with floating stat card cluster
   ============================================================ */

.hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(900px 420px at 18% -10%, #221221 0%, rgba(11, 14, 20, 0) 60%),
    radial-gradient(700px 380px at 85% 0%, #10261F 0%, rgba(11, 14, 20, 0) 55%),
    var(--bg);
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background-color: var(--surface);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 850px;
  margin: 0 auto 24px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* floating stat card cluster */
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.stat-card .stat-num .suffix {
  color: var(--accent);
}

.stat-card .stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4D8D 0%, #E03B7A 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF5F99 0%, #F0458C 100%);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-mint {
  background-color: var(--mint);
  color: #06251B;
}

.btn-mint:hover {
  color: #06251B;
  background-color: #52E8A8;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-head .kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.center {
  text-align: center;
}

/* ============================================================
   STATEMENT BAND — full-width statement rows
   ============================================================ */

.statement-band {
  padding: 100px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.statement-band .statement {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
}

.statement-band .statement .highlight {
  color: var(--accent);
}

.statement-band .statement-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.statement-item {
  padding: 26px 24px;
  border-left: 3px solid var(--accent);
  background-color: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.statement-item .item-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.statement-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES — numbered list with big numerals
   ============================================================ */

.services-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--surface);
  transition: background-color 0.25s ease;
}

.service-item:nth-child(even) {
  border-right: none;
}

.service-item:hover {
  background-color: var(--surface-2);
}

.service-item .num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.service-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-item .tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-item .tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mint);
  background-color: var(--mint-tint);
  border: 1px solid #1F4A3B;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   PROCESS — timeline
   ============================================================ */

.process-section {
  padding: 110px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #FF4D8D 0%, #3DDC97 100%);
}

.timeline-step {
  text-align: center;
  padding: 0 18px;
}

.timeline-step .step-dot {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--surface-2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.timeline-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.comparison-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 22px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.compare-table th {
  background-color: var(--surface);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.compare-table th.highlight-col {
  background-color: var(--accent-tint);
  color: var(--white);
  border-left: 1px solid var(--border);
}

.compare-table td {
  color: var(--muted);
  font-size: 0.95rem;
}

.compare-table td.feature {
  color: var(--text);
  font-weight: 600;
}

.compare-table td.highlight-col {
  background-color: #1E1320;
  border-left: 1px solid var(--border);
}

.compare-table .yes {
  color: var(--mint);
  font-weight: 700;
}

.compare-table .partial {
  color: #FFC24D;
  font-weight: 700;
}

.compare-table .no {
  color: var(--muted-2);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   INDUSTRIES — horizontal scroll row
   ============================================================ */

.industries-section {
  padding: 110px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.industry-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

.industry-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.industry-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: var(--accent-tint);
  border: 1px solid #4A2440;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

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

/* ============================================================
   ENGAGEMENT — bento grid
   ============================================================ */

.engagement-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}

.bento-cell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-cell h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.bento-cell p {
  font-size: 0.92rem;
  color: var(--muted);
}

.bento-cell .cell-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.bento-cell.big {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(140deg, #241019 0%, #151B27 70%);
}

.bento-cell.wide {
  grid-column: span 2;
  background-color: var(--surface);
}

.bento-cell.mint {
  background-color: var(--mint-tint);
  border-color: #1F4A3B;
}

.bento-cell.accent {
  background: linear-gradient(135deg, #FF4D8D 0%, #E03B7A 100%);
  border-color: transparent;
}

.bento-cell.accent h3,
.bento-cell.accent p,
.bento-cell.accent .cell-tag {
  color: #FFFFFF;
}

.bento-cell.accent .cell-tag {
  color: #FFD4E2;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 96px 0;
  background:
    radial-gradient(800px 380px at 50% 120%, #3A1220 0%, rgba(11, 14, 20, 0) 60%),
    var(--bg-2);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
  padding: 110px 0;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-line {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.contact-line .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  width: 70px;
}

.contact-line .value {
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.contact-form .form-field {
  margin-bottom: 18px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

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

.contact-form .form-note {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-top: 4px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid #1F4A3B;
  background-color: var(--mint-tint);
  color: var(--mint);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */

.newsletter-band {
  padding: 60px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.newsletter-wrap p {
  color: var(--muted);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================================
   FOOTER — multi-column
   ============================================================ */

.site-footer {
  padding: 72px 0 0;
  background-color: #080B10;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-col .footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-col .footer-about {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-contact li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 11px;
}

.footer-contact li strong {
  color: var(--text);
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 22px;
}

.footer-bottom .footer-legal a {
  color: var(--muted);
  font-size: 0.85rem;
}

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

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-item,
  .service-item:nth-child(even) {
    border-right: none;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .timeline::before {
    display: none;
  }

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

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

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

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .bento-cell.big {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-cell.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .fullscreen-nav .nav-links a {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .contact-form {
    padding: 26px;
  }

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

  .bento-cell.big,
  .bento-cell.wide {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
