:root {
  --bg: #050b17;
  --bg-soft: #0d1729;
  --panel: rgba(17, 24, 39, 0.8);
  --panel-strong: rgba(12, 18, 31, 0.95);
  --card: rgba(18, 25, 39, 0.78);
  --card-strong: rgba(19, 26, 39, 0.96);
  --white: #f4f8ff;
  --muted: #a7b5d3;
  --line: rgba(146, 168, 218, 0.14);
  --blue: #56c5ff;
  --blue-strong: #1d9bf0;
  --purple: #8d7dff;
  --purple-strong: #6b5cff;
  --green: #39d98a;
  --grad: linear-gradient(135deg, rgba(86, 197, 255, 0.28), rgba(141, 125, 255, 0.28));
  --shadow: 0 24px 52px rgba(7, 12, 22, 0.42);
  --radius: 22px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(86, 197, 255, 0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(141, 125, 255, 0.2), transparent 26%),
    #050b17;
  color: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

h1,
h2,
h3,
.logo {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 23, 0.7);
  border-bottom: 1px solid rgba(169, 184, 214, 0.08);
}

.navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--white);
}

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.96rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #05111d;
  box-shadow: 0 18px 35px rgba(94, 155, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(174, 206, 255, 0.16);
  color: var(--white);
}

.nav-cta {
  padding-inline: 1.2rem;
  white-space: nowrap;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p {
  margin-bottom: 2rem;
  font-size: 1.08rem;
  color: var(--muted);
}

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

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(10, 16, 27, 0.4);
  border-radius: 999px;
  color: rgba(244, 248, 255, 0.82);
  font-weight: 600;
}

.trust-item i {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.dashboard-shell {
  position: relative;
  width: min(100%, 560px);
  padding: 1rem;
  background: rgba(15, 22, 35, 0.8);
  border: 1px solid rgba(173, 199, 255, 0.15);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.dashboard-topbar {
  display: flex;
  gap: 0.55rem;
  padding: 0.8rem 1rem 1rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ff5c7a; }
.dot-yellow { background: #ffc857; }
.dot-green { background: #4ed9a0; }

.dashboard-body {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 1rem;
  padding: 0.5rem;
}

.sidebar {
  background: rgba(10, 15, 24, 0.7);
  border: 1px solid rgba(173, 199, 255, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0.65rem;
}

.side-pill {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 171, 196, 0.12);
}

.side-pill.active {
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.45), rgba(141, 125, 255, 0.45));
}

.content-panel {
  background: rgba(9, 13, 22, 0.8);
  border: 1px solid rgba(156, 180, 218, 0.12);
  border-radius: 20px;
  padding: 1rem;
}

.header-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.mini-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(161, 184, 230, 0.12);
  min-height: 52px;
  border-radius: 16px;
}

.mini-card.bright {
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.26), rgba(141, 125, 255, 0.2));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stat-box {
  padding: 1rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(176, 198, 238, 0.12);
}

.stat-primary {
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.2), rgba(141, 125, 255, 0.14));
}

.highlight-box {
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.28), rgba(141, 125, 255, 0.24));
}

.stat-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(190, 215, 255, 0.85);
  margin-bottom: 0.5rem;
}

.stat-box strong {
  font-size: 1.15rem;
}

.graph-card {
  background: linear-gradient(180deg, rgba(9, 16, 25, 0.9), rgba(20, 31, 46, 0.7));
  border-radius: 18px;
  border: 1px solid rgba(167, 197, 255, 0.12);
  padding: 1rem;
}

.graph-lines,
.graph-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.65rem;
  height: 120px;
}

.graph-lines {
  margin-bottom: 1rem;
}

.graph-lines span {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(86, 197, 255, 0.08), rgba(141, 125, 255, 0.18));
}

.graph-lines span:nth-child(1) { height: 45%; }
.graph-lines span:nth-child(2) { height: 70%; }
.graph-lines span:nth-child(3) { height: 82%; }

.graph-bars span {
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  opacity: 0.9;
  height: 65%;
}

.graph-bars span:nth-child(2) { height: 84%; }
.graph-bars span:nth-child(3) { height: 54%; }
.graph-bars span:nth-child(4) { height: 92%; }
.graph-bars span:nth-child(5) { height: 76%; }
.graph-bars span:nth-child(6) { height: 100%; }

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(16, 22, 34, 0.88);
  border: 1px solid rgba(171, 208, 255, 0.17);
  box-shadow: 0 18px 30px rgba(5, 9, 18, 0.5);
  font-size: 0.82rem;
  color: var(--white);
}

.floating-badge i {
  color: var(--green);
}

.badge-left {
  left: 0;
  bottom: 10%;
}

.badge-right {
  right: 4%;
  top: 8%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-heading.left-align {
  margin-left: 0;
  text-align: left;
}

.feature-grid,
.services-grid,
.plans-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card,
.service-card,
.plan-card {
  position: relative;
  background: rgba(14, 20, 32, 0.72);
  border: 1px solid rgba(165, 186, 223, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 25px 55px rgba(6, 11, 19, 0.26);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 170, 255, 0.44);
  box-shadow: 0 28px 56px rgba(10, 16, 28, 0.42);
}

.icon-wrap,
.service-icon,
.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.24), rgba(141, 125, 255, 0.18));
  border: 1px solid rgba(170, 196, 255, 0.12);
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.icon-wrap i,
.service-icon i,
.contact-icon i,
.floating-whatsapp i,
.trust-item i,
.floating-badge i,
.faq-question i {
  display: inline-block;
  line-height: 1;
}

.feature-card p,
.service-card p,
.plan-description,
.plan-features,
.contact-copy p,
.tagline,
.footer-links a,
.timeline-content p,
.faq-answer p {
  color: var(--muted);
}

.feature-card h3,
.service-card h3 {
  margin-bottom: 0.7rem;
}

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

.service-note {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 171, 218, 0.12);
  color: var(--white);
  line-height: 1.7;
}

.contract-toggle {
  display: inline-flex;
  padding: 0.42rem;
  gap: 0.5rem;
  background: rgba(17, 23, 36, 0.7);
  border: 1px solid rgba(169, 175, 203, 0.14);
  border-radius: 999px;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: center;
}

.contract-option {
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition: all 0.2s ease;
}

.contract-option.active {
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.25), rgba(141, 125, 255, 0.22));
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(134, 176, 255, 0.2);
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding-top: 1.8rem;
}

.plan-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 27, 40, 0.88), rgba(12, 18, 29, 0.9));
  border-color: rgba(96, 169, 255, 0.5);
}

.plan-badge {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #071620;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-label {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  background: rgba(86, 197, 255, 0.08);
  border: 1px solid rgba(84, 159, 255, 0.15);
  padding: 0.42rem 0.8rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.plan-card h3 {
  margin-bottom: 0.85rem;
}

.plan-description {
  min-height: 72px;
  margin-bottom: 1.2rem;
}

.plan-price-wrap {
  display: flex;
  align-items: end;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(170, 196, 255, 0.1);
}

.currency,
.plan-cycle {
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-price {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: var(--white);
  line-height: 1;
}

.plan-features {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(240, 244, 255, 0.78);
}

.plan-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.12rem;
  color: var(--green);
  font-size: 0.85rem;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-transparency {
  background: rgba(8, 13, 22, 0.46);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(173, 198, 255, 0.14);
  color: var(--white);
}

.pricing-list strong {
  font-size: 0.92rem;
  color: var(--white);
  text-align: right;
}

.statement-box {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(86, 197, 255, 0.17), rgba(141, 125, 255, 0.17));
  border: 1px solid rgba(150, 174, 255, 0.26);
}

.statement-box p {
  font-size: 1.24rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.6;
}

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

.timeline-item {
  position: relative;
  border-radius: var(--radius);
  background: rgba(15, 20, 31, 0.7);
  border: 1px solid rgba(168, 186, 224, 0.12);
  padding: 1.5rem 1.2rem;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 1.8rem;
  right: -0.74rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 0 7px rgba(86, 197, 255, 0.08);
}

.timeline-item:last-child::after {
  display: none;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--blue);
}

.timeline-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.faq-container {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 20px;
  background: rgba(15, 22, 33, 0.72);
  border: 1px solid rgba(159, 182, 224, 0.14);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.faq-question i {
  color: var(--blue);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  padding: 0 1.2rem 1.2rem;
}

.contact-section {
  padding-bottom: 8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1rem;
  border-radius: 18px;
  background: rgba(18, 24, 35, 0.7);
  border: 1px solid rgba(160, 188, 241, 0.1);
}

.contact-mini-card span,
.contact-mini-card a,
.contact-mini-card strong {
  display: block;
}

.contact-mini-card span {
  color: var(--muted);
}

.contact-mini-card a,
.contact-mini-card strong {
  color: var(--white);
  font-weight: 700;
}

.contact-form {
  background: rgba(17, 23, 35, 0.8);
  border: 1px solid rgba(159, 182, 224, 0.12);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 26px 52px rgba(7, 12, 17, 0.28);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-row label {
  color: rgba(244, 248, 255, 0.9);
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(164, 183, 221, 0.16);
  background: rgba(9, 14, 22, 0.76);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(102, 182, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(86, 197, 255, 0.12);
}

.submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  min-height: 1.6rem;
  margin-top: 0.8rem;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(160, 180, 218, 0.09);
  background: rgba(7, 12, 20, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 2rem;
  padding: 3.2rem 0 2rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.tagline {
  max-width: 420px;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--white);
}

.no-hidden {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(160, 180, 218, 0.09);
  padding: 1.1rem 0;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #22c55e);
  border-radius: 50%;
  color: #031712;
  box-shadow: 0 18px 30px rgba(34, 197, 94, 0.35);
  z-index: 90;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 36px rgba(34, 197, 94, 0.4);
}

.floating-whatsapp i {
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(171, 196, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .transparency-grid,
  .faq-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item::after {
    display: none;
  }
}

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

  .nav-menu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 12, 20, 0.98);
    border-bottom: 1px solid rgba(164, 183, 224, 0.08);
    padding: 1rem 1rem 1.2rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-menu-wrap.is-open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.75rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .feature-grid,
  .services-grid,
  .plans-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-actions,
  .trust-points {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .floating-badge {
    display: none;
  }

  .pricing-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-list strong {
    text-align: left;
  }
}
