:root {
  --bg: #f4f7fc;
  --white: #ffffff;
  --text: #122033;
  --muted: #5d6b82;
  --line: #dbe4f0;
  --primary: #2563eb;
  --primary-dark: #163c9b;
  --hero-1: #08142f;
  --hero-2: #0f255f;
  --hero-3: #102a66;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.20);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.9);
}

.header-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 700;
  color: #1a2740;
  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  white-space: nowrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.30);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-light:hover {
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.20), transparent 30%),
    linear-gradient(135deg, var(--hero-1), var(--hero-2), var(--hero-3));
  color: var(--white);
  padding: 96px 0 100px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -120px;
  height: 180px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #8ec5ff;
}

.section-tag.light {
  color: #dbeafe;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 700px;
  font-size: 19px;
  color: #d8e7ff;
}

.hero-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 18px;
  margin: 30px 0 34px;
}

.hero-list li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  font-weight: 600;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7dd3fc;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
  border-radius: 30px;
}

.glass-main {
  position: relative;
  width: min(100%, 500px);
  padding: 38px 34px;
  z-index: 2;
}

.glass-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #93c5fd;
}

.glass-main h3 {
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.glass-main p {
  color: #d8e7ff;
  font-size: 17px;
  max-width: 320px;
}

/* FLOATING BADGES */
.floating {
  position: absolute;
  min-width: 116px;
  height: 82px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
  z-index: 3;
  overflow: hidden;
}

.floating-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.floating-svg text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  fill: currentColor;
}

/* Alle rechts untereinander leicht versetzt */
.floating-jtl {
  right: -40px;
  top: 15%;
  width: 116px;
  background: #1f2937;
  color: #ffffff;
  transform: none;
}

.floating-shopify {
  right: -30px;
  top: 35%;
  width: 150px;
  background: #95bf47;
  color: #ffffff;
}

.floating-shopify .floating-svg text {
  font-size: 24px;
}

.floating-woo {
  right: -50px;
  top: 55%;
  width: 116px;
  background: #7f54b3;
  color: #ffffff;
}

.floating-ebay {
  right: -20px;
  top: 75%;
  width: 116px;
  background: #ffffff;
  color: #1f2937;
  transform: none;
}

.floating-ebay .floating-svg text {
  font-size: 24px;
}

/* SECTIONS */
.section {
  padding: 92px 0;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-intro {
  max-width: 860px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 38px;
}

/* SERVICES */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f1ff, #f3f8ff);
  font-size: 26px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.services-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

/* TRUST */
.trust {
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.trust-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.trust-item p {
  color: var(--muted);
}

.trust-item a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: 0.2s ease;
}

.trust-item a:hover {
  color: #163c9b;
  border-bottom: 1px solid #163c9b;
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #edf4ff, #f8fbff);
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.avatar-circle {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 0 8px rgba(37, 99, 235, 0.15);
  background: #dbeafe;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content p {
  font-size: 18px;
  color: #334155;
  margin-bottom: 16px;
}

.about-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 228, 240, 0.9);
  color: #243248;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #0d1d47, #163c9b);
  color: var(--white);
}

.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: #d8e7ff;
  font-size: 18px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-box,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-box {
  padding: 28px;
}

.contact-box p {
  font-size: 18px;
  margin-bottom: 12px;
  color: #243248;
}

.quick-contact {
  margin-top: 22px;
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #243248;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 1px solid #cfd9e6;
  border-radius: 14px;
  font-size: 16px;
  color: var(--text);
  background: #fbfdff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18);
}

.privacy-check {
  margin: 8px 0 20px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
}

.checkbox-wrap input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.checkbox-wrap a {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox-wrap a:hover {
  color: var(--primary-dark);
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #d4dceb;
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #d4dceb;
}

.footer-links a:hover {
  color: #ffffff;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.wa-float span {
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .cta-band-wrap,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .glass-main {
    width: min(100%, 460px);
  }
}

@media (max-width: 820px) {
  .header-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 80px 0 76px;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .glass-main {
    width: 100%;
    padding: 28px 24px;
  }

  .glass-main h3 {
    font-size: 30px;
  }

  .floating {
    min-width: 96px;
    height: 70px;
  }

  .floating-jtl {
    right: 0px;
    top: 2%;
    width: 96px;
  }

  .floating-shopify {
    right: 00;
    top: 19%;
    width: 126px;
  }

  .floating-woo {
    right: 14px;
    top: 37%;
    width: 96px;
  }

  .floating-ebay {
    right: 0;
    top: 55%;
    width: 96px;
  }

  .section {
    padding: 74px 0;
  }

  .avatar-circle {
    width: 220px;
    height: 220px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }

  .wa-float span {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-text,
  .section-intro,
  .about-content p,
  .cta-band p,
  .contact-box p {
    font-size: 17px;
  }

  .glass-main h3 {
    font-size: 26px;
  }

  .glass-main p {
    max-width: 100%;
    font-size: 16px;
  }
}