:root {
  --bg: #eef7f4;
  --surface: #ffffff;
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #e5e7eb;
  --brand: #1b594e;
  --brand-strong: #2c7a6a;
  --brand-dark: #123e36;
  --brand-light: #e3f3ef;
  --brand-rgb: 27, 89, 78;
  --accent: var(--brand);
  --accent-dark: var(--brand-dark);
  --accent-light: var(--brand-light);
  --black: #111827;
  --shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 500;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .container {
    width: min(1480px, 87%);
  }
}

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

.eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.light {
  font-weight: 300;
}

.block {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 12px 30px rgba(var(--brand-rgb), 0.25);
}

.btn.dark {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.25);
}

.btn.ghost {
  background: #fff;
  border-color: #e5e7eb;
  color: var(--ink);
}

.btn.link {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(238, 247, 244, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  z-index: 20;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--accent);
  font-weight: 700;
}

.logo-mark {
  display: inline-flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 500;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  font: inherit;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 380px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.menu-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  align-items: flex-start;
}

.menu-item strong {
  display: block;
  color: var(--ink);
}

.menu-item span span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.menu-feature {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: visible;
  background: var(--bg);
}

.hero-panel {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 28px;
  padding: 64px 48px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .hero-panel {
    max-width: 1480px;
  }
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#e5e7eb 0.6px, transparent 0.6px),
    linear-gradient(to right, rgba(226, 232, 240, 0.7) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.7) 1px, transparent 1px);
  background-size: 28px 28px, 280px 100%, 100% 180px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 38%, rgba(var(--brand-rgb), 0.18) 3px, transparent 4px),
    radial-gradient(circle at 88% 28%, rgba(var(--brand-rgb), 0.18) 3px, transparent 4px),
    linear-gradient(#d6dae6 0 0),
    linear-gradient(#d6dae6 0 0);
  background-size: 1px 12px, 1px 12px, 12px 1px, 12px 1px;
  background-position: 12% 42%, 88% 32%, 89% 28%, 89% 28%;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-orb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), 0.12);
}

.hero-panel h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-panel strong {
  font-weight: 700;
}

.hero-panel .lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-actions .arrow {
  font-size: 1.2rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-card {
  background: #fff;
  padding: 0.9rem;
  border-radius: 18px;
  border: 2px solid rgba(var(--brand-rgb), 0.18);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  text-align: center;
  font-weight: 600;
  position: relative;
}

.card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  background: var(--brand-light);
  border-radius: 14px;
  overflow: hidden;
}

.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
}

.hero-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
  z-index: 2;
}

.hero-bubbles {
  position: absolute;
  left: -140px;
  bottom: 40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.18);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), 0.2);
}

.bubble.face {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--brand-dark);
  background: rgba(var(--brand-rgb), 0.28);
}

.bubble.face.face2 {
  width: 34px;
  height: 34px;
  font-size: 0.8rem;
}

.bubble.b1 {
  width: 74px;
  height: 74px;
  bottom: 0;
  left: 0;
}

.bubble.b2 {
  width: 52px;
  height: 52px;
  bottom: 62px;
  left: 52px;
}

.bubble.b3 {
  width: 90px;
  height: 90px;
  bottom: 30px;
  left: 108px;
}

.bubble.b4 {
  width: 40px;
  height: 40px;
  bottom: 120px;
  left: 10px;
}

.bubble.b5 {
  width: 64px;
  height: 64px;
  bottom: 148px;
  left: 100px;
}

.bubble.face {
  bottom: 92px;
  left: 196px;
}

.bubble.face.face2 {
  bottom: 0;
  left: 250px;
}

.bubble.b6 {
  width: 38px;
  height: 38px;
  bottom: 188px;
  left: 144px;
}

.bubble.b7 {
  width: 30px;
  height: 30px;
  bottom: 28px;
  left: 218px;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: #cbd5e1;
  border-radius: 999px;
}

.sparkle::before {
  width: 12px;
  height: 1.5px;
  top: 5px;
  left: 0;
}

.sparkle::after {
  width: 1.5px;
  height: 12px;
  left: 5px;
  top: 0;
}

.sparkle.s1 {
  top: 28%;
  left: 10%;
}

.sparkle.s2 {
  top: 28%;
  right: 10%;
}

.sparkle.s3 {
  top: 38%;
  left: 6%;
}

.sparkle.s4 {
  top: 38%;
  right: 6%;
}

.logos {
  padding: 40px 0 70px;
}

.logos-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.logos-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
}

.logos-set {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.logos-set img {
  height: 36px;
  width: auto;
  opacity: 0.75;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tabs {
  padding: 90px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.tab-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tab-btn {
  font: inherit;
  font-weight: 500;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  text-align: left;
  cursor: pointer;
}

.tab-btn.is-active {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.12);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel h3 {
  font-size: 1.8rem;
}

.tab-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.tab-visual img {
  width: 100%;
  max-width: 520px;
}

.tab-float {
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: min(200px, 40%);
}

.tab-stars {
  position: absolute;
  inset: auto 0 20px;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  pointer-events: none;
}

.tab-stars img {
  width: 32px;
  opacity: 0.6;
}

.use-cases {
  padding: 90px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.case-card img {
  border-radius: 16px;
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: 1.1rem;
}

.how-it-works {
  padding: 90px 0;
}

.how-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}

.how-group:nth-of-type(even) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.how-step {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  cursor: pointer;
  color: var(--accent);
}

.how-step span {
  font-weight: 700;
  color: var(--accent);
}

.how-step.is-active {
  color: var(--accent-dark);
}

.how-panel {
  display: none;
  color: var(--muted);
  margin-bottom: 1rem;
}

.how-panel.is-open {
  display: block;
}

.how-image {
  border-radius: 20px;
  width: 100%;
  box-shadow: var(--shadow);
}

.testimonial {
  padding: 90px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.testimonial-copy blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.5rem 0;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  margin: 0;
}

.author-role {
  margin: 0;
  color: var(--muted);
}

.author-logo {
  margin-left: auto;
  width: 110px;
}

.quote-mark {
  width: 110px;
  margin-top: 1.5rem;
  opacity: 0.6;
}

.testimonial-stats {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.testimonial-stats h3 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.testimonial-stats p {
  margin: 0;
  color: var(--muted);
}

.cta-form {
  padding: 90px 0;
  background: #f8fafc;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.form-copy h2 {
  font-size: 2rem;
}

.form-copy img {
  width: 140px;
  margin-top: 1.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--ink);
  gap: 0.5rem;
}

.contact-form label span {
  color: #dc2626;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid var(--soft);
  background: transparent;
  padding: 0.6rem 0;
  font: inherit;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-content: center;
}

.reviews {
  padding: 90px 0;
}

.review-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.review-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.review-card p {
  color: var(--muted);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.review-logo {
  margin-left: auto;
  width: 80px;
  border-radius: 0;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--soft);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.resources {
  padding: 90px 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.resource-card h3 {
  font-size: 1rem;
  padding: 1rem;
}

.cta-small {
  padding: 70px 0;
}

.cta-small-inner {
  background: #fff;
  border-radius: 26px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-small-inner h2 {
  margin-bottom: 0.5rem;
}

.faq {
  padding: 90px 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font: inherit;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  margin-top: 0.75rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.security {
  padding: 80px 0 110px;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.security-grid h2 {
  font-size: 2rem;
}

.security-line {
  width: 1px;
  height: 120px;
  background: var(--soft);
}

.footer {
  background: #fff;
  border-top: 1px solid var(--soft);
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.footer-links p {
  font-weight: 600;
  color: var(--ink);
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  color: var(--ink);
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  body.nav-open .nav-links {
    max-height: 80vh;
  }

  .nav-actions {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding: 1rem 0 0;
    min-width: auto;
    grid-template-columns: 1fr;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .hero-panel {
    padding: 48px 28px 36px;
  }

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

  .tab-layout {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

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

  .how-group {
    grid-template-columns: 1fr;
  }

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

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

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

  .review-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

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

  .security-line {
    width: 100%;
    height: 1px;
  }

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

@media (max-width: 600px) {
  .hero {
    padding: 90px 0 60px;
  }

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

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

  .tab-stars {
    display: none;
  }
}
