/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f4f9;
  color: #0f172a;
}

/* Navbar Container */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-inner nav {
  display: flex;
  justify-content: flex-start;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.nav-links > li {
  position: relative; /* Necessary for absolute positioning of dropdown */
}

.nav-links a {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* (Dropdown styles removed; Mobile Apps now behaves like a normal link) */

/* Hero Content Styling */
.content {
  text-align: center;
  padding: 50px;
  color: #333;
}

/* Page layout (home.html) */
.page {
  padding-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #ffffff;
}

.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 60%, #ffffff 100%);
}

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

.hero-copy .kicker {
  color: #334155;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.hero-copy .headline {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-copy {
  max-width: 52ch;
}

.hero-media img,
.media-card img {
  width: 56.25%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: #2c3e50;
  color: #ffffff;
}

.btn-primary:hover {
  background: #34495e;
}

.btn-secondary {
  background: #ffffff;
  color: #2c3e50;
  border-color: rgba(44, 62, 80, 0.25);
}

.btn-secondary:hover {
  border-color: rgba(44, 62, 80, 0.4);
  background: #f8fafc;
}

.btn-link {
  background: transparent;
  color: #2c3e50;
  border-color: transparent;
  padding-left: 6px;
  padding-right: 6px;
}

.btn-link:hover {
  background: rgba(44, 62, 80, 0.08);
}

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

.copy h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.copy h3 {
  font-size: 18px;
  color: #334155;
  margin-bottom: 12px;
}

.copy p {
  color: #334155;
  line-height: 1.6;
}

.feature-list {
  margin-top: 14px;
  padding-left: 18px;
  color: #0f172a;
  line-height: 1.7;
}

.feature-list strong {
  color: #0f172a;
}

.muted {
  color: #475569;
  margin-top: 8px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.solution-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-card ul {
  padding-left: 18px;
  line-height: 1.7;
  color: #334155;
}

.tagline {
  margin-top: 20px;
  font-weight: 800;
  color: #0f172a;
}

.cta {
  background: #0f172a;
  color: #ffffff;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.cta .btn-primary {
  background: #ffffff;
  color: #0f172a;
}

.cta .btn-primary:hover {
  background: #e2e8f0;
}

.cta .btn-link {
  color: #ffffff;
}

.cta .btn-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.app-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.app-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.app-card h2 {
  margin-bottom: 10px;
}

.app-card p {
  color: #334155;
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.contact-card p {
  color: #334155;
  line-height: 1.6;
}

.contact-strong {
  margin-top: 10px;
  font-weight: 800;
}

.contact-link {
  color: #0f172a;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

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

  .hero-copy .headline {
    font-size: 32px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .app-list {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logo {
    width: 170px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}