/* ===========================
   Local Font
   =========================== */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --green: #03BF68;
  --green-dark: #029a54;
  --green-light: #04d977;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --font-main: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--gray {
  background-color: var(--gray-100);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 191, 104, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.navbar__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo .logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.navbar.scrolled .navbar__logo {
  color: var(--black);
}

/* Logo swap on scroll */
.navbar__logo-light { display: block; }
.navbar__logo-dark  { display: none; }

.navbar.scrolled .navbar__logo-light { display: none; }
.navbar.scrolled .navbar__logo-dark  { display: block; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green);
  transition: width var(--transition);
}

.navbar__links a:hover {
  color: var(--white);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar.scrolled .navbar__links a {
  color: var(--gray-600);
}

.navbar.scrolled .navbar__links a:hover {
  color: var(--black);
}

.navbar__cta {
  background-color: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.navbar__cta:hover {
  background-color: var(--green-dark);
  color: var(--white) !important;
}

.navbar__cta::after {
  display: none !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .navbar__hamburger span {
  background-color: var(--black);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  visibility: hidden;
}

.navbar__mobile.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.navbar__mobile a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.navbar__mobile a:hover {
  color: var(--green);
}

.navbar__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1101;
  padding: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d2818 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(3, 191, 104, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 191, 104, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(3, 191, 104, 0.15);
  border: 1px solid rgba(3, 191, 104, 0.3);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .highlight {
  color: var(--green);
  position: relative;
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-number span {
  color: var(--green);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 420px;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__card-dots {
  display: flex;
  gap: 6px;
}

.hero__card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__card-dots span:nth-child(1) { background: #ff5f57; }
.hero__card-dots span:nth-child(2) { background: #febc2e; }
.hero__card-dots span:nth-child(3) { background: #28c840; }

.hero__card-title {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
}

.hero__code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
}

.hero__code .code-comment { color: rgba(255,255,255,0.3); }
.hero__code .code-keyword { color: #c792ea; }
.hero__code .code-string { color: #c3e88d; }
.hero__code .code-function { color: #82aaff; }
.hero__code .code-green { color: var(--green); }
.hero__code .code-white { color: rgba(255,255,255,0.85); }

.hero__floating-badge {
  position: absolute;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.hero__floating-badge--1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.hero__floating-badge--2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 1.5s;
  background: var(--white);
  color: var(--black);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===========================
   Services Section
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(3, 191, 104, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--green);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===========================
   Shopware Section
   =========================== */
.shopware {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d2818 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.shopware::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 191, 104, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.shopware__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.shopware .section-title {
  color: var(--white);
}

.shopware .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.shopware__features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shopware__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.shopware__feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(3, 191, 104, 0.15);
  border: 1px solid rgba(3, 191, 104, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.shopware__feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.shopware__feature-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Plugin Cards */
.shopware__plugins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.plugin-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.plugin-card:hover {
  background: rgba(3, 191, 104, 0.1);
  border-color: rgba(3, 191, 104, 0.3);
  transform: translateY(-4px);
}

.plugin-card__icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.plugin-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.plugin-card__text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===========================
   Process Section
   =========================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--green), rgba(3,191,104,0.2));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(3, 191, 104, 0.15);
}

.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===========================
   Tech Stack Section
   =========================== */
.tech__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: default;
}

.tech-badge:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.tech-badge__icon {
  font-size: 1.2rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}

.cta .section-title {
  color: var(--white);
}

.cta__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background-color: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand .logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--green);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--green);
}

/* ===========================
   Subpages
   =========================== */
.subpage-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d2818 100%);
  padding: 160px 0 80px;
  color: var(--white);
}

.subpage-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.subpage-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.subpage-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
}

.subpage-content {
  padding: 80px 0;
}

.subpage-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--black);
}

.subpage-content h2:first-child {
  margin-top: 0;
}

.subpage-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.subpage-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.subpage-content ul li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}

.subpage-content a {
  color: var(--green);
  text-decoration: underline;
}

.subpage-content a:hover {
  color: var(--green-dark);
}

.subpage-content .info-box {
  background: var(--gray-100);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.subpage-content .info-box p {
  margin-bottom: 0;
  color: var(--gray-800);
}

/* ===========================
   Scroll to Top
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
}

/* ===========================
   Animations
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps::before {
    display: none;
  }

  .shopware__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__mobile {
    display: flex;
    visibility: hidden;
  }

  .navbar__mobile.open {
    visibility: visible;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__description {
    margin: 0 auto 40px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 32px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .shopware__plugins {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
}

/* ===========================
   SEO Text Section
   =========================== */
.seo-text {
  background: var(--gray-100);
  padding: 96px 0;
  border-top: 1px solid var(--gray-200);
}

.seo-text__header {
  margin-bottom: 56px;
}

.seo-text__header .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
}

.seo-text__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.seo-text__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.seo-text__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.seo-text__card--wide {
  grid-column: 1 / -1;
}

.seo-text__card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.seo-text__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.seo-text__card p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0;
}

.seo-text__card a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.seo-text__card a:hover {
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .seo-text {
    padding: 64px 0;
  }

  .seo-text__grid {
    grid-template-columns: 1fr;
  }

  .seo-text__card--wide {
    grid-column: auto;
  }

  .seo-text__header {
    margin-bottom: 40px;
  }
}