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

:root {
  --bg-primary: #0b0b0f;
  --bg-secondary: #101017;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b8b8c2;
  --text-muted: #7f8493;
  --accent: #00ff9c;
  --accent-dark: #00cc7d;
  --danger: #ff5f7a;
  --warning: #ffcb57;
  --success: #5dffb0;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.32);
  --shadow-glow: 0 0 30px rgba(0, 255, 156, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1200px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 156, 0.05), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 255, 156, 0.04), transparent 28%),
    var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

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

textarea {
  resize: vertical;
}

main {
  position: relative;
  z-index: 2;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  background: var(--accent);
  top: -120px;
  left: -120px;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.bg-glow-2 {
  background: #00b86f;
  bottom: -140px;
  right: -100px;
  animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(30px, -20px, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 255, 156, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover,
.footer-links a:hover,
.active-link {
  color: var(--text-primary) !important;
}

.nav-links a:hover::after,
.footer-links a:hover::after,
.active-link::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #04120c;
  box-shadow:
    0 0 18px rgba(0, 255, 156, 0.22),
    0 10px 24px rgba(0, 255, 156, 0.12);
}

.btn-primary:hover {
  background: #22ffab;
  box-shadow:
    0 0 28px rgba(0, 255, 156, 0.28),
    0 12px 28px rgba(0, 255, 156, 0.16);
}

.btn-secondary {
  border: 1px solid rgba(0, 255, 156, 0.32);
  color: var(--accent);
  background: rgba(0, 255, 156, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(0, 255, 156, 0.6);
  box-shadow: 0 0 22px rgba(0, 255, 156, 0.12);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  background: #25d366;
  color: #07110c;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.24);
}

.btn-telegram {
  background: #229ed9;
  color: #07111a;
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.18);
}

.btn-telegram:hover {
  box-shadow: 0 0 20px rgba(34, 158, 217, 0.24);
}

.full-width {
  width: 100%;
}

.hero {
  padding: 96px 0 56px;
}

.page-hero {
  padding-bottom: 40px;
}

.dashboard-hero {
  padding-bottom: 18px;
}

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

.dashboard-hero-top {
  display: grid;
  gap: 28px;
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.summary-card {
  padding: 22px;
}

.summary-card p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.summary-card h3 {
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--accent);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-tag,
.mini-label,
.plan-name {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 18px 0 18px;
  max-width: 12ch;
}

.dashboard-hero h1 {
  max-width: 17ch;
}

.hero-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
}

.glass-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.04)
  );
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    transparent 35%,
    transparent 65%,
    rgba(0, 255, 156, 0.04)
  );
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 156, 0.22);
  box-shadow:
    0 0 30px rgba(0, 255, 156, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.34);
}

.hero-card {
  min-height: 100%;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-top h3 {
  margin-top: 6px;
  font-size: 1.45rem;
}

.mini-label {
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #06110c;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 255, 156, 0.22);
}

.dashboard-metrics {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.metric-box {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.metric-box h4 {
  font-size: 1rem;
}

.account-list {
  display: grid;
  gap: 12px;
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.account-row span {
  color: var(--text-secondary);
}

.stats,
.services-preview,
.plans,
.verticals,
.testimonials,
.cta,
.pricing-table-section,
.login-section,
.dashboard-section {
  padding: 44px 0 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 12px 0 12px;
}

.section-heading p {
  color: var(--text-secondary);
  max-width: 700px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: left;
  padding: 26px;
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(0, 255, 156, 0.18);
}

.stat-card p {
  color: var(--text-secondary);
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.testimonial-card,
.pricing-card,
.login-card {
  height: 100%;
}

.feature-card h3,
.testimonial-card h3,
.pricing-card h3,
.login-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.testimonial-card p,
.login-card p {
  color: var(--text-secondary);
}

.service-price {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card h3 {
  font-size: 2.1rem;
  line-height: 1;
  margin: 0;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 6px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 10px;
}

.pricing-card li {
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 255, 156, 0.24);
}

.featured-plan {
  border: 1px solid rgba(0, 255, 156, 0.32);
  box-shadow:
    0 0 34px rgba(0, 255, 156, 0.12),
    0 20px 55px rgba(0, 0, 0, 0.38);
  transform: translateY(-8px);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 800;
  color: #07110c;
  background: var(--accent);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 255, 156, 0.24);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  min-width: 900px;
}

.pricing-table-header,
.pricing-table-cell {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table-header {
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table-cell {
  color: var(--text-secondary);
}

.feature-name {
  color: var(--text-primary);
  font-weight: 600;
}

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vertical-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  margin: 0;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.vertical-tags span:hover {
  color: var(--text-primary);
  border-color: rgba(0, 255, 156, 0.4);
  box-shadow: 0 0 18px rgba(0, 255, 156, 0.12);
  transform: translateY(-2px);
}

.testimonial-card p {
  margin-bottom: 14px;
}

.testimonial-card strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.login-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.login-card-header p {
  color: var(--text-secondary);
}

.login-form,
.dashboard-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 255, 156, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 255, 156, 0.08);
}

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

.inline-checkbox input {
  width: 18px;
  height: 18px;
}

.inline-checkbox label {
  margin: 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.two-field {
  grid-template-columns: repeat(2, 1fr);
}

.three-field {
  grid-template-columns: repeat(3, 1fr);
}

.login-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 255, 156, 0.03);
  border: 1px solid rgba(0, 255, 156, 0.1);
}

.login-note p {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.login-feedback,
.dashboard-feedback {
  margin-top: 14px;
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.login-feedback.info,
.dashboard-feedback.info {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.08);
}

.login-feedback.success,
.dashboard-feedback.success {
  background: rgba(0, 255, 156, 0.08);
  color: #8dffd0;
  border-color: rgba(0, 255, 156, 0.22);
}

.login-feedback.error,
.dashboard-feedback.error {
  background: rgba(255, 77, 109, 0.08);
  color: #ff9cad;
  border-color: rgba(255, 77, 109, 0.18);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.dashboard-grid-single {
  grid-template-columns: 1fr;
}

.dashboard-panel {
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-header h2 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-top: 6px;
}

.dashboard-list {
  display: grid;
  gap: 16px;
}

.dashboard-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-item-main {
  flex: 1;
}

.dashboard-item-main h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.dashboard-item-main p {
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.dashboard-item-main strong {
  color: var(--text-primary);
}

.dashboard-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

.request-item {
  border-color: rgba(255, 203, 87, 0.18);
}

.completed-request {
  border-color: rgba(93, 255, 176, 0.14);
}

.empty-state {
  padding: 20px;
  border-radius: 16px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.cta-card {
  text-align: center;
  padding: 42px 28px;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 24px;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.floating-support {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #04110c;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

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

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.telegram {
  background: #229ed9;
  color: #07131d;
}

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

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

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

  .hero h1 {
    max-width: 14ch;
  }

  .stats-grid,
  .dashboard-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-col,
  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .three-field {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 72px 0 42px;
  }

  .section-heading h2,
  .cta-card h2 {
    max-width: 16ch;
  }

  .three-col,
  .two-col,
  .stats-grid,
  .dashboard-summary-grid,
  .dashboard-grid,
  .two-field,
  .three-field {
    grid-template-columns: 1fr;
  }

  .dashboard-item {
    flex-direction: column;
  }

  .dashboard-item-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(92%, var(--container));
  }

  .hero h1 {
    font-size: 2.4rem;
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .btn,
  .float-btn {
    width: 100%;
  }

  .hero-actions,
  .nav-actions,
  .dashboard-item-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-support {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    min-width: 0;
  }

  .glass-card {
    padding: 20px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-card h3 {
    font-size: 1.45rem;
  }
}
