:root {
  --bg-main: #0f172a;
  --bg-dark: #020617;
  --bg-card: rgba(30, 41, 59, 0.82);
  --border: rgba(148, 163, 184, 0.16);
  --text-main: #f8fafc;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --brand: #2563eb;
  --brand-2: #22d3ee;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
   radial-gradient(circle at 20% 20%, rgba(37,99,235,0.25), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(34,211,238,0.18), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(255,201,14,0.07), transparent 20%),
    linear-gradient(180deg,#020617,#0f172a);
  color: var(--text-main);
  min-height: 100vh;
}
.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-pad {
  padding: 5rem 0;
}


.site-navbar {
  background: rgba(2, 6, 23, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand-mark {
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark:hover,
.brand-mark:focus {
  color: var(--text-main);
}

.navbar .nav-link {
  color: var(--text-soft);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--brand-2);
}

.nav-cta {
  color: var(--brand-2) !important;
}

.custom-toggler {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(34, 211, 238, 0.12), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(255, 201, 14, 0.06), transparent 18%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: 85%;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.eyebrow,
.feature-kicker {
  color: var(--brand-2);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-subtitle,
.section-subtitle,
.about-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
}

.hero-subtitle {
  max-width: 760px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.btn-primary {

  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #020617;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.btn-outline-info {
  color: var(--brand-2);
  border-color: rgba(34, 211, 238, 0.6);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
  color: #001018;
  background-color: var(--brand-2);
  border-color: var(--brand-2);
}

.solution-card,
.product-panel,
.contact-card,
.mockup-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.solution-card {
  padding: 2rem 1.5rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(34, 211, 238, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.solution-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  line-height: 1.7;
}

.icon-badge {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(34, 211, 238, 0.18));
  margin-bottom: 1rem;
}

.product-panel {
  padding: 2rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  color: var(--text-soft);
  margin-bottom: 0.9rem;
  padding-left: 1.7rem;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-2);
  font-weight: 800;
}

.mockup-card {
  padding: 1rem;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.04);
}

.mockup-topbar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.mockup-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mockup-body {
  display: flex;
  gap: 1rem;
  min-height: 250px;
}

.mockup-sidebar {
  width: 24%;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mockup-main {
  flex: 1;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mockup-line,
.mockup-box {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.45), rgba(34, 211, 238, 0.25));
  border-radius: 0.75rem;
}

.mockup-line {
  height: 0.85rem;
  margin-bottom: 0.9rem;
}

.mockup-box {
  height: 3.4rem;
  margin-bottom: 0.9rem;
}

.mockup-box.short {
  width: 65%;
}

.about-photo-placeholder {
  min-height: 260px;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  box-shadow: var(--shadow);
}


.about-photo img{
width:100%;
max-width:260px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
border:1px solid rgba(255,255,255,0.15);
}
.about-photo{
text-align:center;
}

.contact-card {
  padding: 2rem;
}

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

.form-control {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--text-main);
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  background: rgba(15, 23, 42, 0.09);
  color: var(--text-main);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.14);
}

.form-message {
  color: var(--brand-2);
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.75);
}

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border);
    border-radius: 1rem;
  }

  .hero-section {
    padding: 5rem 0 4rem;
  }
}

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

  .hero-title {
    line-height: 1.15;
  }

  .contact-card,
  .product-panel,
  .solution-card {
    padding: 1.5rem;
  }

  .mockup-body {
    min-height: 210px;
  }
}

body::before {
  content:"";
  position:fixed;
  top:10%;
  left:10%;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(37,99,235,0.3), transparent);
  filter:blur(120px);
  z-index:-1;
}

body::after {
  content:"";
  position:fixed;
  bottom:10%;
  right:10%;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(34,211,238,0.25), transparent);
  filter:blur(120px);
  z-index:-1;
}