:root {
  --dark: #0B2C3A;
  --teal: #1F6F82;
  --light: #3FB0B7;
  --bg: #FAF6F0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  position: relative;
}

/* Techy grid background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(31, 111, 130, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 130, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Animated circuit lines */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(63, 176, 183, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(31, 111, 130, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: var(--dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
}

/*.logo-wrap img {*/
/*  height: 56px;*/
 
/*}*/

.logo-wrap img {
  height: 56px;
  object-fit: contain;  /* Add this line */
  object-position: center; /* Add this line */
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--light);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--teal);
  padding: 10px 0;
}

.mobile-nav a {
  color: white;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.mobile-nav.active {
  display: flex;
}

/* HERO */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero tech accent */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 176, 183, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 111, 130, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  margin-top: 16px;
  line-height: 1.2;
}

.hero p {
  max-width: 600px;
  margin: 12px auto 24px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.badge {
  background: var(--teal);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.dark {
  background: var(--dark);
  color: white;
}

.dark a {
  color: var(--light);
}

/* TECH GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.tech-grid span {
  background: white;
  padding: 22px;
  border-radius: 10px;
  color: var(--dark);
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-grid span:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(31,111,130,0.2);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  color: var(--dark);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(31,111,130,0.15);
}

.card.featured {
  border: 3px solid var(--teal);
  box-shadow: 0 8px 24px rgba(31,111,130,0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--teal);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  color: var(--teal);
  font-weight: bold;
  margin: 16px 0;
}

ul {
  list-style: none;
  margin-top: 20px;
}

li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

/* BUTTONS */
.btn {
  background: var(--teal);
  color: white;
  padding: 14px 28px;
  display: inline-block;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(31,111,130,0.35);
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31,111,130,0.45);
}

.ghost {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.dark .ghost {
  border-color: var(--light);
  color: var(--light);
}

.dark .ghost:hover {
  background: var(--light);
  color: var(--dark);
}

.center {
  text-align: center;
}

.contact-buttons {
  margin: 20px 0;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 0.95rem;
}

/* ANIMATIONS */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section h2 {
    font-size: 1.6rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}