* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #081120;
  --bg-dark-2: #0d1a2d;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --text-light: #f8fafc;
  --text-soft: #cbd5e1;
  --text-dark: #0f172a;
  --card-bg: rgba(255, 255, 255, 0.06);
  --border-soft: rgba(255, 255, 255, 0.12);
  --section-bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 18px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--white);
  padding: 90px 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-description {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(80px);
  border-radius: 50%;
  top: 20px;
  right: 60px;
}

.software-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #bfdbfe;
  font-size: 0.85rem;
  font-weight: 700;
}

.software-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.software-card p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.software-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.software-card ul li {
  color: var(--white);
  padding-left: 18px;
  position: relative;
}

.software-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

/* SECTIONS */
.section-heading {
  margin-bottom: 50px;
}

.section-heading.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-heading p {
  max-width: 760px;
  color: #475569;
  font-size: 1.02rem;
}

/* ABOUT */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-box {
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s ease;
}

.about-box:hover {
  transform: translateY(-4px);
}

.about-box h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.about-box p {
  color: #475569;
}

/* FEATURES */
.features {
  padding: 90px 0;
  background: var(--section-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.feature-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #475569;
}

/* PROCESS */
.process {
  padding: 90px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-step {
  background: #0f172a;
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
}

.process-step span {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 14px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: #cbd5e1;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta p {
  color: #cbd5e1;
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
.site-footer {
  background: #050b16;
  color: var(--white);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
  color: #94a3b8;
  font-size: 0.96rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 0;
  color: #94a3b8;
  font-size: 0.92rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container,
  .about-grid,
  .features-grid,
  .process-grid,
  .footer-container,
  .cta-container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-container {
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .software-card,
  .about-box,
  .feature-card,
  .process-step {
    padding: 24px;
  }
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.hero-highlights span {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}
/* PRODUCTS PAGE */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--white);
  padding: 90px 0 70px;
}

.page-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-text {
  max-width: 850px;
}

.page-hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto;
}

.products-intro {
  padding: 90px 0 30px;
  background: var(--white);
}

.products-listing {
  padding: 20px 0 90px;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.featured-product {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid #cfe0ff;
}

.product-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.product-badge-light {
  background: #e2e8f0;
  color: #0f172a;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-subtitle {
  color: #475569;
  margin-bottom: 18px;
  font-size: 1rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-features span {
  background: rgba(59, 130, 246, 0.08);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.product-description {
  color: #475569;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-product-secondary {
  background: transparent;
  border: 2px solid #dbe4f0;
  color: var(--text-dark);
}

.btn-product-secondary:hover {
  background: #eef4fb;
}

.product-benefits {
  padding: 90px 0;
  background: var(--section-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-box {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.benefit-box h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.benefit-box p {
  color: #475569;
}

.roadmap-section {
  padding: 90px 0;
  background: var(--white);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.roadmap-step {
  background: #0f172a;
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
}

.roadmap-step span {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 14px;
}

.roadmap-step h3 {
  margin-bottom: 12px;
}

.roadmap-step p {
  color: #cbd5e1;
}

@media (max-width: 992px) {
  .products-grid,
  .benefits-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 70px 0 55px;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .product-card,
  .benefit-box,
  .roadmap-step {
    padding: 24px;
  }

  .product-actions {
    flex-direction: column;
  }
}

/* =========================
   PRODUCTS PAGE IMPROVEMENTS
   ========================= */

/* Make cards feel clickable */
.product-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Better hover effect */
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* Highlight featured product */
.featured-product {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

/* Align buttons properly at bottom */
.product-actions {
  margin-top: auto;
}

/* Better grid alignment */
.products-grid,
.benefits-grid,
.roadmap-grid {
  align-items: stretch;
}

/* Equal height cards */
.product-card,
.benefit-box,
.roadmap-step {
  height: 100%;
}

/* Slight background separation for products section */
.products-listing {
  background: #f9fbff;
}

/* Center text properly in centered sections */
.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* Smooth button feel */
.btn {
  transition: all 0.25s ease;
}

/* Improve secondary product button */
.btn-product-secondary {
  background: transparent;
  border: 2px solid #dbe4f0;
  color: var(--text-dark);
}

.btn-product-secondary:hover {
  background: #eef4fb;
  border-color: #cbd5e1;
}

/* CONTACT PAGE */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 35px;
}

.contact-info-card h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info-card p {
  color: #475569;
  margin-bottom: 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-info-item p {
  margin: 0;
  color: #475569;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.submit-btn {
  align-self: flex-start;
}

.form-message {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-message.success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-info-card h2 {
    font-size: 1.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
  }
}
