:root {
  --bg-dark: #0b0f14;
  --bg-panel: #141a22;
  --bg-panel-light: #1a222d;
  --text-light: #e6e9ef;
  --text-muted: #b8c2cc;
  --accent-1: #4bb7d8;
  --accent-2: #6cd4f0;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 4px 14px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 18px rgba(108,212,240,0.4);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.section-desc {
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 30px;
}

a.btn,
button.btn {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #0b0f14;
  border-radius: var(--radius);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(75, 183, 216, 0.4);
  transition: 0.3s ease;
}
a.btn:hover,
button.btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, var(--accent-2), #9be9ff);
  box-shadow: var(--shadow-accent);
}

section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(20, 25, 32, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  flex-wrap: nowrap;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #dce3ea;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent-1);
  transition: 0.3s ease;
  border-radius: 4px;
}
nav a:hover {
  color: var(--accent-2);
}
nav a:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg {
  width: 40px;
  height: 40px;
  animation: glow 4s ease-in-out infinite;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
}

.hamburger {
  display: none;
}

@media (max-width: 650px) {
  nav {
    padding: 14px 20px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 4px;
    transition: 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(20, 25, 32, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    transform: translateY(-200%);
    transition: 0.4s ease;
  }
  .nav-links.active {
    transform: translateY(0);
  }
}
@media (max-width: 650px) and (max-width: 300px) {
  .logo-text {
    display: none;
  }
}
section#hero {
  text-align: center;
  padding: 140px 20px;
}
section#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
section#hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: var(--text-muted);
}
section#hero a {
  display: inline-block;
}

@media (max-width: 650px) {
  heasection#hero {
    padding: 100px 20px;
  }
  heasection#hero h1 {
    font-size: 2.2rem;
  }
  heasection#hero p {
    font-size: 1.05rem;
  }
}
section#functies .grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
section#functies .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
section#functies .card:hover {
  transform: perspective(900px) rotateX(6deg) rotateY(6deg) translateY(-4px);
  box-shadow: 0 12px 32px rgba(75, 183, 216, 0.18);
}
section#functies .card:hover .card-icon {
  background: linear-gradient(135deg, rgba(75, 183, 216, 0.45), rgba(108, 212, 240, 0.25));
}
section#functies .card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(75, 183, 216, 0.25), rgba(108, 212, 240, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconGlow 4s ease-in-out infinite;
}
section#functies .card-icon svg {
  width: 28px;
  height: 28px;
}
section#functies .card-content h3 {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
}
section#functies .card-content p {
  margin: 0;
  color: var(--text-muted);
}
section#functies .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
section#functies .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 650px) {
  .card {
    padding: 22px;
    gap: 14px;
    transform: none !important;
  }
  .card-icon {
    width: 44px;
    height: 44px;
  }
}
.pricing {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: var(--bg-panel);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  background: var(--bg-panel-light);
  box-shadow: var(--shadow-accent);
}
.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--accent-1);
}
.price-card.featured:hover {
  transform: scale(1.07) translateY(-6px);
}

.price {
  font-size: 2rem;
  color: var(--accent-1);
}

@media (max-width: 650px) {
  .price-card {
    padding: 24px;
  }
}
form {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

input,
textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #2a323d;
  background: #0f141a;
  color: var(--text-light);
  font-size: 1rem;
}

textarea {
  height: 140px;
}

footer {
  text-align: center;
  padding: 40px;
  color: #8a96a3;
  font-size: 0.9rem;
  background: #0f141a;
  margin-top: 80px;
}

.blob,
.blob2,
.blob3 {
  position: fixed;
  width: 500px;
  height: 500px;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.8s ease-out;
}

.blob {
  background: radial-gradient(circle, rgba(75, 183, 216, 0.35), transparent);
}

.blob2 {
  background: radial-gradient(circle, rgba(13, 27, 42, 0.45), transparent);
}

.blob3 {
  background: radial-gradient(circle, rgba(120, 180, 255, 0.35), transparent);
}

@media (max-width: 650px) {
  .blob,
  .blob2,
  .blob3 {
    width: 260px;
    height: 260px;
    filter: blur(70px);
  }
}
@keyframes iconGlow {
  0% {
    box-shadow: 0 0 6px rgba(75, 183, 216, 0.25);
  }
  50% {
    box-shadow: 0 0 14px rgba(108, 212, 240, 0.45);
  }
  100% {
    box-shadow: 0 0 6px rgba(75, 183, 216, 0.25);
  }
}
@keyframes orbGlow {
  0% {
    filter: drop-shadow(0 0 3px var(--accent-1));
    opacity: 0.95;
  }
  50% {
    filter: drop-shadow(0 0 8px var(--accent-2));
    opacity: 1;
  }
  100% {
    filter: drop-shadow(0 0 3px var(--accent-1));
    opacity: 0.95;
  }
}/*# sourceMappingURL=main.css.map */