:root {
  --navy: #050b18;
  --navy-2: #071224;
  --navy-3: #0b1933;
  --blue: #0a84ff;
  --blue-2: #007bff;
  --cyan: #00d4ff;
  --white: #ffffff;
  --muted: #a8b3c7;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.075);
  --light: #f8fafc;
  --ink: #0f172a;
  --soft: #64748b;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --glow: 0 0 44px rgba(0, 212, 255, 0.24);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: Sora, Avenir Next, Montserrat, Trebuchet MS, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(10, 132, 255, 0.32);
  border-radius: 15px;
  background: #000;
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.22);
}

.brand-copy strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  cursor: pointer;
}

.nav-link:hover,
.dropdown-trigger:hover,
.nav-link.active {
  color: var(--white);
}

.dropdown {
  position: relative;
}

.dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 290px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 18, 36, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-panel a:hover {
  color: var(--white);
  background: rgba(10, 132, 255, 0.12);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--navy);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 45px rgba(10, 132, 255, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 212, 255, 0.2), transparent 32%),
    radial-gradient(circle at 15% 16%, rgba(10, 132, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #050b18 0%, #071224 100%);
}

.hero::before,
.section-dark::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  color: #d8f7ff;
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.83rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-item strong {
  display: block;
  font-size: 1.26rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  min-height: 560px;
  perspective: 1200px;
}

.mockup-stage {
  position: relative;
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
}

.orb {
  position: absolute;
  inset: 8% 6% auto auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.45), rgba(10, 132, 255, 0.06) 62%, transparent 72%);
  filter: blur(6px);
  animation: pulseGlow 6s ease-in-out infinite;
}

.browser-mockup {
  position: absolute;
  inset: 86px 18px auto auto;
  width: min(92%, 590px);
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(7, 18, 36, 0.9);
  box-shadow: var(--shadow), var(--glow);
  transform: rotateY(-16deg) rotateX(9deg) rotateZ(1deg);
  animation: floatMockup 7s ease-in-out infinite;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 18px 0 0 rgba(10, 132, 255, 0.75), 36px 0 0 rgba(255, 255, 255, 0.35);
}

.browser-body {
  padding: 28px;
}

.metric-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 16px;
}

.metric-card,
.chart-card,
.mini-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.metric-card {
  padding: 22px;
}

.metric-card span,
.chart-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.25rem;
  line-height: 1;
}

.chart-card {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 128px;
  padding: 18px;
}

.bar {
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.bar:nth-child(1) { height: 45%; }
.bar:nth-child(2) { height: 70%; }
.bar:nth-child(3) { height: 58%; }
.bar:nth-child(4) { height: 92%; }

.mini-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mini-panel {
  min-height: 76px;
  padding: 14px;
}

.mini-panel i {
  display: block;
  width: 44px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 11, 24, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  animation: drift 5.8s ease-in-out infinite;
}

.floating-card::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.fc-1 { top: 36px; left: 28px; }
.fc-2 { top: 160px; left: 0; animation-delay: -1s; }
.fc-3 { right: 0; bottom: 132px; animation-delay: -2s; }
.fc-4 { left: 72px; bottom: 56px; animation-delay: -3s; }
.fc-5 { right: 80px; top: 24px; animation-delay: -4s; }

.section {
  padding: 92px 0;
  color: var(--ink);
  background: var(--light);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(10, 132, 255, 0.22), transparent 34%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.section-muted {
  background: #eef4fb;
}

.section-head {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p,
.card p,
.feature p,
.faq-answer,
.package-card li,
.contact-card p,
.project-card p {
  color: var(--soft);
}

.section-dark .section-head p,
.section-dark .card p,
.section-dark .feature p,
.section-dark .faq-answer,
.section-dark .package-card li,
.section-dark .project-card p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card,
.package-card,
.project-card,
.contact-card,
.faq-item,
.feature,
.step {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.section-dark .card,
.section-dark .package-card,
.section-dark .project-card,
.section-dark .contact-card,
.section-dark .faq-item,
.section-dark .feature,
.section-dark .step,
.glass-card {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.card,
.feature,
.step,
.package-card,
.contact-card,
.faq-item {
  padding: 26px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(10, 132, 255, 0.25);
  font-weight: 900;
}

.learn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.learn::after {
  content: "→";
  margin-left: 8px;
}

.feature {
  min-height: 166px;
}

.feature strong,
.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.process-grid {
  counter-reset: process;
}

.step {
  position: relative;
  overflow: hidden;
}

.step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.project-card {
  overflow: hidden;
}

.project-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 24% 20%, rgba(0, 212, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #071224, #0a326e 58%, #00d4ff);
}

.project-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(10, 132, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.packages {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: rgba(0, 212, 255, 0.34);
  transform: translateY(-8px);
  box-shadow: 0 28px 76px rgba(10, 132, 255, 0.2);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.package-card .btn {
  margin-top: auto;
}

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

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

.faq-question::after {
  content: "+";
  margin-left: 16px;
  color: var(--blue);
  font-size: 1.4rem;
}

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

.faq-answer {
  display: none;
  margin: 12px 0 0;
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 212, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(10, 132, 255, 0.22), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 780px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft);
}

.section-dark .check-list li {
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.32);
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 310px;
  margin-top: 18px;
  border: 1px dashed rgba(10, 132, 255, 0.34);
  border-radius: 24px;
  color: var(--soft);
  background:
    linear-gradient(135deg, rgba(10, 132, 255, 0.08), rgba(0, 212, 255, 0.12)),
    #fff;
  text-align: center;
}

.site-footer {
  padding: 64px 0 30px;
  color: var(--muted);
  background: #030713;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  font-size: 0.9rem;
}

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

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

@keyframes floatMockup {
  0%, 100% { transform: rotateY(-16deg) rotateX(9deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(7deg) rotateZ(-1deg) translateY(-18px); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 42px); }
  50% { transform: translate3d(10px, -16px, 42px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.62; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .mockup-stage {
    min-height: 500px;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 11, 24, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-menu {
    display: flex;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-actions .btn {
    flex: 1;
  }

  .dropdown-panel {
    position: static;
    display: none;
    margin: 4px 0 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown.open .dropdown-panel,
  .dropdown:focus-within .dropdown-panel {
    display: grid;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 74px;
  }

  .nav-menu {
    top: 74px;
  }

  .brand-copy span {
    display: none;
  }

  .hero,
  .page-hero,
  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .trust-row,
  .mini-panels,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .mockup-stage {
    min-height: 430px;
  }

  .browser-mockup {
    inset: 88px 0 auto auto;
    width: 100%;
    min-height: 310px;
    transform: none;
  }

  .browser-body {
    padding: 18px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .floating-card {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .fc-1 { top: 28px; left: 0; }
  .fc-2 { top: 78px; left: auto; right: 0; }
  .fc-3 { right: 0; bottom: 42px; }
  .fc-4 { left: 0; bottom: 4px; }
  .fc-5 { display: none; }

  .package-card.featured {
    transform: none;
  }

  .cta-band {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* WIZARD STYLES */
.wizard-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.wizard-progress {
  display: flex;
  margin-bottom: 40px;
  gap: 10px;
}

.wizard-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--glass);
  border-radius: 99px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  width: 0%;
  transition: width 0.3s ease;
}

.wizard-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.wizard-step > p {
  color: var(--muted);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.wizard-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .wizard-options.grid-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.wizard-option {
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.wizard-option input[type="radio"],
.wizard-option input[type="checkbox"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  accent-color: var(--cyan);
}

.wizard-option.selected {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.wizard-error {
  color: #ff4b4b;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.wizard-error.show {
  display: block;
}

.result-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.result-card h3 {
  margin-bottom: 16px;
  color: var(--cyan);
}

.result-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(10, 132, 255, 0.15);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0 8px 8px 0;
}

.package-suggestion {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 24px;
  border-radius: 18px;
  margin-top: 24px;
}

.package-suggestion h4 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.summary-list li:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
}

.summary-value {
  font-weight: 600;
}
