:root {
  --bg: #000;
  --card-bg: #0A0F18;

  --stroke: rgba(255, 255, 255, .08);
  --text: #F1F5F9;
  --muted: #c2c5c8;
  --muted2: #a6a9ac;

  --brand: #3B82F6;
  --brand-glow: #60A5FA;
  --accent: #06B6D4;
  --accent-dark: #0891B2;

  --shadow: 0 20px 60px rgba(0, 0, 0, .8);
  --radius: 20px;

  --surface: var(--card-bg);
  --text-color: var(--text);
}

.modal-content {
  border: 1px solid var(--stroke);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-content,
.modal-header,
.modal-footer,
.modal-body {
  background-color: var(--card-bg) !important;
  color: var(--text);
  border-color: var(--stroke) !important;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1050 !important;
  background-color: #000;
  opacity: 0.8 !important;
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.04) 0%, transparent 40%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tech-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.container,
.topbar,
.hero,
section,
footer {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  z-index: 0;
  pointer-events: none;
}

.h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.grad-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 540px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-glow);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 4, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  padding: 20px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}

.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-family: sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand:hover .mark {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 25px var(--accent);
}

.navlinks {
  display: flex;
  gap: 32px;
}

.navlinks a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.847);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.navlinks a i {
  font-size: 1rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.navlinks a:hover {
  color: var(--text);
}

.navlinks a:hover i {
  transform: translateY(-2px);
  opacity: 1;
  color: var(--accent);
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-glow);
  transition: width 0.3s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

.navcta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  opacity: 0.8;
}

.btn-login:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-register {
  background: var(--brand-glow);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  filter: brightness(1.1);
}

.btn-register i {
  transition: transform 0.3s ease;
}

.btn-register:hover i {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(90deg, var(--brand), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  filter: brightness(1.1);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hamb {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.glass-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
  isolation: isolate;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.text-muted-plans {
  color: #FFF;
}

.glass-card:hover {
  transform: perspective(1000px) rotateY(-2deg);
}

.detail-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}

.detail-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand);
}

.detail-box .lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-box .val {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.detail-box.highlight {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--brand);
}

.detail-box.highlight .val {
  color: var(--brand-glow);
}

.mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.mini-card:last-child {
  margin-bottom: 0;
}

.mini-card:hover {
  transform: translateX(8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-glow);
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: all 0.3s;
}

.mini-card:hover .icon-box {
  transform: rotate(-10deg) scale(1.1);
  filter: brightness(1.2);
}

.mini-info {
  flex: 1;
  margin-left: 12px;
}

.mini-title {
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.mini-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

section {
  padding: 70px 0;
}

.sec-header {
  margin-bottom: 50px;
  max-width: 700px;
}

.sec-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.sec-header p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: .3s ease;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.feature-card .icon-wrap {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #fff;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.section-modules {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.modules-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mod-card {
  background: var(--card-bg);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mod-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  background: #0f0f0f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mod-card.featured-mod {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), var(--card-bg));
}

.mod-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 16px;
}

.mod-icon {
  font-size: 24px;
  color: var(--brand);
}

.featured-mod .mod-icon {
  color: #fff;
  text-shadow: 0 0 10px var(--brand);
}

.mod-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.mod-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.mod-list li:last-child {
  margin-bottom: 0;
}

.mod-list li i {
  color: #333;
  font-size: 16px;
}

.mod-card:hover .mod-list li i {
  color: var(--brand-glow);
}

.mod-list li strong {
  color: #fff;
}

.mod-card.coming-soon {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.01),
      rgba(255, 255, 255, 0.01) 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px);
  opacity: 0.9;
}

.mod-card.coming-soon:hover {
  border-color: #ea1d2c;
  transform: translateY(-2px);
}

.badge-dev {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fbbf24;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.faded-text {
  color: var(--muted2) !important;
  font-style: italic;
  font-size: 13px;
  margin-top: 5px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), var(--card-bg));
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.plan-price {
  font-size: 32px;
  font-weight: 900;
  margin: 16px 0 8px;
  color: #fff;
}

.plan-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.plan-list li i {
  color: var(--brand);
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.test-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.test-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-glow);
  transform: translateY(-8px);
}

.test-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.test-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.test-meta strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.test-meta span {
  font-size: 13px;
  color: var(--muted);
}

.verified-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 11px;
  text-transform: uppercase;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

details[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-glow);
}

summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.faq-content strong {
  color: var(--accent);
}

.section-segmentos {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.seg-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.seg-card.featured-seg {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.03);
}

.seg-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-glow);
}

.seg-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-glow);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 16px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.seg-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.seg-intro {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 14px;
}

.estabelecimentos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.estabelecimentos span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.seg-card:hover .estabelecimentos span {
  border-color: rgba(6, 182, 212, 0.3);
  color: #fff;
}

.main-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
  max-width: 280px;
}

.footer-links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 22px;
  color: var(--muted);
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--brand-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.tech-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.tech-badges span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-right: 5px;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  font-weight: 700;
  font-size: 14px;
  transition: .3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.1);
}

.wa-badge {
  position: absolute;
  top: -5px;
  left: 10px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid var(--bg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--stroke);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 990;
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease;
}

.mobile-menu a {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  font-size: 16px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width: 991px) {

  .navlinks,
  .navcta .btn-login,
  .navcta .btn-register {
    display: none;
  }

  .hamb {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero .kicker {
    margin: 0 auto 16px;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .cards-grid,
  .plans-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    padding: 24px;
  }

  .glass-card {
    margin-top: 20px;
  }

  .mini-card {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .h1 {
    font-size: 36px;
  }

  .sec-header h2 {
    font-size: 28px;
  }

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

  .footer-brand p {
    margin: 20px auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .tech-badges {
    justify-content: center;
  }

  .test-user {
    flex-direction: column;
    text-align: center;
  }

  .verified-badge {
    top: 20px;
    right: 20px;
  }
}