/* ========================================
   Workstream SUITE LP - Stylesheet
   ======================================== */

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

:root {
  --bg: #f5f7fa;
  --fg: #161d2b;
  --card: #ffffff;
  --card-fg: #161d2b;
  --primary: #1a2744;
  --primary-fg: #fafafa;
  --secondary: #eef0f4;
  --muted: #e8eaef;
  --muted-fg: #6b7280;
  --accent: #1a9b8a;
  --accent-fg: #ffffff;
  --border: #d5dbe5;
  --radius: 0.625rem;
  --font-sans: "Noto Sans JP", "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

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

.hide-sp {
  display: none;
}

.section-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(26, 155, 138, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-badge--in {
  background: rgba(26, 155, 138, 0.12);
  color: var(--accent);
}

.section-badge--grow {
  background: rgba(26, 39, 68, 0.1);
  color: var(--primary);
}

.section-badge--out {
  background: rgba(107, 114, 128, 0.1);
  color: var(--muted-fg);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

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

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

.btn--accent:hover {
  opacity: 0.9;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-light {
  background: transparent;
  color: var(--primary-fg);
  border: 1px solid rgba(250, 250, 250, 0.2);
}

.btn--outline-light:hover {
  background: rgba(250, 250, 250, 0.1);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- SVG icons --- */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--lg {
  width: 24px;
  height: 24px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 700;
}

.navbar__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}

.navbar.scrolled .navbar__logo-text {
  color: var(--fg);
}

.navbar__logo-accent {
  font-weight: 500;
  color: var(--accent);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar__link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s;
}

.navbar__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.navbar.scrolled .navbar__link {
  color: var(--muted-fg);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--fg);
  background: var(--muted);
}

.navbar__cta {
  display: none;
}

.navbar__mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

.navbar.scrolled .navbar__mobile-btn {
  color: var(--fg);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-link {
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: background 0.2s, color 0.2s;
}

.navbar__mobile-link:hover {
  background: var(--muted);
  color: var(--fg);
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.72),
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.78)
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero__card {
  padding: 3rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__label {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__desc {
  margin-top: 1.5rem;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.hero__actions {
  margin-top: 2.5rem;
}

/* --- Problem (Section B) --- */
.problem {
  background: var(--card);
  padding: 6rem 0;
}

.problem__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.problem__lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-fg);
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.problem__item {
  display: flex;
  gap: 1rem;
}

.problem__icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--muted);
}

.problem__icon-box svg {
  color: var(--accent);
}

.problem__item-title {
  font-weight: 600;
  color: var(--fg);
  font-size: 0.9375rem;
}

.problem__item-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

.problem__image {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Bridge text */
.problem__bridge {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(26, 155, 138, 0.06), rgba(26, 39, 68, 0.06));
  border: 1px solid rgba(26, 155, 138, 0.15);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.problem__bridge svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.problem__bridge p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--fg);
}

.problem__bridge strong {
  color: var(--accent);
  font-weight: 600;
}

/* --- About --- */
.about {
  background: var(--bg);
  padding: 6rem 0;
}

.about__cards {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.about__card {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: box-shadow 0.2s;
}

.about__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.about__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(26, 155, 138, 0.1);
}

.about__card-icon svg {
  color: var(--accent);
}

.about__card-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}

.about__card-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

/* --- IN-GROW-OUT --- */
.igo {
  background: var(--card);
  padding: 6rem 0;
}

.igo__image {
  margin-top: 4rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--bg);
}

.igo__cards {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.igo__card {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.igo__card:hover {
  border-color: rgba(26, 155, 138, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.igo__card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.igo__card-badge--in {
  background: var(--accent);
  color: var(--accent-fg);
}

.igo__card-badge--grow {
  background: var(--primary);
  color: var(--primary-fg);
}

.igo__card-badge--out {
  background: var(--muted-fg);
  color: var(--card);
}

.igo__card-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.igo__card-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.igo__card-subtitle--in {
  color: var(--accent);
}

.igo__card-subtitle--grow {
  color: var(--primary);
}

.igo__card-subtitle--out {
  color: var(--muted-fg);
}

.igo__card-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

/* --- Project Container --- */
.project {
  background: var(--bg);
  padding: 6rem 0;
}

.project__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.project__lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
}

.project__mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.project__mini-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}

.project__mini-card:hover {
  border-color: rgba(26, 155, 138, 0.3);
}

.project__mini-card svg {
  margin-top: 0.125rem;
  color: var(--accent);
  flex-shrink: 0;
}

.project__mini-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.project__mini-desc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.project__image {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--card);
}

/* --- Dashboards --- */
.dashboards {
  background: var(--card);
  padding: 6rem 0;
}

.dashboards__image {
  margin-top: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--bg);
}

.dashboards__cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.dashboards__card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dashboards__card:hover {
  border-color: rgba(26, 155, 138, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dashboards__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboards__card-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(26, 155, 138, 0.2);
}

.dashboards__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--muted);
  transition: background 0.2s;
}

.dashboards__card:hover .dashboards__card-icon {
  background: rgba(26, 155, 138, 0.1);
}

.dashboards__card-icon svg {
  color: var(--muted-fg);
  transition: color 0.2s;
}

.dashboards__card:hover .dashboards__card-icon svg {
  color: var(--accent);
}

.dashboards__card-title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.dashboards__card-sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}

.dashboards__card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

.dashboards__card-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(107, 114, 128, 0.7);
}

/* --- Detail Sections (G, H, I) --- */
.detail-section {
  padding: 6rem 0;
}

.detail-section--in {
  background: var(--bg);
}

.detail-section--grow {
  background: var(--card);
}

.detail-section--out {
  background: var(--bg);
}

.detail-section__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.detail-section__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-fg);
}

.detail-section__image {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--card);
}

.detail-section__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.detail-section__point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--fg);
  font-weight: 500;
}

.detail-section__point svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Features --- */
.features {
  background: var(--card);
  padding: 6rem 0;
}

.features__block {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.features__block + .features__block {
  margin-top: 5rem;
}

.features__image {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--bg);
}

.features__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(26, 155, 138, 0.1);
}

.features__icon-box svg {
  color: var(--accent);
}

.features__block-title {
  margin-top: 1.25rem;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--fg);
}

.features__block-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.features__list-item {
  display: flex;
  gap: 0.75rem;
}

.features__list-item svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--accent);
}

.features__list-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.features__list-desc {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* --- Feedback --- */
.feedback {
  background: var(--bg);
  padding: 6rem 0;
}

.feedback__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.feedback__image {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: var(--card);
}

.feedback__lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-fg);
}

.feedback__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feedback__item {
  display: flex;
  gap: 1rem;
}

.feedback__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--muted);
}

.feedback__item-icon svg {
  color: var(--accent);
}

.feedback__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.feedback__item-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* --- CTA --- */
.cta {
  position: relative;
  background: var(--primary);
  padding: 6rem 0;
  overflow: hidden;
}

.cta__blob {
  position: absolute;
  border-radius: 9999px;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.05;
}

.cta__blob--1 {
  width: 24rem;
  height: 24rem;
  top: 25%;
  left: 25%;
}

.cta__blob--2 {
  width: 16rem;
  height: 16rem;
  bottom: 25%;
  right: 25%;
}

.cta__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta__title {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--primary-fg);
}

.cta__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  margin-top: 2.5rem;
}

/* --- FAQ --- */
.faq {
  background: var(--card);
  padding: 6rem 0;
}

.faq__list {
  margin-top: 3rem;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
  font-family: var(--font-sans);
}

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

.faq__chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 20rem;
}

.faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-fg);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--fg);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .hide-sp {
    display: inline;
  }

  .hero__card {
    padding: 4rem;
  }

  .problem__grid,
  .project__grid,
  .feedback__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

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

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

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

  .detail-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .detail-section__grid--reverse > *:first-child {
    order: 0;
  }

  .detail-section__grid--reverse > *:last-child {
    order: -1;
  }

  .features__block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }

  .navbar__cta {
    display: block;
  }

  .navbar__mobile-btn {
    display: none;
  }

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