﻿:root {
  --blue: #043873;
  --blue-light: #4f9cf9;
  --dark: #171717;
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --text-light: #e0e3e7;
  --border-light: rgba(224, 227, 231, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--blue);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--blue);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  padding-top: 96px;
}

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

.container {
  width: min(1440px, 100% - 64px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 10;
  background: rgba(4, 56, 115, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateZ(0);
}


.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #ffffff;
}

.brand img {
  width: 28px;
  height: 22px;
  border-radius: 0;
}

.brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.brand-text.strong {
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #ffffff;
  font-weight: 600;
}

.nav-link {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.sign-in {
  font-weight: 700;
  font-size: 16px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  padding: 6px;
  font-weight: 600;
}

.menu-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-icon-close {
  display: none;
}

.hero {
  background: var(--blue) url("assets/images/Element1.png") top center / cover no-repeat;
  padding: 120px 0 100px;
  color: #ffffff;
}

.hero-grid {
  display: flex;
  gap: 32px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1,
.hero-text h2 {
  margin: 0;
  font-size: 72px;
  line-height: 1.1;
}

.hero-text h1 {
  font-weight: 500;
  font-size: 66px;
}

.hero-text h2 {
  font-weight: 600;
}

.hero-text p {
  font-size: 28px;
  color: var(--text-light);
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  background: var(--blue-light);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 18px 28px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.btn-primary.btn-compact {
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(4, 56, 115, 0.35);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.credit-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--text-light);
}

.credit-note.light {
  color: #ffffff;
}

.hero-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  width: min(92vw, 360px);
  background: linear-gradient(160deg, #0f2a57 0%, #0b2347 60%, #0a1d3a 100%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  transform: translateY(-16px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #ffffff;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-menu-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.mobile-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  gap: 12px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: #ffffff;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mobile-secondary {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
}

.mobile-open .mobile-menu {
  pointer-events: auto;
}

.mobile-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-open .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-open .menu-icon-open {
  display: none;
}

.mobile-open .menu-icon-close {
  display: inline-block;
}

.hero-image {
  width: 600px;
  height: 600px;
  border-radius: 24px;
  background: #0f1f3b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.actions {
  background: #ffffff url("assets/images/Element11.png") left top / contain no-repeat;
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}

.actions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.actions-text {
  max-width: 520px;
}

.actions-text h3 {
  font-size: 46px;
  margin: 12px 0 20px;
  font-weight: 600;
  color: #0f172a;
}

.actions-text p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
}

.actions-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.actions-logos img {
  height: 26px;
  width: auto;
  filter: grayscale(0.2);
  opacity: 0.85;
}

.actions-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
  min-height: 180px;
}

.value-card h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.value-card p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(79, 156, 249, 0.16);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.orbit {
  background: #ffffff;
  padding: 90px 0 110px;
}

.orbit-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.orbit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-visual img {
  width: min(520px, 100%);
  height: auto;
}

.orbit-text h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: #0f172a;
}

.orbit-text p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.orbit .btn-primary {
  padding: 14px 22px;
  font-size: 16px;
}

.use-anywhere {
  background: var(--blue);
  padding: 28px 0 120px;
  color: #ffffff;
}

.use-anywhere-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: 64px;
  align-items: center;
}

.use-anywhere-text {
  align-self: center;
}

.use-anywhere-text h3 {
  font-size: 46px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: #ffffff;
}

.use-anywhere-text p {
  color: rgba(224, 227, 231, 0.9);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.use-anywhere-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px 24px;
  font-size: clamp(9px, 0.95vw, 12px);
  text-transform: uppercase;
  letter-spacing: clamp(0.05em, 0.18vw, 0.14em);
  color: rgba(191, 219, 254, 0.95);
  white-space: nowrap;
}

.use-anywhere-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.use-anywhere-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.journey {
  background: #ffffff;
  padding: 100px 0 120px;
  color: var(--text-dark);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.journey-faq {
  display: grid;
  gap: 14px;
}

.journey-item {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  color: inherit;
  border-radius: 16px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  text-align: left;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.journey-item:hover {
  border-color: rgba(15, 23, 42, 0.22);
  background: #ffffff;
  transform: translateY(-1px);
}

.journey-item.active {
  border-color: rgba(79, 156, 249, 0.6);
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.journey-trigger {
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  display: grid;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
}

.step-note {
  font-size: 14px;
  color: #64748b;
}

.journey-panel {
  display: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
}

.journey-panel p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.journey-main {
  background: url("assets/images/BACKGROUND1.png") center / contain no-repeat;
  border-radius: 22px;
  padding: 64px 44px;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.journey-main-text {
  max-width: 420px;
}

.journey-main h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.journey-main p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.eyebrow.light {
  color: #93c5fd;
}

.use-anywhere-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
}

.use-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 22px;
  min-height: 140px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(3, 18, 43, 0.35);
}

.use-card-body h4 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.use-card-body p {
  margin: 0;
  color: rgba(224, 227, 231, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

.cta {
  background: var(--blue);
  position: relative;
  height: 439px;
  overflow: hidden;
  color: #ffffff;
}

.cta-bg-text {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 210px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -2px;
  background: linear-gradient(90deg, rgba(4, 56, 115, 0.05) 0%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  white-space: pre-line;
  z-index: 1;
}

.cta-overlay {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 56, 115, 1) 0%, rgba(4, 56, 115, 0) 60%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.cta-content {
  padding: 0 32px;
}

.cta-content h3 {
  font-size: 48px;
  margin: 0 0 32px;
  font-weight: 600;
}

.cta-content p {
  font-size: 22px;
  line-height: 1.8;
  margin: 0;
}

.cta-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-light {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #1e40af;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: var(--blue);
  color: #ffffff;
  position: relative;
  padding: 60px 0 40px;
}

.footer-logo-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
}

.footer-logo-watermark img {
  height: 300px;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
}

.footer-brand {
  width: 350px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
}

.brand-row img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.footer-sub {
  margin: 16px 0 24px;
  color: var(--text-light);
  font-size: 20px;
}

.footer-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: #60a5fa;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn.image {
  padding: 0;
}

.icon-btn.image img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-col {
  width: 225px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 20px;
}

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

.footer-bottom {
  margin-top: 40px;
  color: #9ca3af;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .hero-text h1,
  .hero-text h2 {
    font-size: 54px;
  }

  .hero-text p {
    font-size: 22px;
  }

  .hero-image {
    width: 480px;
    height: 480px;
  }

  .cta-bg-text {
    font-size: 120px;
  }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .actions-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .actions-text {
    margin: 0 auto;
  }

  .actions-logos {
    justify-content: center;
  }

  .orbit-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .use-anywhere-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .use-anywhere-list {
    justify-items: center;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    text-align: left;
    grid-template-areas:
      "main"
      "faq";
  }

  .journey-main {
    grid-area: main;
  }

  .journey-faq {
    grid-area: faq;
  }

  .security-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta {
    height: auto;
    padding: 48px 0;
  }

  .cta-bg-text {
    position: static;
    transform: none;
    text-align: center;
    font-size: 96px;
    margin-bottom: 24px;
  }

  .cta-overlay {
    background: none;
  }

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

  .cta-actions {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1440px, 100% - 24px);
  }

  body {
    padding-top: 84px;
  }

  .hero {
    padding: 40px 0 64px;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-image {
    width: 320px;
    height: 320px;
  }

  .cta-bg-text {
    font-size: 72px;
  }

  .actions {
    padding: 72px 0 90px;
  }

  .actions-text h3 {
    font-size: 34px;
  }

  .actions-cards {
    grid-template-columns: 1fr;
  }

  .orbit {
    padding: 72px 0 90px;
  }

  .orbit-text h3 {
    font-size: 34px;
  }

  .use-anywhere {
    padding: 28px 0 90px;
  }

  .use-anywhere-text h3 {
    font-size: 34px;
  }

  .use-anywhere-list {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    gap: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .use-anywhere-visual img {
    width: 100%;
    height: auto;
    transform: none;
  }

  .journey {
    padding: 72px 0 90px;
  }

  .journey-main h3 {
    font-size: 34px;
  }

  .crm-section {
    padding: 72px 0 90px;
  }

  .crm-section-text h3 {
    font-size: 34px;
  }

  .security {
    padding: 72px 0 90px;
  }

  .security-text h3 {
    font-size: 34px;
  }

  .footer-wrap {
    gap: 32px;
  }

  .footer-col {
    width: 100%;
  }
}

.journey-item.active .journey-panel {
  display: block;
}

.crm-section {
  background: #ffffff;
  padding: 100px 0 120px;
}

.crm-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
}

.crm-section-text h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: #0f172a;
}

.crm-section-text p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.crm-section-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.crm-section-visual {
  display: flex;
  justify-content: center;
}

.crm-mock {
  width: min(460px, 100%);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 14px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.mock-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1d4ed8;
  background: rgba(79, 156, 249, 0.16);
  padding: 4px 8px;
  border-radius: 999px;
}

.mock-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-name {
  font-weight: 600;
}

.mock-meta {
  color: #64748b;
  font-size: 13px;
}

.why-mitso {
  background: linear-gradient(120deg, #e6f0ff 0%, #ffffff 45%, #eef6ff 100%);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}

.why-mitso::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(79, 156, 249, 0.25) 0%, rgba(79, 156, 249, 0) 70%);
  pointer-events: none;
}

.why-mitso-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-mitso-text h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: #0f172a;
}

.why-mitso-text p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.why-mitso-pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-mitso-pills span {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e3a8a;
}

.why-mitso-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.why-mitso-note {
  font-size: 15px;
  color: #1f2937;
  font-weight: 600;
}

.why-mitso-card {
  background: #0b2f5b;
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  display: grid;
  gap: 18px;
}

.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.why-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(191, 219, 254, 0.9);
  font-weight: 600;
}

.why-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
}

.why-mitso-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
}

.why-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: rgba(224, 231, 255, 0.95);
  font-size: 15px;
}

.why-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-card-list svg {
  width: 18px;
  height: 18px;
  color: #93c5fd;
}

@media (max-width: 960px) {
  .why-mitso-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-mitso-actions {
    justify-content: center;
  }

  .why-mitso-pills {
    justify-content: center;
  }

  .why-card-header {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .why-mitso {
    padding: 72px 0 90px;
  }

  .why-mitso-text h3 {
    font-size: 34px;
  }
}

.security {
  background: #ffffff;
  padding: 100px 0 120px;
  color: var(--text-dark);
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.security-text h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
}

.security-text p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.security-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
}

@media (max-width: 640px) {
  .security-list {
    display: none;
  }
}

.security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-visual img {
  width: min(560px, 100%);
  height: auto;
}

.faqs {
  background: #ffffff;
  padding: 96px 0 120px;
}

.faqs-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.faqs-intro {
  background: url("assets/images/BACKGROUND1.png") center / contain no-repeat;
  border-radius: 22px;
  padding: 56px 44px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faqs-intro h3 {
  font-size: 44px;
  margin: 12px 0 18px;
  font-weight: 600;
  color: #0f172a;
}

.faqs-intro p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.faqs-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: #2563eb;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: #64748b;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 960px) {
  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .faqs-intro {
    min-height: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .faqs {
    padding: 72px 0 90px;
  }

  .faqs-intro {
    padding: 40px 28px;
  }

  .faqs-intro h3 {
    font-size: 34px;
  }
}

@media (max-width: 960px) {
  .security-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .security-visual,
  .security-text {
    width: 100%;
  }

  .crm-section-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
