/* ============================================
   SERVICOMM SOLUTION — Main Stylesheet
   Design: TechCorp Precision (v2)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #0B1F3B;
  --color-secondary: #163E72;
  --color-accent: #16C6F3;
  --color-accent-hover: #12B0D9;
  --color-bg-light: #F4F6F8;
  --color-bg-white: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #6B7280;
  --color-text-on-dark: #E2E8F0;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-error: #EF4444;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.25rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --spacing-5xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1), 0 32px 64px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 24px rgba(22, 198, 243, 0.2), 0 0 48px rgba(22, 198, 243, 0.08);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --header-height: 72px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

/* --- Focus Styles (WCAG 2.4.7) --- */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --- Skip to Content (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--spacing-md);
  z-index: 10001;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

button {
  cursor: pointer;
}

/* --- Screen Reader Only (a11y utility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--spacing-md);
}

h4 {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

p:last-child {
  margin-bottom: 0;
}

.text-light {
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-accent);
}

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

.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--spacing-sm);
}

.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 1px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-4xl) 0;
}

.section--dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-bg-white);
}

.section--dark p {
  color: var(--color-text-on-dark);
}

.section--light {
  background-color: var(--color-bg-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: 2px;
}

.section--dark .section-header h2::after {
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0.4));
}

.section-header p {
  margin-top: var(--spacing-md);
}

.grid {
  display: grid;
  gap: var(--spacing-xl);
}

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

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(11, 31, 59, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(22, 198, 243, 0.15), var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  text-decoration: none;
}

.logo-mark {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-bg-white);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--spacing-lg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1001;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-bg-white);
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

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

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0ea5d6 100%);
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, #0c96c4 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-bg-white);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  position: relative;
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-accent);
  padding: 0.75rem 0;
}

.btn-ghost:hover {
  color: var(--color-accent-hover);
}

.btn-ghost::after {
  content: ' →';
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-base);
}

.btn-dark {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-dark:hover {
  background-color: var(--color-secondary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 31, 59, 0.88) 0%, rgba(22, 62, 114, 0.85) 80%);
  background-color: var(--color-primary);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(22, 198, 243, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(22, 198, 243, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero--subpage {
  min-height: 40vh;
  padding-top: calc(var(--header-height) + var(--spacing-3xl));
  padding-bottom: var(--spacing-3xl);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hero-grid .hero-content {
  max-width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-visual img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 59, 0.04) 0%, rgba(11, 31, 59, 0.34) 100%);
  z-index: 1;
}

.hero-visual-badge {
  position: absolute;
  left: var(--spacing-lg);
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hero-visual-badge span {
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-md);
  background-color: rgba(11, 31, 59, 0.72);
  color: var(--color-bg-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero h1 {
  color: var(--color-bg-white);
  font-size: var(--fs-5xl);
  margin-bottom: var(--spacing-lg);
}

.hero p {
  color: var(--color-text-on-dark);
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* --- Trust Strip --- */
.trust-strip {
  padding: var(--spacing-2xl) 0;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.trust-strip .grid {
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-fast);
}

.trust-item:hover {
  background-color: var(--color-bg-light);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-accent);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(11, 31, 59, 0.2);
}

.trust-number {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-item h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 0;
}

.trust-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Cards --- */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-accent-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(22, 198, 243, 0.12), rgba(22, 198, 243, 0.04));
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(22, 198, 243, 0.12);
}

.card h3 {
  font-size: var(--fs-xl);
}

.card p {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

/* Dark cards */
.card--dark {
  background: linear-gradient(135deg, rgba(22, 62, 114, 0.6), rgba(11, 31, 59, 0.8));
  border: 1px solid rgba(22, 198, 243, 0.15);
  border-top: 3px solid var(--color-accent);
  color: var(--color-text-on-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card--dark:hover {
  border-color: rgba(22, 198, 243, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 16px rgba(22, 198, 243, 0.08);
}

.card--dark h3 {
  color: var(--color-bg-white);
}

.card--dark p {
  color: var(--color-text-on-dark);
}

.card--dark .card-icon {
  background-color: rgba(22, 198, 243, 0.15);
}

/* Industry cards */
.industry-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(22, 198, 243, 0.08), rgba(11, 31, 59, 0.04));
  border: 1px solid rgba(22, 198, 243, 0.12);
}

.industry-card h3 {
  font-size: var(--fs-lg);
}

.industry-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* --- Steps / Process --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  position: relative;
}

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

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  margin: 0 auto var(--spacing-lg);
}

.step h3 {
  font-size: var(--fs-lg);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: var(--spacing-2xl);
}

.faq-category h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-accent);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(22, 198, 243, 0.3);
  box-shadow: 0 2px 12px rgba(22, 198, 243, 0.06);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(22, 198, 243, 0.08);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--color-primary);
  text-align: left;
  background: none;
  border: none;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-bg-light);
}

.faq-question::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--spacing-md);
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--spacing-5xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  max-width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 198, 243, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  max-width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 198, 243, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-bg-white);
  font-size: var(--fs-4xl);
  margin-bottom: var(--spacing-lg);
}

.cta-section p {
  color: var(--color-text-on-dark);
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.form-group label .required {
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: var(--fs-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  color: var(--color-text);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(22, 198, 243, 0.1);
  background-color: var(--color-bg-white);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-error);
}

.form-error {
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--spacing-xs);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.form-success {
  display: none;
  padding: var(--spacing-lg);
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  color: var(--color-success);
  font-weight: var(--fw-semibold);
  text-align: center;
}

/* reCAPTCHA v3 Badge ausblenden (Hinweis im Formular vorhanden, Google-konform) */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* --- Contact Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--spacing-lg);
}

.contact-detail {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(22, 198, 243, 0.12), rgba(22, 198, 243, 0.04));
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(22, 198, 243, 0.12);
}

/* --- Blog Cards --- */
.blog-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.blog-card-image {
  width: 100%;
  height: 220px;
  background-color: var(--color-bg-light);
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: var(--spacing-xl);
}

.blog-card-date {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.blog-card-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-sm);
}

.blog-card-content h3 a:hover {
  color: var(--color-accent);
}

.blog-card-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-col h4 {
  color: var(--color-bg-white);
  font-size: var(--fs-base);
  margin-bottom: var(--spacing-lg);
}

.footer-col p {
  font-size: var(--fs-sm);
  color: var(--color-text-on-dark);
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col ul a {
  font-size: var(--fs-sm);
  color: var(--color-text-on-dark);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* --- Social Icons --- */
.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-on-dark);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 198, 243, 0.3);
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) 0;
}

.legal-toc {
  background: rgba(22, 198, 243, 0.05);
  border: 1px solid rgba(22, 198, 243, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.toc-item {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
}

.toc-item.toc-level-1 {
  padding-left: 1.5rem;
  font-weight: 500;
}

.toc-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-item a:hover {
  color: var(--color-accent);
}

.legal-notice-box {
  background: rgba(22, 198, 243, 0.06);
  border: 1px solid rgba(22, 198, 243, 0.2);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}

.legal-notice-box p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.legal-notice-box p:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
}

.legal-content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
}

.legal-content h4 {
  font-size: var(--fs-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.legal-content p,
.legal-content li {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: var(--spacing-sm);
}

.legal-content a {
  color: var(--color-accent);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* --- Values / Why-Us Section --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.value-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-fast);
}

.value-item:hover {
  background-color: rgba(22, 198, 243, 0.04);
}

.section--dark .value-item:hover {
  background-color: rgba(22, 198, 243, 0.06);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(22, 198, 243, 0.12), rgba(22, 198, 243, 0.04));
  color: var(--color-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(22, 198, 243, 0.12);
}

.value-item h4 {
  margin-bottom: var(--spacing-xs);
}

.value-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* --- Services Section --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

figure.service-image {
  margin: 0;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 31, 59, 0.06);
  min-height: 320px;
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 31, 59, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Checklist Items --- */
.service-block ul li {
  position: relative;
  padding-left: 4px;
}

.service-block ul li::before {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

/* --- Inline Feature Tags --- */
.service-block div[style] span {
  display: inline-block;
  margin-bottom: var(--spacing-xs);
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  background-color: rgba(22, 198, 243, 0.1);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(22, 198, 243, 0.15);
  margin-bottom: var(--spacing-md);
}

.badge--dark {
  background-color: rgba(22, 198, 243, 0.12);
  border-color: rgba(22, 198, 243, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Early Access Banner --- */
.early-access {
  background: linear-gradient(135deg, rgba(22, 198, 243, 0.1), rgba(22, 198, 243, 0.05));
  border: 1px solid rgba(22, 198, 243, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
}

.early-access h3 {
  color: var(--color-accent);
}

/* --- Subtle Background Patterns --- */
.section--light {
  background-color: var(--color-bg-light);
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 59, 0.025) 1px, transparent 0);
  background-size: 32px 32px;
}

/* --- Service Image Hover --- */
.service-image {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-block:hover .service-image {
  box-shadow: var(--shadow-xl);
}

.service-image img {
  transition: transform 0.6s ease;
}

.service-block:hover .service-image img {
  transform: scale(1.03);
}

/* --- Step Enhancement --- */
.step-number {
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(22, 198, 243, 0.2);
}

/* --- Blog Card Enhancement --- */
.blog-card {
  border: none;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

/* --- Early Access Enhancement --- */
.early-access {
  position: relative;
  overflow: hidden;
}

.early-access::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 50%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 198, 243, 0.08), transparent 70%);
  pointer-events: none;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet & below */
@media (max-width: 1024px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
  }

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

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

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

  .service-block {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .service-image {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .service-block:nth-child(even) {
    direction: ltr;
  }

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

/* Mobile landscape & below */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.25rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
  }

  .section {
    padding: var(--spacing-3xl) 0;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

  /* Mobile nav */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--color-primary);
    padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-xl) var(--spacing-xl);
    transition: right var(--transition-base);
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: var(--spacing-md) 0;
    font-size: var(--fs-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-list a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .logo-mark {
    height: 36px;
    max-width: 160px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .service-image {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .hero-grid {
    gap: var(--spacing-2xl);
  }

  .hero-visual {
    min-height: 300px;
    order: 2;
  }

  .hero-visual-badge {
    left: var(--spacing-md);
    right: var(--spacing-md);
    bottom: var(--spacing-md);
  }

  .hero-visual-badge span {
    font-size: 0.6875rem;
  }

  .hero h1 {
    font-size: var(--fs-4xl);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .trust-strip .grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

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

  .cta-section h2 {
    font-size: var(--fs-3xl);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --fs-5xl: 1.875rem;
    --fs-4xl: 1.5rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .hero-visual {
    min-height: 240px;
    border-radius: 18px;
  }

  .hero-visual-badge span {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 70vh;
  }

  .trust-strip .grid--4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: var(--spacing-lg);
  }

  .card--dark {
    padding: var(--spacing-lg);
  }

  .cta-section {
    padding: var(--spacing-3xl) 0;
  }

  .cta-section h2 {
    font-size: var(--fs-3xl);
  }

  .section-header {
    margin-bottom: var(--spacing-2xl);
  }

  .service-image {
    min-height: 200px;
  }

  .early-access {
    padding: var(--spacing-lg);
  }

  .faq-question {
    padding: var(--spacing-md);
    font-size: var(--fs-sm);
  }

  .faq-answer-inner {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }

  h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* --- Print Styles --- */
@media print {
  .site-header,
  .hamburger,
  .nav-cta,
  .cta-section,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
    padding: 2em 0;
  }

  .hero h1,
  .hero p {
    color: #000;
  }

  .section--dark {
    background: none;
    color: #000;
  }

  .section--dark h2,
  .section--dark h3,
  .section--dark p {
    color: #000;
  }

  .site-footer {
    background: none;
    color: #000;
    border-top: 1px solid #ccc;
  }
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ============================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  padding: var(--spacing-xl) 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.cookie-banner h3 {
  color: var(--color-bg-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xs);
}

.cookie-banner p {
  color: var(--color-text-on-dark);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--color-accent-hover);
}

.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-on-dark);
  cursor: pointer;
  user-select: none;
}

.cookie-category label span {
  font-size: var(--fs-xs);
  color: rgba(226, 232, 240, 0.6);
  font-weight: var(--fw-regular);
  display: block;
}

.cookie-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-actions .btn {
  font-size: var(--fs-sm);
  padding: 0.7rem 1.5rem;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0ea5d6 100%);
  color: var(--color-primary);
  border: none;
  font-weight: var(--fw-semibold);
}

.cookie-btn-accept:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.cookie-btn-save {
  background-color: transparent;
  color: var(--color-bg-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-weight: var(--fw-medium);
}

.cookie-btn-save:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(226, 232, 240, 0.6);
  border: none;
  font-weight: var(--fw-regular);
  padding-left: 0;
  padding-right: 0;
}

.cookie-btn-reject:hover {
  color: var(--color-bg-white);
}

/* Cookie Settings Link (Footer) */
.cookie-settings-link {
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--color-accent) !important;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: var(--spacing-lg) 0;
  }

  .cookie-banner-inner {
    padding: 0 var(--spacing-md);
    gap: var(--spacing-md);
  }

  .cookie-categories {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media print {
  .cookie-banner {
    display: none !important;
  }
}
