/* Global */
body.dark-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050910;
  color: #f5f7fb;
}
a { color: #4ea3ff; }

/* Layout helpers */
* { box-sizing: border-box; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(3,10,26,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 60px; display: block; }

.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #e0e4f5;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4ea3ff;
  transition: 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #f5f7fb;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: url('../assets/A_digital_photograph_for_IT_&_Accounting_Solutions.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3,10,26,0.75), rgba(3,10,26,0.95));
}
.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  z-index: 1;
}
.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.65);
}
.hero p {
  font-size: 18px;
  color: #dde3ff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: #4ea3ff;
  color: #050910;
  border-color: #4ea3ff;
}
.btn-outline {
  background: transparent;
  color: #f5f7fb;
  border-color: #f5f7fb;
}

/* Sections */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section h2 {
  margin: 0 0 16px;
}
.section p {
  color: #c1c9f0;
  line-height: 1.6;
}

/* Cards */
.section-cards {
  background: radial-gradient(circle at top, #071126, #050910);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: #07111f;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #151d33;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Sub hero */
.sub-hero {
  padding: 100px 24px 40px;
  text-align: center;
  background: linear-gradient(135deg, #050910, #071126);
  margin-top: 64px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #151d33;
  background: #050910;
  color: #f5f7fb;
}

/* Footer */
.site-footer {
  border-top: 1px solid #151d33;
  padding: 24px;
  text-align: center;
  background: #030815;
}
.footer-inner p {
  margin: 4px 0;
  color: #a3acd8;
  font-size: 13px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.6s;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie banner (horizontal) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3,10,26,0.98);
  color: #f5f7fb;
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2000;
  border-top: 1px solid #151d33;
  font-size: 13px;
}
.cookie-text {
  max-width: 700px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  align-items: center;
}
.btn-cookie {
  padding: 6px 16px;
  font-size: 13px;
}
.cookie-link {
  color: #4ea3ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    padding: 12px 24px 16px;
    background: rgba(3,10,26,0.98);
    flex-direction: column;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding-top: 140px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cookie-banner {
    flex-direction: column;
  }
}
