* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  min-height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78)),
    url("assets/img/solutions_background_grid.webp");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 234, 255, 0.25);
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #00eaff;
}

.logo span {
  color: #00eaff;
}
nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

nav a:hover {
  color: #889ef3;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.7);
}


.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
}

.badge {
  display: inline-block;
  padding: 8px 11px;
  margin-bottom: 5px;
  border: 1px solid #00eaff;
  border-radius: 999px;
  color: #00eaff;
  box-shadow: 0 0 16px rgba(0, 234, 255, 0.4);
}

h1 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 24px;
}

h1 span,
h2 {
  color: #fff;
  text-shadow:
    0 0 8px #00eaff,
    0 0 18px #00eaff,
    0 0 32px #7b2cff;
}

.subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  color: #d8d8e8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 17px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background: #00eaff;
  color: #000;
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.7);
  font-size: 1.2rem;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 234, 255, 1);
}

.btn.secondary {
  border: 1px solid #ba55ff;
  color: white;
  box-shadow: 0 0 18px rgba(186, 85, 255, 0.4);
  font-size: 1.2rem;
}

.btn.secondary:hover {
  background: rgba(186, 85, 255, 0.18);
}

.btn.big {
  margin-top: 25px;
  font-size: 1.2rem;
}

.video-box {
  border: 1px solid rgba(0, 234, 255, 0.45);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 0 35px rgba(0, 234, 255, 0.25);
}

.video-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.video-card {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 25px rgba(0, 207, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.intro-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  background: #000;
}

.section {
  padding: 90px 8%;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 38px;
  color: #d8d8e8;
  font-size: 5.5rem;
}

.price-card {
  max-width: 720px;
  margin: auto;
  padding: 36px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 234, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.12);
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.price-card li {
  margin-bottom: 12px;
  color: #f0f0ff;
}

.price-card li::before {
  content: "✓ ";
  color: #00eaff;
  font-weight: bold;
}

.not-included {
  margin-top: 24px;
  font-size: 1rem;
  color: #b9b9c9;
}

.dark-section {
  background: rgba(0, 0, 0, 0.25);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.addon-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(186, 85, 255, 0.3);
  box-shadow: 0 0 22px rgba(186, 85, 255, 0.12);
}

.addon-card span {
  display: block;
  margin-top: 10px;
  color: #00eaff;
  font-weight: bold;
}

#addons {
  width: 100%;
  display: block;
  clear: both;
  margin-top: 80px;
  grid-column: 1 / -1;
  flex-basis: 100%;
}

.contact-section p {
  color: #d8d8e8;
  margin-bottom: 24px;
}

#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #00eaff;
  color: #000;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.8);
}

footer {
  text-align: center;
  padding: 28px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fade-in {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  nav a {
    margin: 0 8px;
  }
}

@media (max-width: 560px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 26px 20px;
  }
}
.thank-you-page {
  min-height: 85vh;
  padding: 90px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-card {
  width: 100%;
  max-width: 850px;
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 234, 255, 0.35);
  box-shadow: 0 0 45px rgba(0, 234, 255, 0.18);
}

.thank-you-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

.next-steps,
.download-box,
.upsell-box {
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(186, 85, 255, 0.25);
}

.next-steps h2,
.download-box h2,
.upsell-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.next-steps ul {
  list-style: none;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}

.next-steps li {
  margin-bottom: 12px;
  color: #f0f0ff;
}

.next-steps li::before {
  content: "✓ ";
  color: #00eaff;
  font-weight: bold;
}

.download-box p,
.upsell-box p,
.contact-note p {
  color: #d8d8e8;
  margin-bottom: 22px;
}

.contact-note {
  margin-top: 30px;
}

.contact-note a {
  color: #00eaff;
}
.hosting-section {
  text-align: center;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 50px auto 0;
  align-items: stretch;
}

.hosting-card {
  min-height: 480px;
  padding: 32px 28px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 207, 255, 0.35);
  box-sizing: border-box;
}

.hosting-card h3 {
  min-height: 66px;
}

.hosting-card ul {
  text-align: left;
  margin-top: 22px;
  line-height: 2;
}
.hosting-card strong {
  color: #ffffff;
  text-shadow:
    0 0 5px rgba(255,255,255,0.8),
    0 0 10px rgba(255,255,255,0.5),
    0 0 18px rgba(180,220,255,0.35);
  font-weight: 600;
  display: block;
  margin: 20px 0;
}

.contact-section {
  max-width: 900px;
  margin: 55px auto 0;
  padding: 38px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(185, 80, 255, 0.55);
  background: rgba(255, 255, 255, 0.035);
}


.contact-section h2 {
  margin-bottom: 14px;
}

.hosting-note {
  max-width: 900px;
  margin: 28px auto 0;
  font-size: 1.1rem;
  opacity: 0.75;
  text-align: center;
}

@media (max-width: 900px) {
  .hosting-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hosting-card {
    min-height: auto;
  }
}
footer a {
  color: #888888;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #555555;
}

.logo-img {
  width: 70px;
  height: auto;
  filter:
    drop-shadow(0 0 6px rgba(0, 255, 255, 0.7))
    drop-shadow(0 0 12px rgba(0, 200, 255, 0.6))
    drop-shadow(0 0 20px rgba(0, 150, 255, 0.5));
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter:
    drop-shadow(0 0 10px rgba(0, 255, 255, 1))
    drop-shadow(0 0 20px rgba(0, 200, 255, 0.9))
    drop-shadow(0 0 30px rgba(0, 150, 255, 0.8));
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ✨ BUSINESS NAME (glowing blue like €99) */
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00cfff;

  text-shadow:
    0 0 6px rgba(0, 207, 255, 0.7),
    0 0 12px rgba(0, 207, 255, 0.6),
    0 0 20px rgba(0, 207, 255, 0.5);
}

/* ✍️ HANDWRITTEN SLOGAN (playful, clean white) */
.brand-tagline {
  font-family: 'Pacifico', cursive;
  font-size: 13px;
  color: #ffffff;
  margin-top: 2px;
}
.floating-logo {
  position: fixed;
  right: 7%;
  bottom: 16%;
  width: 317px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: logoFloat 8s ease-in-out infinite;
}

.floating-logo img {
  width: 100%;
  filter:
    drop-shadow(0 0 15px rgba(0, 255, 255, 0.7))
    drop-shadow(0 0 35px rgba(0, 180, 255, 0.45));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-18px) rotate(8deg) scale(1.05);
  }
}

@media (max-width: 900px) {
  .floating-logo {
    display: none;
  }
}
/* =========================================
   FINAL LAYOUT FIXES
========================================= */

#offer,
#addons,
#hosting {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.price-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px;
}

.addon-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hosting-grid {
  max-width: 1250px;
  margin: 50px auto 0;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
}

.hosting-card {
  min-height: 520px;
}

.contact-section {
  max-width: 900px;
  margin: 70px auto 0;
}

@media (max-width: 900px) {
  .hosting-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
}
/* Bigger centered sections under hero */

#offer,
#addons,
#hosting {
  padding-top: 110px;
  padding-bottom: 110px;
}

#offer h2,
#addons h2,
#hosting h2,
#contact h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.section-intro {
  font-size: 1.25rem;
  max-width: 900px;
}

.price-card {
  max-width: 950px;
  padding: 60px;
  font-size: 1.2rem;
}

.price-card h3 {
  font-size: 2.4rem;
}

.price-card li {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.addon-card {
  font-size: 1.3rem;
  padding: 34px;
}

.addon-card span {
  font-size: 1.1rem;
}

.hosting-card {
  font-size: 1.25rem;
  padding: 42px 34px;
}

.hosting-card h3 {
  font-size: 2rem;
}

.hosting-price {
  font-size: 1.9rem;
}

.contact-section {
  max-width: 1050px;
  padding: 55px 40px;
}

.contact-section p {
  font-size: 1.35rem;
}
/* Handwritten logo slogan animation */

.brand-tagline {
  font-size: 18px;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  animation:
    handwritingType 3s steps(31, end) 0.6s both,
    hideCursor 0.1s linear 3.8s forwards;
}

@keyframes handwritingType {
  from {
    width: 0;
  }

  to {
    width: 31ch;
  }
}

@keyframes hideCursor {
  to {
    border-right-color: transparent;
  }
}

@keyframes handwritingCursor {
  0%, 100% {
    border-color: transparent;
  }

  50% {
    border-color: rgba(255, 255, 255, 0.8);
  }
}
.video-section,
.video-card,
.intro-video {
  position: relative;
  z-index: 3;
}

.floating-logo {
  z-index: 1;
}
.visitor-counter {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

#visitor-count {
  opacity: 0;
  transition: opacity 0.6s ease;
  font-weight: 600;
  color: #00eaff;
}
.legal-logo-link {
  display: inline-flex;
  align-items: center;
  margin: 32px 0 0 42px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(0, 234, 255, 0.08);
  border: 1px solid rgba(0, 234, 255, 0.25);
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.18);
  transition: 0.3s ease;
}

.legal-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 234, 255, 0.35);
}

.legal-logo-link .logo-img {
  width: 62px;
  height: auto;
}

@media (max-width: 600px) {
  .legal-logo-link {
    margin: 22px 0 0 22px;
  }

  .legal-logo-link .logo-img {
    width: 52px;
  }
}
