/* WebWorld.nl - Plain HTML/CSS Stylesheet */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  line-height: 1.6;
  background: #fff;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, #fff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg { background: linear-gradient(135deg, #DC2626, #F97316); }

.text-red { color: #DC2626; }
.text-orange { color: #F97316; }
.text-gray { color: #6B7280; }
.text-white { color: #fff; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-red {
  background: #DC2626;
  color: #fff;
}
.btn-red:hover { background: #B91C1C; }

.btn-outline {
  background: transparent;
  color: #DC2626;
  border: 1.5px solid #DC2626;
}
.btn-outline:hover {
  background: #DC2626;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #DC2626;
}
.btn-white:hover { background: #f3f4f6; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #DC2626;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #6B7280;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #fff;
  height: 72px;
}
.nav.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }

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

.logo-img { height: 28px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}
.nav-links a:hover { color: #DC2626; }

.nav-buttons { display: flex; gap: 12px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: #fff;
  z-index: 60;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); display: block; }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 55;
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.mobile-nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 24px;
  padding-top: 72px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 24px auto 0;
}

.hero-search {
  display: flex;
  max-width: 560px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-search input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.pill svg { width: 16px; height: 16px; }

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 32px 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; color: #9ca3af; }
.trust-item span { font-size: 14px; font-weight: 500; color: #374151; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Services ── */
.services { background: #F9FAFB; padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card svg {
  width: 48px; height: 48px;
  color: #DC2626;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card a {
  font-size: 14px;
  font-weight: 500;
  color: #DC2626;
}

/* ── Domain Pricing ── */
.domains { padding: 96px 0; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: #DC2626; color: #DC2626; }
.tab-btn.active { background: #DC2626; color: #fff; border-color: #DC2626; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transform: translateY(-2px); }

.pricing-card.featured {
  background: linear-gradient(135deg, #DC2626, #F97316);
  color: #fff;
  border: none;
  position: relative;
}

.pricing-card.featured .price { color: #fff; }
.pricing-card.featured .period { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-row { color: rgba(255,255,255,0.9); }

.pricing-card.featured .popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  color: #DC2626;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

.pricing-card h3 { font-size: 24px; font-weight: 700; }

.price-block { margin: 16px 0 24px; }
.price { font-size: 48px; font-weight: 700; color: #DC2626; }
.price.featured-price { color: #fff; font-size: 56px; }
.period { font-size: 14px; color: #6B7280; }

.pricing-rows { font-size: 14px; color: #6B7280; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.pricing-card .btn { width: 100%; margin-top: 16px; text-align: center; }

/* ── Hosting Plans ── */
.hosting { background: #F9FAFB; padding: 96px 0; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}
.plan-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transform: translateY(-2px); }

.plan-card.popular {
  background: linear-gradient(135deg, #DC2626, #F97316);
  color: #fff;
  border: none;
}
.plan-card.popular .plan-price { color: #fff; }
.plan-card.popular .plan-period { color: rgba(255,255,255,0.8); }
.plan-card.popular .plan-row { color: rgba(255,255,255,0.9); }
.plan-card.popular .plan-check { color: #fff; }

.plan-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  color: #DC2626;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.plan-price-block { margin: 16px 0; }
.plan-price { font-size: 40px; font-weight: 700; color: #DC2626; }
.plan-period { font-size: 14px; color: #6B7280; }

.plan-specs { font-size: 14px; color: #6B7280; margin-bottom: 16px; }
.plan-row { display: flex; justify-content: space-between; padding: 3px 0; }

.plan-features { font-size: 14px; color: #6B7280; margin-bottom: 16px; }
.plan-feature { display: flex; align-items: center; gap: 8px; padding: 3px 0; }
.plan-check { width: 16px; height: 16px; color: #DC2626; }

/* ── Features ── */
.features { padding: 96px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.features-grid svg { width: 32px; height: 32px; color: #DC2626; margin-bottom: 16px; }
.features-grid h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.features-grid p { font-size: 15px; color: #6B7280; line-height: 1.6; }

/* ── FAQ ── */
.faq { background: #F9FAFB; padding: 96px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #111827;
}

.faq-question svg {
  width: 20px; height: 20px;
  color: #6B7280;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-answer p { color: #6B7280; line-height: 1.6; }

/* ── Contact Hero ── */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

/* ── Contact Channels ── */
.channels { padding: 96px 0; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel-card {
  background: #F9FAFB;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}
.channel-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border-color: transparent; }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.channel-icon svg { width: 24px; height: 24px; color: #DC2626; }
.channel-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.channel-card p { font-size: 14px; color: #6B7280; margin-bottom: 8px; }
.channel-card a { font-size: 14px; color: #DC2626; font-weight: 500; }

/* ── Contact Form ── */
.contact-form-section { background: #F9FAFB; padding: 96px 0; }
.contact-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #DC2626; }

/* ── Locations ── */
.locations { padding: 96px 0; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.location-card {
  background: #F9FAFB;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.location-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.location-card.full-width { grid-column: span 2; }
.location-card.full-width .location-inner { grid-template-columns: 1fr 1fr; }

.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.location-img {
  height: 260px;
  overflow: hidden;
}
.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.location-card:hover .location-img img { transform: scale(1.05); }

.location-info { padding: 32px; }
.location-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.location-info .address { font-size: 14px; color: #6B7280; line-height: 1.7; margin-bottom: 16px; }
.location-info .phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}
.location-info .phone svg { width: 16px; height: 16px; color: #DC2626; }
.location-info .phone a { color: #374151; font-weight: 500; }
.location-info .phone a:hover { color: #DC2626; }
.location-info .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #DC2626;
  font-weight: 600;
}

/* ── Footer ── */
.footer { background: #F3F4F6; padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: #6B7280; line-height: 1.6; }
.footer-brand .company { font-weight: 600; color: #374151; }
.footer-brand .contact { margin-top: 12px; font-size: 14px; }
.footer-brand .contact a { color: #DC2626; }
.footer-brand .contact a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { color: #9ca3af; transition: color 0.2s; }
.footer-social a:hover { color: #DC2626; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: #6B7280;
  transition: color 0.2s;
}
.footer-col a:hover { color: #DC2626; }

.footer-newsletter { display: flex; gap: 8px; margin-top: 12px; }
.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}
.footer-newsletter input:focus { border-color: #DC2626; }

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 14px; color: #6B7280; }
.footer-bottom .vat { font-size: 12px; }
.payment-badges { display: flex; gap: 8px; }
.payment-badges span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card.full-width { grid-column: span 1; }
  .location-card.full-width .location-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .services-grid,
  .pricing-grid,
  .plan-grid,
  .features-grid,
  .channels-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-card.full-width { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-buttons { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
