/* ============================================
   DIGITAL SOVEREIGNTY — Papyrus Software
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap");

:root {
  --ds-primary: #6bb8be;
  --ds-primary-dark: #5aa8ae;
  --ds-primary-deeper: #4a9da3;
  --ds-primary-light: rgba(107, 184, 190, 0.1);
  --ds-primary-glow: rgba(107, 184, 190, 0.18);
  --ds-text-dark: #1e293b;
  --ds-text-med: #475569;
  --ds-text-light: #64748b;
  --ds-white: #ffffff;
  --ds-bg-alt: #f7f8f9;
  --ds-border: #e2e5e9;
  --ds-border-light: #edf0f2;
  --ds-r: 12px;
  --ds-r-lg: 16px;
  --ds-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.contactus, .oh24btn, #go_up, .icon-chevron-up { display: none !important; }


/* ============================================
   HERO — Photo BG, Cinematic Dark-Left Gradient
   ============================================ */
.ds-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ds-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ds-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 15, 26, 0.86) 0%,
    rgba(10, 15, 26, 0.7) 35%,
    rgba(10, 15, 26, 0.28) 65%,
    transparent 100%
  );
}

.ds-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 88px;
  width: 100%;
}

.ds-hero__content {
  max-width: 580px;
}

.ds-hero__content h1 {
  font-family: "Montserrat", sans-serif !important;
  color: white !important;
  font-weight: 800 !important;
  font-size: 3rem !important;
  margin: 0 0 20px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
}

.ds-hero__content h1 span {
  color: var(--ds-primary);
}

.ds-hero__content > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin: 0 0 30px;
}

.ds-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Shared Buttons */
.ds-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--ds-r);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--ds-ease);
  border: 2px solid transparent;
}

.ds-btn--primary {
  background: var(--ds-primary);
  color: white;
  border-color: var(--ds-primary);
  box-shadow: 0 4px 16px rgba(107, 184, 190, 0.3);
}

.ds-btn--primary:hover {
  background: var(--ds-primary-dark);
  border-color: var(--ds-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 184, 190, 0.4);
  color: white;
  text-decoration: none;
}

.ds-btn--glass {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.ds-btn--glass:hover {
  border-color: var(--ds-primary);
  background: rgba(107, 184, 190, 0.08);
  color: var(--ds-primary);
  transform: translateY(-2px);
  text-decoration: none;
}

.ds-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.ds-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Hero Metrics */
.ds-hero__metrics {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ds-hero__metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ds-hero__metric strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ds-primary);
}

.ds-hero__metric span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}


/* ============================================
   SECTIONS — COMMON
   ============================================ */
.ds-section {
  padding: 80px 0;
  background: var(--ds-white);
}

.ds-section--alt {
  background: var(--ds-bg-alt);
}

.ds-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--ds-primary-light);
  border: 1px solid rgba(107, 184, 190, 0.15);
  border-radius: 30px;
  color: var(--ds-primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.ds-centered-header {
  text-align: center;
  margin-bottom: 48px;
}

.ds-centered-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 12px;
}

.ds-centered-header p {
  color: var(--ds-text-med);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.ds-centered-header__tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ds-primary-dark);
  margin: 0 auto 16px;
}

.ds-centered-header__tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ds-primary-dark);
  margin: 0 auto 14px;
  letter-spacing: 0.5px;
}


/* ============================================
   SAFE HARBOR
   ============================================ */
.ds-safeharbor {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.ds-safeharbor__text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 18px;
  line-height: 1.25;
}

.ds-safeharbor__text h2 span { color: var(--ds-primary-dark); }

.ds-safeharbor__text p {
  line-height: 1.85;
  color: var(--ds-text-med);
  margin: 0 0 18px;
}

.ds-safeharbor__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ds-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--ds-bg-alt);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  transition: all 0.4s var(--ds-ease);
}

.ds-pillar:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 4px 16px var(--ds-primary-glow);
}

.ds-pillar__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--ds-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-pillar__icon i { color: var(--ds-primary-dark); font-size: 1.1rem; }

.ds-pillar__body strong {
  display: block;
  color: var(--ds-text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.ds-pillar__body span {
  color: var(--ds-text-light);
  font-size: 0.9rem;
}


/* ============================================
   ISO 27001
   ============================================ */
.ds-iso {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.ds-iso__text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 18px;
}

.ds-iso__text p {
  line-height: 1.85;
  color: var(--ds-text-med);
  margin: 0 0 18px;
}

.ds-iso__download {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--ds-white);
  border: 2px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ds-ease);
  margin-top: 28px;
}

.ds-iso__download:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 6px 24px var(--ds-primary-glow);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.ds-iso__download > i:first-child {
  font-size: 2rem;
  color: #dc2626;
  flex-shrink: 0;
}

.ds-iso__download div { flex: 1; }

.ds-iso__download strong {
  display: block;
  font-weight: 700;
  color: var(--ds-text-dark);
  line-height: 1.3;
}

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

.ds-iso__download > i:last-child {
  color: var(--ds-border);
  transition: all 0.4s var(--ds-ease);
}

.ds-iso__download:hover > i:last-child {
  color: var(--ds-primary);
  transform: translateX(4px);
}

/* ISO Badge */
.ds-iso__badge {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--ds-r-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 184, 190, 0.2);
}

.ds-iso__badge-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-primary), var(--ds-primary-deeper), var(--ds-primary));
}

.ds-iso__badge-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 184, 190, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ds-iso__badge-shield {
  width: 72px;
  height: 72px;
  background: rgba(107, 184, 190, 0.15);
  border: 2px solid rgba(107, 184, 190, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ds-iso__badge-shield i {
  font-size: 1.8rem;
  color: var(--ds-primary);
}

.ds-iso__badge h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}

.ds-iso__badge-scope {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px;
  line-height: 1.4;
}

.ds-iso__badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(107, 184, 190, 0.15);
  border: 1px solid rgba(107, 184, 190, 0.3);
  border-radius: 30px;
  color: var(--ds-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.ds-iso__badge-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: left;
}

.ds-iso__badge-meta > div { padding: 8px 0; }

.ds-iso__badge-meta > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ds-iso__badge-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ds-iso__badge-meta strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}


/* ============================================
   WHY IT MATTERS — 3 Cards
   ============================================ */
.ds-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ds-card {
  background: var(--ds-bg-alt);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ds-ease);
}

.ds-card:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 8px 28px var(--ds-primary-glow);
  transform: translateY(-4px);
}

.ds-card__icon {
  width: 52px;
  height: 52px;
  background: var(--ds-primary-light);
  border: 1.5px solid rgba(107, 184, 190, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ds-card__icon i {
  font-size: 1.3rem;
  color: var(--ds-primary-dark);
}

.ds-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 12px;
}

.ds-card p {
  line-height: 1.75;
  color: var(--ds-text-med);
  margin: 0;
}


/* ============================================
   THE EUROPEAN ADVANTAGE
   ============================================ */
.ds-europe {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
}

.ds-europe__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0f1a 0%, #141c2e 40%, #0f172a 100%);
  z-index: 0;
}

.ds-europe__bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 184, 190, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ds-europe .container {
  position: relative;
  z-index: 1;
}

.ds-europe__header {
  text-align: center;
  margin-bottom: 48px;
}

.ds-europe__header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 14px;
}

.ds-europe__header p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.ds-europe__core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

/* Dev Centers */
.ds-europe__devcenters {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ds-r-lg);
  padding: 36px 32px;
}

.ds-europe__devcenters h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
}

.ds-europe__devcenters > p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 24px;
}

.ds-europe__flags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ds-flag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ds-r);
}

.ds-flag .fi {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ds-flag strong {
  display: block;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}

.ds-flag span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

/* Benefits List */
.ds-europe__benefits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ds-r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ds-europe__benefits h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
}

.ds-europe__benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-europe__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ds-europe__benefits li:last-child { border-bottom: none; }

.ds-europe__benefits li i {
  color: var(--ds-primary);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Presence Strip */
.ds-europe__presence {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ds-europe__presence-label {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 0 18px;
}

.ds-europe__presence-flags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ds-europe__presence-flags .fi {
  font-size: 1.8rem;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.ds-europe__presence-flags .fi:hover { opacity: 1; }

.ds-europe__presence-note {
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}


/* ============================================
   WHY GLOBAL LEADERS CHOOSE PAPYRUS
   ============================================ */
.ds-leaders {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ds-leader {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px;
  background: var(--ds-bg-alt);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  transition: all 0.4s var(--ds-ease);
}

.ds-leader:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 6px 24px var(--ds-primary-glow);
}

.ds-leader__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--ds-primary-light);
  border: 1.5px solid rgba(107, 184, 190, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-leader__icon i {
  font-size: 1.2rem;
  color: var(--ds-primary-dark);
}

.ds-leader__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 6px;
}

.ds-leader__body p {
  line-height: 1.75;
  color: var(--ds-text-med);
  margin: 0;
}


/* ============================================
   WHY GLOBAL LEADERS CHOOSE PAPYRUS
   ============================================ */
.ds-leaders {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.ds-leader {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 28px;
  background: var(--ds-bg-alt);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  transition: all 0.4s var(--ds-ease);
}

.ds-leader:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 6px 24px var(--ds-primary-glow);
  transform: translateX(4px);
}

.ds-leader__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--ds-primary-light);
  border: 1.5px solid rgba(107, 184, 190, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-leader__icon i {
  font-size: 1.2rem;
  color: var(--ds-primary-dark);
}

.ds-leader__body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--ds-text-dark);
  margin: 0 0 8px;
}

.ds-leader__body p {
  color: var(--ds-text-med);
  line-height: 1.75;
  margin: 0;
}


/* ============================================
   BUILT ON TRUST
   ============================================ */
.ds-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

/* CEO Quote */
.ds-trust__quote {
  position: relative;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--ds-r-lg);
  padding: 44px 36px 36px;
  border: 1px solid rgba(107, 184, 190, 0.15);
}

.ds-trust__quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--ds-primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 24px;
  pointer-events: none;
}

.ds-trust__quote blockquote {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  font-style: italic;
  margin: 0 0 28px;
  padding: 0;
  border: none;
}

.ds-trust__author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ds-trust__author-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(107, 184, 190, 0.3);
  flex-shrink: 0;
}

.ds-trust__author-info strong {
  display: block;
  color: white;
  font-weight: 700;
}

.ds-trust__author-info span {
  color: var(--ds-primary);
  font-weight: 500;
}

/* Trust Facts — 2x2 */
.ds-trust__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ds-trust__fact {
  background: var(--ds-bg-alt);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--ds-r-lg);
  padding: 24px 22px;
  transition: all 0.4s var(--ds-ease);
}

.ds-trust__fact:hover {
  border-color: var(--ds-primary);
  box-shadow: 0 6px 20px var(--ds-primary-glow);
}

.ds-trust__fact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ds-trust__fact-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ds-primary-dark);
  line-height: 1;
}

.ds-trust__fact-top i {
  color: var(--ds-border);
  font-size: 1.1rem;
}

.ds-trust__fact > strong {
  display: block;
  color: var(--ds-text-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.ds-trust__fact p {
  color: var(--ds-text-light);
  line-height: 1.65;
  margin: 0;
}

/* Logo Strip */
.ds-trust__logos {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--ds-border-light);
}

.ds-trust__logos > p {
  color: var(--ds-text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin: 0 0 24px;
}

.ds-trust__logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.ds-trust__logo-strip img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.35;
  transition: all 0.4s var(--ds-ease);
}

.ds-trust__logo-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ============================================
   CTA
   ============================================ */
.ds-cta {
  background: linear-gradient(135deg, #0a0f1a 0%, #141c2e 50%, #0f172a 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ds-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(107, 184, 190, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.ds-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 14px;
  position: relative;
}

.ds-cta > .container > p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
}

.ds-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ds-safeharbor { grid-template-columns: 1fr; gap: 36px; }
  .ds-iso { grid-template-columns: 1fr; gap: 36px; }
  .ds-europe__core { grid-template-columns: 1fr; }
  .ds-trust { grid-template-columns: 1fr; }
  .ds-cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ds-hero { min-height: 420px; }
  .ds-hero__inner { padding: 52px 0 60px; }
  .ds-hero__content { max-width: 100%; }
  .ds-hero__content h1 { font-size: 2.2rem !important; }
  .ds-hero__gradient {
    background: linear-gradient(to bottom, rgba(10,15,26,0.82) 0%, rgba(10,15,26,0.55) 60%, rgba(10,15,26,0.3) 100%);
  }
  .ds-hero__actions { flex-direction: column; }
  .ds-hero__actions .ds-btn { justify-content: center; }
  .ds-hero__metrics { flex-wrap: wrap; gap: 16px 24px; }

  .ds-section { padding: 56px 0; }
  .ds-europe { padding: 60px 0; }

  .ds-centered-header h2,
  .ds-safeharbor__text h2,
  .ds-iso__text h2,
  .ds-europe__header h2,
  .ds-cta h2 { font-size: 1.8rem; }

  .ds-safeharbor__pillars { grid-template-columns: 1fr; }
  .ds-cards-row { grid-template-columns: 1fr; }
  .ds-europe__flags { grid-template-columns: 1fr; }

  .ds-leader { padding: 22px 20px; gap: 16px; }
  .ds-leader:hover { transform: none; }

  .ds-trust__facts { grid-template-columns: 1fr; }
  .ds-trust__quote { padding: 32px 24px 28px; }

  .ds-cta__actions { flex-direction: column; align-items: center; }
  .ds-trust__logo-strip { gap: 28px; }
  .ds-trust__logo-strip img { height: 40px; max-width: 130px; }
}

@media (max-width: 480px) {
  .ds-hero__content h1 { font-size: 1.8rem !important; }
  .ds-centered-header h2,
  .ds-safeharbor__text h2,
  .ds-iso__text h2,
  .ds-europe__header h2,
  .ds-cta h2 { font-size: 1.5rem; }
  .ds-europe__presence-flags .fi { font-size: 1.4rem; }
  .ds-europe__presence-flags { gap: 10px; }
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.ds-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ds-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ds-delay-1 { transition-delay: 0.1s; }
.ds-delay-2 { transition-delay: 0.2s; }
.ds-delay-3 { transition-delay: 0.3s; }