:root {
  --primary: #2f6fed;
  --primary-soft: #eef4ff;
  --secondary: #18b5a4;
  --accent: #ffb648;
  --text-dark: #18324b;
  --text-muted: #697b8c;
  --bg-light: #f8fbff;
  --bg-soft: #f3f8ff;
  --border-soft: #e4edf6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 52, 89, 0.08);
  --shadow-soft: 0 8px 24px rgba(23, 52, 89, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* Footer / Brand Theme */
  --footer-bg-1: #0f0910;
  --footer-bg-2: #170c14;
  --footer-surface: rgba(255, 255, 255, 0.04);
  --footer-border: rgba(255, 255, 255, 0.09);
  --footer-brand-red: #9f2f28;
  --footer-brand-red-dark: #7b1f1a;
  --footer-brand-purple: #9f17e8;
  --footer-brand-purple-soft: #bc4cff;
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-text-soft: rgba(255, 255, 255, 0.68);
  --footer-text-faint: rgba(255, 255, 255, 0.52);

  /* Shared Brand Styling */
  --brand-gradient: linear-gradient(135deg, var(--footer-brand-purple), var(--footer-brand-red));
  --brand-gradient-soft: linear-gradient(135deg, rgba(159, 23, 232, 0.10), rgba(159, 47, 40, 0.10));
  --brand-shadow: 0 14px 30px rgba(159, 23, 232, 0.20);
  --brand-shadow-hover: 0 18px 38px rgba(159, 23, 232, 0.26);
  --brand-soft-bg: rgba(159, 23, 232, 0.08);
  --brand-soft-border: rgba(159, 23, 232, 0.14);
  --brand-accent-text: #8e24d6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}

a { text-decoration: none; }

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

.section-padding { padding: 96px 0; }

.section-header { margin-bottom: 48px; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 760px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand-gradient-soft);
  border: 1px solid var(--brand-soft-border);
  color: var(--brand-accent-text);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.navbar {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 237, 246, 0.9);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.brand-dot { color: var(--footer-brand-purple); }

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--footer-brand-purple);
}

.btn-main {
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  box-shadow: var(--brand-shadow);
  transition: 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--brand-shadow-hover);
}

.btn-ghost {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--footer-brand-purple);
  color: var(--footer-brand-purple);
  transform: translateY(-2px);
}

.hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(159, 23, 232, 0.08);
  top: 60px;
  right: -90px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: rgba(159, 47, 40, 0.07);
  left: -80px;
  bottom: 20px;
}

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

.hero-title {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(228, 237, 246, 0.95);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.mini-stat span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(228, 237, 246, 0.95);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.dashboard-frame { padding: 22px; }

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e4f3;
}

.ui-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.ui-panel,
.ui-small,
.metric,
.soft-box,
.card-modern,
.process-step,
.testimonial,
.pricing-card,
.content-card,
.legal-card,
.contact-card,
.showcase-box,
.info-panel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.ui-panel,
.ui-small,
.showcase-box,
.contact-card,
.content-card,
.legal-card,
.info-panel {
  padding: 28px;
}

.ui-panel {
  min-height: 290px;
  background: var(--bg-light);
}

.ui-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 180px;
  margin-top: 26px;
}

.ui-bars span {
  flex: 1;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, rgba(159, 23, 232, 0.92), rgba(159, 47, 40, 0.34));
}

.ui-bars span:nth-child(1) { height: 38%; }
.ui-bars span:nth-child(2) { height: 55%; }
.ui-bars span:nth-child(3) { height: 82%; }
.ui-bars span:nth-child(4) { height: 66%; }
.ui-bars span:nth-child(5) { height: 92%; }

.ui-small {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-light);
}

.metric {
  border-radius: 18px;
  padding: 16px;
  box-shadow: none;
}

.metric .label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.metric .value {
  font-size: 1.5rem;
  font-weight: 800;
}

.trust-card,
.small-highlight {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.trust-card i,
.icon-box,
.process-step .step-number,
.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(159, 23, 232, 0.08), rgba(159, 47, 40, 0.08));
  color: var(--footer-brand-purple);
  flex-shrink: 0;
}

.icon-box {
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.card-modern {
  padding: 28px;
  height: 100%;
  transition: 0.3s ease;
}

.card-modern:hover,
.pricing-card:hover,
.content-card:hover {
  transform: translateY(-5px);
}

.card-modern h4,
.pricing-card h4,
.process-step h5,
.content-card h4,
.showcase-box h3 {
  font-weight: 800;
}

.card-modern p,
.content-card p,
.process-step p,
.testimonial p,
.showcase-box p,
.info-panel p {
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-list i {
  color: var(--footer-brand-purple);
  margin-top: 2px;
}

.showcase-pill {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid rgba(159, 23, 232, 0.12);
  border-radius: 999px;
  color: var(--footer-brand-purple);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 8px 10px 0;
}

.page-hero {
  padding: 135px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(159, 23, 232, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(159, 47, 40, 0.08), transparent 25%);
}

.breadcrumb-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.content-card,
.legal-card,
.info-panel {
  padding: 34px;
  height: 100%;
}

.content-card ul,
.legal-card ul {
  color: var(--text-muted);
  line-height: 1.9;
}

.content-card h2,
.legal-card h2,
.info-panel h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.content-card h3,
.legal-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin: 24px 0 12px;
}

.note-box,
.warning-box {
  padding: 18px 20px;
  border-radius: 18px;
  margin-top: 18px;
  line-height: 1.8;
}

.note-box {
  background: linear-gradient(135deg, rgba(159, 23, 232, 0.08), rgba(159, 47, 40, 0.08));
  color: var(--text-dark);
  border: 1px solid rgba(159, 23, 232, 0.10);
}

.warning-box {
  background: #fff8e8;
  border: 1px solid #ffe1a6;
}

.pricing-card {
  padding: 34px;
  position: relative;
  height: 100%;
}

.pricing-card.featured {
  border: 2px solid rgba(159, 23, 232, 0.20);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-gradient);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 18px 0 4px;
}

.price-note,
.small-text,
.muted {
  color: var(--text-muted);
}

.small-text { line-height: 1.75; }

.process-step {
  padding: 28px;
  height: 100%;
}

.process-step .step-number {
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.05rem;
}

.testimonial {
  padding: 28px;
  height: 100%;
}

.author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.author-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(159, 23, 232, 0.10), rgba(159, 47, 40, 0.10));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--footer-brand-purple);
}

.contact-card form .form-label { font-weight: 600; }

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 14px 16px;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(159, 23, 232, 0.12);
  border-color: rgba(159, 23, 232, 0.35);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

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

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
}

.info-list li:last-child { border-bottom: 0; }

.highlight-box {
  background: linear-gradient(135deg, rgba(159, 23, 232, 0.06) 0%, rgba(159, 47, 40, 0.05) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.table-soft {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
}

.table-soft th,
.table-soft td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
}

.table-soft th {
  background: linear-gradient(135deg, rgba(159, 23, 232, 0.10), rgba(159, 47, 40, 0.08));
  font-weight: 700;
}

.table-soft tr:last-child td { border-bottom: 0; }

.accent { color: var(--footer-brand-purple); }

/* =========================
   New Cybinix Footer
========================= */

.cybinix-footer {
  position: relative;
  overflow: hidden;
  padding: 36px 0 24px;
  margin-top: 50px;
  background:
    radial-gradient(circle at top left, rgba(159, 23, 232, 0.20), transparent 30%),
    radial-gradient(circle at bottom right, rgba(159, 47, 40, 0.18), transparent 32%),
    linear-gradient(135deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 100%);
  color: var(--footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cybinix-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.cybinix-footer .container {
  position: relative;
  z-index: 2;
}

.cybinix-footer .footer-highlight {
  margin-bottom: 42px;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(159, 23, 232, 0.10), rgba(159, 47, 40, 0.10)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--footer-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.cybinix-footer .footer-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0d4ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cybinix-footer .footer-highlight-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
}

.cybinix-footer .footer-highlight-text {
  color: var(--footer-text-soft);
  line-height: 1.8;
  max-width: 720px;
}

.cybinix-footer .footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: var(--brand-shadow);
  transition: 0.3s ease;
}

.cybinix-footer .footer-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--brand-shadow-hover);
}

.cybinix-footer .footer-main {
  padding-bottom: 28px;
}

.cybinix-footer .footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.cybinix-footer .footer-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.cybinix-footer .footer-description {
  max-width: 420px;
  margin-bottom: 20px;
  line-height: 1.85;
  color: var(--footer-text-soft);
}

.cybinix-footer .footer-contact-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--footer-surface);
  border: 1px solid var(--footer-border);
  line-height: 1.9;
  color: var(--footer-text-soft);
}

.cybinix-footer .footer-contact-card strong {
  color: #fff;
}

.cybinix-footer .footer-contact-card a {
  color: #f2ccff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cybinix-footer .footer-contact-card a:hover {
  color: #fff;
  text-decoration: underline;
}

.cybinix-footer .footer-title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cybinix-footer .footer-links,
.cybinix-footer .footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cybinix-footer .footer-links li {
  margin-bottom: 0.82rem;
}

.cybinix-footer .footer-links a {
  color: var(--footer-text-soft);
  text-decoration: none;
  transition: 0.2s ease;
}

.cybinix-footer .footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.cybinix-footer .footer-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cybinix-footer .footer-info-list li:last-child {
  border-bottom: none;
}

.cybinix-footer .footer-info-list span {
  color: var(--footer-text-faint);
}

.cybinix-footer .footer-info-list strong {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.cybinix-footer .footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--footer-text-faint);
  font-size: 0.92rem;
}

.cybinix-footer .footer-bottom p {
  margin-bottom: 0;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px) {
  .hero { padding-top: 132px; }

  .mini-stats,
  .ui-grid { grid-template-columns: 1fr; }

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

  .cybinix-footer .footer-highlight-title {
    font-size: 1.4rem;
  }

  .cybinix-footer .footer-btn {
    width: 100%;
  }

  .cybinix-footer .footer-logo {
    max-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 78px 0; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .contact-card,
  .showcase-box,
  .highlight-box,
  .pricing-card,
  .card-modern,
  .testimonial,
  .legal-card,
  .content-card,
  .info-panel {
    padding: 24px;
  }

  .cybinix-footer .footer-highlight {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px) {
  .cybinix-footer {
    padding: 28px 0 20px;
  }

  .cybinix-footer .footer-contact-card {
    padding: 16px;
  }

  .cybinix-footer .footer-info-list li {
    flex-direction: column;
    gap: 4px;
  }

  .cybinix-footer .footer-info-list strong {
    text-align: left;
  }
}
