/* ==========================================================================
   ADINAV PROTECTION - Cybersecurity Dark Theme
   Professional, trustworthy, security-focused design
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Main background - Deep navy for trust */
  --bg-deep: #0c1222;
  --bg-surface: #151d2e;
  --bg-card: #1a2438;

  /* Header/Footer - Distinct from body, slightly lighter with blue tint */
  --nav-bg: #162032;
  --nav-color: linear-gradient(135deg, rgba(22, 32, 50, 0.98) 0%, rgba(26, 36, 56, 0.95) 100%);

  /* Section backgrounds - Visible, trust-building blues */
  --section-bg: rgba(22, 37, 63, 0.6);
  --section-color-a: linear-gradient(135deg, rgba(15, 36, 64, 0.95) 0%, rgba(22, 50, 80, 0.85) 100%);
  --section-color-b: linear-gradient(135deg, rgba(18, 42, 72, 0.95) 0%, rgba(20, 55, 90, 0.85) 100%);

  /* Glass panel properties - More visible */
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.2);
  --glass-bg: rgba(26, 40, 62, 0.7);

  /* Text colors - Good contrast */
  --text-primary: #f1f5f9;
  --text-secondary: #c8d4e3;
  --text-muted: #8b9bb5;

  /* Accent colors - Calming teal (trust + calm) */
  --accent: #38bdf8;
  --accent-light: #7dd3fc;
  --accent-glow: rgba(56, 189, 248, 0.25);
  --accent-soft: rgba(56, 189, 248, 0.15);

  /* Status colors */
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #ef4444;

  /* Spacing & Radius */
  --radius: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==========================================================================
   BACKGROUND - Subtle security grid pattern
   ========================================================================== */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--nav-color);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--accent);
}

.logo__icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__icon svg {
  width: 18px;
  height: 18px;
  color: var(--bg-deep);
}

.logo__text span {
  color: var(--accent);
}

.logo__img {
  height: 100px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.625rem 1rem;
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--active {
  color: var(--bg-deep);
  background: var(--accent);
}

.nav__link--active:hover {
  color: var(--bg-deep);
  background: var(--accent-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Language Switcher */
.header__right {
  display: none;
}

.lang-switcher--desktop {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--glass-border);
}

.lang-switcher--mobile {
  display: none;
}

.lang-switcher__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.lang-switcher__flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: var(--transition);
}

.lang-switcher__btn:hover .lang-switcher__flag {
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-switcher__btn--active .lang-switcher__flag {
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 1.5rem 80px;
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero__headline {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__headline span {
  color: var(--danger);
}

.hero__subheadline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero__platforms {
  font-size: 0.9375rem;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__shield {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__shield-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--section-color-a);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.hero__shield-icon {
  position: relative;
  z-index: 2;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.3);
}

.hero__shield-icon svg {
  width: 50%;
  height: 50%;
  color: var(--bg-deep);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn--primary:hover {
  background: var(--accent-light);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn--danger {
  background: var(--danger);
  color: white;
}

.btn--danger:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: var(--accent) !important;
}

.btn--full {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(22, 38, 60, 0.5) 0%, rgba(18, 30, 48, 0.3) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.trust-bar__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.trust-bar__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--success);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   INTRO SECTION - Calm & Trust
   ========================================================================== */

.intro-section {
  padding: 60px 1.5rem;
  position: relative;
  z-index: 1;
}

.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26, 42, 68, 0.85) 0%, rgba(20, 35, 58, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.intro__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.intro__text:last-of-type {
  margin-bottom: 1.5rem;
}

.intro__text strong {
  color: var(--text-primary);
}

.intro__note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-style: italic;
}

.intro__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.intro__highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1.5rem 0;
}

/* ==========================================================================
   DOMAINS SECTION
   ========================================================================== */

.domains-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.domain-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.domain-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.domain-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.domain-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.domain-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.domain-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.domain-card__list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.domain-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ==========================================================================
   ETHICS SECTION
   ========================================================================== */

.ethics-section {
  padding: 60px 1.5rem;
  position: relative;
  z-index: 1;
}

.ethics__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(20, 40, 60, 0.7) 0%, rgba(15, 30, 50, 0.8) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
}

.ethics__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.ethics__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.ethics__text:last-child {
  margin-bottom: 0;
}

.ethics__text strong {
  color: var(--success);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-item__answer {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 45, 75, 0.9) 0%, rgba(15, 38, 65, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.section:nth-of-type(even) .section__inner {
  background: linear-gradient(145deg, rgba(18, 42, 70, 0.9) 0%, rgba(14, 35, 60, 0.95) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.services-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* 5-service grid layout for homepage */
.services-grid--5 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

.services-grid--5 .service-card--featured {
  grid-column: span 1;
}

.services-grid--5 .service-card {
  padding: 1.5rem;
}

.services-grid--5 .service-card__description {
  font-size: 0.875rem;
}

.services-grid--5 .service-card__list li {
  font-size: 0.8rem;
  padding: 0.25rem 0 0.25rem 1.25rem;
}

/* Small button variant for service cards */
.btn--small {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
  width: 100%;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.8) 0%, rgba(22, 36, 56, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.service-card--featured {
  grid-column: 1 / -1;
  border-color: rgba(56, 189, 248, 0.3);
  background: linear-gradient(145deg, rgba(30, 48, 75, 0.9) 0%, rgba(22, 45, 72, 0.95) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-size: 1.25rem;
  flex: 1;
}

.service-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.service-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.service-card__description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.service-card__list {
  list-style: none;
}

.service-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

/* ==========================================================================
   HOW IT WORKS / PROCESS STEPS
   ========================================================================== */

.process-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.75) 0%, rgba(22, 36, 56, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step__text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==========================================================================
   AUDIENCE CARDS
   ========================================================================== */

.audience-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.75) 0%, rgba(22, 36, 56, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.audience-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.audience-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.audience-card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(20, 50, 85, 0.95) 0%, rgba(15, 40, 70, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta__title {
  margin-bottom: 0.75rem;
}

.cta__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.8) 0%, rgba(22, 36, 56, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.contact-info__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info__intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-info__items {
  display: grid;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* Contact Form */
.contact-form {
  padding: 2rem;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.8) 0%, rgba(22, 36, 56, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot field - hidden from users */
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   PAGE HEADER (for inner pages)
   ========================================================================== */

.page-header {
  padding: 140px 1.5rem 60px;
  position: relative;
  z-index: 1;
}

.page-header__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(20, 48, 80, 0.95) 0%, rgba(15, 38, 65, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.page-header__title {
  margin-bottom: 0.75rem;
}

.page-header__intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-section {
  padding: 60px 1.5rem 100px;
  position: relative;
  z-index: 1;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(26, 40, 62, 0.8) 0%, rgba(22, 36, 56, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.legal-block {
  margin-bottom: 2rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.legal-block h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}

.legal-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-block ul {
  list-style: none;
  margin: 1rem 0;
}

.legal-block ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: 60px 1.5rem 40px;
  position: relative;
  z-index: 1;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(22, 34, 54, 0.95) 0%, rgba(18, 28, 45, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer__logo span {
  color: var(--accent);
}

.footer__logo-img {
  height: 40px;
  width: auto;
}

.footer__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__nav-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
}

.footer__nav {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.4rem;
}

.footer__nav a {
  color: var(--text-muted);
  font-size: 0.8125rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__content {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__shield {
    max-width: 280px;
    margin: 0 auto;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Logo smaller on tablet */
  .logo__img {
    height: 75px;
    max-width: 320px;
  }

  /* Mobile Navigation */
  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
  }

  .header__right {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.5rem;
  }

  /* Services grid 2 columns on tablet */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--featured {
    grid-column: 1 / -1;
  }

  /* 5-service grid on tablet: 2 columns */
  .services-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--5 .service-card--featured {
    grid-column: span 1;
  }

  /* Audience grid 3 columns still works on tablet */
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-switcher--mobile {
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: center;
  }

  .lang-switcher--desktop {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  }

  .nav--open {
    display: flex;
  }

  .nav__link {
    padding: 0.875rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9375rem;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 1rem 60px;
    min-height: auto;
  }

  .hero__subheadline {
    font-size: 1rem;
  }

  /* Logo smaller on mobile */
  .logo__img {
    height: 65px;
    max-width: 280px;
  }

  .services-grid,
  .services-grid--5,
  .process-steps,
  .domains-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .services-grid--5 .service-card--featured {
    grid-column: span 1;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Trust items wrap nicely */
  .trust-items {
    gap: 1rem 2rem;
    justify-content: center;
  }

  .trust-item {
    flex: 0 0 auto;
  }

  /* Intro section padding */
  .intro__inner {
    padding: 2rem 1.5rem;
  }

  .intro__text {
    font-size: 0.9375rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2rem;
  }

  /* Page header */
  .page-header {
    padding: 120px 1rem 40px;
  }

  .page-header__inner {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer {
    padding: 40px 1rem 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* CTA section */
  .cta__inner {
    padding: 2rem 1.5rem;
  }

  /* Contact section */
  .contact-section {
    padding: 60px 1rem;
  }

  /* Sections padding */
  .services-section,
  .process-section,
  .audience-section {
    padding: 60px 1rem;
  }
}

@media (max-width: 480px) {
  /* Header adjustments */
  .header {
    padding: 0.75rem 1rem;
  }

  .logo__img {
    height: 55px;
    max-width: 240px;
  }

  /* Hero section */
  .hero-section {
    padding: 110px 1rem 50px;
  }

  .hero__badge {
    font-size: 0.6875rem;
    padding: 0.4rem 0.75rem;
  }

  .hero__headline {
    font-size: 1.75rem;
  }

  .hero__subheadline {
    font-size: 0.9375rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__shield {
    max-width: 200px;
  }

  /* Trust bar */
  .trust-bar {
    padding: 1.5rem 1rem;
  }

  .trust-items {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .trust-item {
    font-size: 0.8125rem;
  }

  /* Intro section */
  .intro-section {
    padding: 40px 1rem;
  }

  .intro__inner {
    padding: 1.5rem 1.25rem;
  }

  .intro__note {
    font-size: 0.875rem;
  }

  /* Section styles */
  .section__inner,
  .cta__inner,
  .page-header__inner {
    padding: 1.5rem 1.25rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  /* Cards */
  .service-card,
  .process-step,
  .audience-card,
  .contact-info,
  .contact-form,
  .legal-content {
    padding: 1.25rem;
  }

  .service-card__header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-card__title {
    font-size: 1.125rem;
  }

  .service-card__price {
    font-size: 1.125rem;
  }

  /* Process steps */
  .process-step__number {
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
  }

  /* Audience cards */
  .audience-card__icon {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer__inner {
    padding: 1.5rem 1.25rem;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Form elements */
  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   UTILITY CLASSES - For CSP compliance (replacing inline styles)
   ========================================================================== */

/* Spacing utilities */
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mb-md { margin-top: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }

/* Info box styles */
.info-box {
  padding: 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 8px;
}

.info-box--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.info-box p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.info-box strong {
  color: var(--accent);
}

.info-box--success p {
  color: var(--success);
}

/* Text utilities */
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }

/* Service card section headers */
.service-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Service card variants */
.service-card--success {
  border-color: rgba(34, 197, 94, 0.3);
}

.service-card--danger {
  border-color: rgba(239, 68, 68, 0.3);
}

/* Button full width utility */
.btn--block {
  margin-top: 1.5rem;
  width: 100%;
}

.btn--block-sm {
  margin-top: 1rem;
  width: 100%;
}

/* Intro section title */
.intro__subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Section description */
.section__description {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Card title variants */
.card-title--success {
  color: var(--success);
  margin-bottom: 1rem;
}

.card-title--danger {
  color: var(--danger);
  margin-bottom: 1rem;
}

/* Form footer text */
.form-footer-text {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* Pricing note */
.pricing-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Two-column grid for services comparison */
.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .services-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   THANK YOU PAGE STYLES
   ========================================================================== */

.hero-section--thankyou {
  min-height: 80vh;
}

.hero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero__content--narrow {
  max-width: 600px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
}

.thankyou-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.thankyou-text--last {
  margin-bottom: 1.5rem;
}

.hero__cta--centered {
  justify-content: center;
}
