/* Dark Modern Glassy Theme */
:root {
  --bg: #0a0e27;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-muted: #a0aec0;
  --primary: #6366f1;
  --primary-hover: #818cf8;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, .4), 0 1px 2px -1px rgba(0, 0, 0, .3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .4), 0 4px 6px -4px rgba(0, 0, 0, .3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .5), 0 8px 10px -6px rgba(0, 0, 0, .4);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

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

html,
body {
  background: var(--bg);
  background-image:
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1200px, 94%);
  margin-inline: auto;
}

.section {
  padding: 60px 0;
}

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

.section-header h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 18px;
  max-width: 700px;
  margin-inline: auto;
}

/* Professional Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Clean Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.topbar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

.topbar-left .phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease;
  color: var(--text-muted);
}

.topbar-left .phone:hover {
  color: var(--primary);
}

.topbar-right .login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
  transition: all .2s ease;
}

.topbar-right .login:hover {
  background: var(--surface-2);
}

/* Professional Navigation */
.nav-wrapper {
  background: rgba(255, 255, 255, 0.03);
}

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

.brand {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color .2s ease;
}

.brand:hover {
  color: var(--primary);
}

.primary-nav {
  display: flex;
}

.menu {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.menu-item {
  position: relative;
}

.menu-item>a,
.submenu-toggle {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--text);
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  gap: 6px;
}

.menu-item>a:hover,
.submenu-toggle:hover {
  background: var(--surface-2);
  color: var(--primary);
}

.submenu-toggle::after {
  content: '▼';
  font-size: 10px;
  transition: transform .2s ease;
}

.has-submenu:hover .submenu-toggle::after,
.has-submenu.open .submenu-toggle::after {
  transform: rotate(180deg);
}

.has-submenu .submenu {
  position: absolute;
  top: 52px;
  left: 0;
  min-width: 220px;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 8px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.has-submenu[aria-expanded="true"] .submenu,
.has-submenu.open .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu li {
  list-style: none;
  margin: 2px 0;
}

.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  line-height: 1.4;
}

.submenu a:hover {
  background: var(--surface-2);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 60px 0 40px;
  overflow: hidden;
  background: #0a0e27;
  background-image:
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.15) 0px, transparent 50%);
}

.hero-location {
  padding: 50px 0 30px;
  min-height: auto;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
  transition: opacity 0.3s ease;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 39, 0.6);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
}

.eyebrow {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  letter-spacing: .05em;
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.headline {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  margin: 0 0 24px;
  line-height: 1.6;
  max-width: 700px;
  margin-inline: auto;
}

.hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dynamic Headline */
.elementor-headline {
  display: inline-block;
  position: relative;
}

.elementor-headline-dynamic-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

.elementor-headline-dynamic-text {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  color: #fff;
  font-weight: 800;
  border-bottom: 3px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
}

.elementor-headline-dynamic-text.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* Professional Pricing Cards - Evoluso Style */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: visible;
  transition: all .3s ease;
  position: relative;
}

.plan {
  position: relative;
  padding: 32px;
  padding-bottom: 40px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.plan-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  z-index: 5;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.plan-price-top {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #10b981;
  z-index: 2;
  line-height: 1;
}


.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  line-height: 1.6;
}

.plan-features li svg.feature-ico {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li strong {
  font-weight: 600;
  color: var(--text);
}

.plan-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.plan-cta .btn {
  width: 100%;
}

.badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  border-radius: 20px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
  z-index: 15;
  border: 2px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

/* Server Specs - Evoluso Style */
.server-specs {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  border-radius: 8px;
}

.spec-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.spec-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 80px;
}

.spec-value {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  flex: 1;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-available {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stock-low {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.stock-order {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.stock-out {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Datacenters - Professional Style */
.dc-section {
  background: #0a0e27;
  background-image:
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.1) 0px, transparent 50%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
}

.dc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.dc-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.dc-section .section-header h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 8px;
}

.dc-section .section-header p {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  margin-bottom: 0;
}

.dc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.dc-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all .3s ease;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dc-card:hover {
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.dc-flag {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  border: 2px solid rgba(255, 255, 255, .3);
}

.flag-nl {
  background: linear-gradient(#ae2333 0 33%, #fff 33% 66%, #21468b 66%);
}

.flag-de {
  background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.flag-se {
  background: linear-gradient(#005eb8 0 33%, #ffcc02 33% 66%, #005eb8 66%);
}

.dc-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.dc-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.dc-card .btn {
  margin-top: 8px;
  white-space: nowrap;
  min-width: 180px;
  justify-content: center;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all .3s ease;
}

.feature:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  padding: 12px;
  background: rgba(37, 99, 235, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Reviews */
.reviews {
  background: var(--surface-2);
}

.reviews-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.slides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.slide {
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 32px;
  transition: all .3s ease;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.slide blockquote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.slide figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.slide .author {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.slide .role {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--border);
  cursor: pointer;
  transition: all .2s ease;
}

.slider-dots button[aria-current="true"] {
  background: var(--primary);
  width: 24px;
}

/* Payments - Banner Style */
.payments {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payments-row {
  min-height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.payments-row .pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all .2s ease;
}

.payments-row .pay:hover {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.compliance {
  color: var(--text-muted);
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}

.compliance p {
  margin: 4px 0;
}

/* Footer */
.site-footer {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0 32px;
}

.footer-col h3 {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-col .list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col .list li {
  margin-bottom: 12px;
}

.footer-col .list a {
  transition: color .2s ease;
  color: var(--text-muted);
}

.footer-col .list a:hover {
  color: var(--primary);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-row .btn {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-row .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 960px) {
  .headline {
    font-size: 36px;
  }

  .hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .nav-container {
    height: 64px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed !important;
    top: 104px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 104px) !important;
    background: var(--surface) !important;
    border-top: 1px solid var(--border);
    transform: translateX(100%) !important;
    transition: transform .3s ease !important;
    overflow-y: auto !important;
    z-index: 999 !important;
    display: block !important;
  }

  .primary-nav.open {
    transform: translateX(0) !important;
  }

  .menu {
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    width: 100%;
  }

  .menu-item {
    width: 100%;
  }

  .menu-item>a,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    height: 48px;
    font-size: 16px;
  }

  .has-submenu .submenu {
    position: static;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .headline {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .btn {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }
}