/* ==========================================================================
   Sycles Consulting — Design System
   Palette: Charcoal & Teal
   ========================================================================== */

:root {
  --charcoal-900: #14181b;
  --charcoal-800: #1b2126;
  --charcoal-700: #232b31;
  --charcoal-600: #384249;
  --charcoal-500: #5a656d;

  --teal-700: #0a5f5e;
  --teal-600: #0e7c7b;
  --teal-500: #129e9b;
  --teal-400: #35bdb8;
  --teal-200: #a9e4df;
  --teal-100: #e3f5f3;

  --cream: #f7f6f3;
  --white: #ffffff;
  --ink: #14181b;
  --muted: #5b6670;
  --border: #e4e2dc;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 24, 27, 0.08);
  --shadow-lg: 0 24px 48px rgba(20, 24, 27, 0.14);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section-tight {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal-500);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--charcoal-900);
}

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

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

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

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

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.bg-charcoal {
  background: var(--charcoal-900);
  color: var(--cream);
}

.bg-cream {
  background: var(--cream);
}

.bg-teal {
  background: var(--teal-600);
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-500);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: currentColor;
  color: var(--charcoal-900);
}
.btn-outline:hover {
  background: var(--charcoal-900);
  color: var(--white);
  border-color: var(--charcoal-900);
}

.btn-outline-light {
  border-color: rgba(247, 246, 243, 0.4);
  color: var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--charcoal-900);
  border-color: var(--cream);
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal-900);
  letter-spacing: -0.01em;
}

.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: var(--charcoal-900);
  position: relative;
  flex-shrink: 0;
}
.logo .mark::before,
.logo .mark::after {
  content: "";
  position: absolute;
  background: var(--teal-400);
}
.logo .mark::before {
  width: 14px;
  height: 3px;
  left: 10px;
  top: 12px;
}
.logo .mark::after {
  width: 3px;
  height: 14px;
  left: 21px;
  top: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-700);
  position: relative;
  padding-block: 0.3rem;
  transition: var(--transition);
}

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

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--teal-500);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--charcoal-900);
  transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100vw;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.15rem;
  }
  .nav-cta .btn-outline {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--charcoal-900);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(4.5rem, 12vw, 9rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(53, 189, 184, 0.25), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(18, 158, 155, 0.18), transparent 40%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 246, 243, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 243, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.6) 40%, transparent);
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--teal-200);
}
.hero .eyebrow::before {
  background: var(--teal-300, var(--teal-400));
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(247, 246, 243, 0.78);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  display: flex;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vw, 5rem);
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--teal-300, var(--teal-400));
  display: block;
}
.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.65);
}

/* ---------- Page header (non-home hero) ---------- */
.page-header {
  background: var(--charcoal-900);
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(53, 189, 184, 0.22), transparent 45%);
}
.page-header .inner {
  position: relative;
  max-width: 700px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.page-header p {
  color: rgba(247, 246, 243, 0.75);
  font-size: 1.1rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.55);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a:hover { color: var(--teal-300, var(--teal-400)); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal-200);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal-900);
}

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

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-600);
}

/* Service number card variant */
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-row:first-of-type { border-top: 1px solid var(--border); }
.service-row .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-500);
}
.service-row h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.service-row p {
  color: var(--muted);
  max-width: 680px;
}
.service-row .tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.service-row .tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .service-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.stats-strip .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--charcoal-900);
}
.stats-strip .stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Placeholder badge ---------- */
.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px dashed var(--teal-400);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--charcoal-800), var(--charcoal-700));
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(53, 189, 184, 0.35), transparent 55%);
}
.team-photo .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(247, 246, 243, 0.9);
}
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.team-card .role {
  color: var(--teal-600);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-card p.bio {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--charcoal-900);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-500);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  max-width: 800px;
  position: relative;
}
.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(247, 246, 243, 0.65);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal-600);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 480px;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--teal-700);
}
.cta-band .btn-primary:hover {
  background: var(--charcoal-900);
  color: var(--white);
}

/* ---------- Forms ---------- */
.form-field {
  margin-bottom: 1.35rem;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal-800);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  background: var(--teal-100);
  color: var(--teal-700);
  border: 1px solid var(--teal-400);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
.form-success[data-fs-active] { display: block; }
.form-error {
  display: none;
  background: #fbe9e7;
  color: #9a3412;
  border: 1px solid #f3a89a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
.form-error[data-fs-active] { display: block; }
.form-error a { color: inherit; font-weight: 600; text-decoration: underline; }
.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  min-height: 0;
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

/* ---------- Info cards (contact page) ---------- */
.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.info-card:first-child { border-top: 1px solid var(--border); }
.info-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.info-card p, .info-card a {
  color: var(--muted);
  font-size: 0.92rem;
}
.info-card a:hover { color: var(--teal-600); }

/* ---------- Map placeholder ---------- */
.map-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(20,24,27,0.85), rgba(20,24,27,0.85)),
    repeating-linear-gradient(45deg, var(--charcoal-700) 0 2px, transparent 2px 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
}

/* ---------- Insights / cards list ---------- */
.article-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}
.article-card .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--charcoal-800), var(--teal-700));
  position: relative;
  overflow: hidden;
}
.article-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247,246,243,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(247,246,243,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.article-card .meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ---------- Values / approach list ---------- */
.value-item {
  display: flex;
  gap: 1.25rem;
}
.value-item .marker {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal-900);
  color: rgba(247, 246, 243, 0.75);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 246, 243, 0.12);
}
.footer-grid .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-grid p.desc {
  font-size: 0.92rem;
  max-width: 280px;
  color: rgba(247, 246, 243, 0.6);
}
.footer-col h5 {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(247, 246, 243, 0.68);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(247, 246, 243, 0.45);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.9rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247, 246, 243, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--teal-400);
  color: var(--teal-400);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 1rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}
.visual-block {
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--charcoal-900) 0%, var(--charcoal-700) 60%, var(--teal-700) 130%);
  position: relative;
  overflow: hidden;
}
.visual-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247,246,243,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(247,246,243,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.visual-block::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,189,184,0.4), transparent 70%);
  top: -10%;
  right: -10%;
}
