
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #eef3ff 0, #f7f8fc 40%, #ffffff 100%);
  color: #111827;
  line-height: 1.6;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1f4fa8, #2563eb);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

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

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

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

nav .logo img {
  height: 90px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
}

nav a {
  color: #e5edff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.18s ease-out;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  margin-bottom: 18px;
  color: #0f172a;
}

.hero p {
  font-size: 1.02rem;
  margin-bottom: 18px;
  color: #4b5563;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 235, 0.20);
}

.badge::before {
  content: "●";
  font-size: 0.6rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: #1d4ed8;
  border: 1px solid #d0ddff;
  margin-left: 10px;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15,23,42,0.18);
}

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,0.86);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
  border: 1px solid rgba(209, 213, 219, 0.8);
  backdrop-filter: blur(14px);
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #111827;
}

.hero-card ul {
  list-style: none;
  font-size: 0.95rem;
  color: #4b5563;
}

.hero-card li {
  margin-bottom: 6px;
}

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

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: #0f172a;
}

.section p {
  margin-bottom: 12px;
  color: #4b5563;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.12);
  border: 1px solid rgba(209,213,219,0.8);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.18);
  border-color: rgba(37, 99, 235, 0.35);
}

.card h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.94rem;
  color: #4b5563;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111827;
}

.badge-small {
  display: inline-block;
  font-size: 0.78rem;
  background: rgba(37,99,235,0.07);
  color: #1d4ed8;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.list {
  list-style: none;
  font-size: 0.93rem;
  color: #4b5563;
}

.list li {
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 900;
}

/* FORMS */
form {
  background: rgba(255,255,255,0.95);
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.14);
  border: 1px solid rgba(209,213,219,0.8);
}

form .field {
  margin-bottom: 14px;
}

form label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #111827;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.94rem;
  background: #f9fafb;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOOTER */
footer {
  padding: 18px 0 22px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
  font-size: 0.88rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
}

.footer-grid a {
  color: #2563eb;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

/* COOKIE BANNER (responsive) */
#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 480px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  font-size: 0.85rem;
  gap: 10px;
}

#cookie-banner span {
  color: #111827;
}

#cookie-banner button {
  background: #2563eb;
  color: white;
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 880px) {
  .hero {
    padding: 40px 0 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 4px;
  }

  .container {
    width: 92%;
  }

  .card {
    padding: 18px 16px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .hero .btn-primary {
    margin-bottom: 10px;
  }
  .hero .btn-secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-banner button {
    align-self: flex-end;
  }
}
