/* ===== BASE STYLES ===== */
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto/roboto-variablefont_wdthwght-webfont.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: fallback;
  font-feature-settings: 'kern' 1, 'liga' 1, 'clig' 1;
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 28%;
}

/* Alternative - fallback Roboto for diacritics */
@font-face {
  font-family: 'Roboto Diacritics';
  src: url('/assets/fonts/roboto/roboto-variablefont_wdthwght-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0218-021B, U+0102-0103, U+0104-0105, U+0210-0211, U+0212-0213, U+021A-021B; /* ă,â,î,ș,ț */
}

/* Optimize text rendering for diacritics */
body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'dlig' 1;
}

/* Ensure consistent font-family across all elements */
body, h1, h2, h3, h4, h5, h6, p, a, button, span, div, li, ul, input, textarea, label {
  font-family: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga" 1, "kern" 1;
}

/* Romanian diacritics specific optimization */
body, .ds-page {
  /* Force consistent rendering for Romanian characters */
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga" 1, "dlig" 1, "kern" 1;
  -moz-font-feature-settings: "liga"=1, "dlig"=1, "kern"=1;
  font-feature-settings: "liga" 1, "dlig" 1, "kern" 1;
}

/* Specific characters for Romanian */
:lang(ro) {
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

/* Prevent unwanted bold/diacritic rendering issues */
* {
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Force normal weight for diacritics */
html[lang="ro"] body {
  font-weight: 400;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hidden {
  display: none !important;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin: 0;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

a, button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* ===== DS SPECIFIC CSS VARIABLES ===== */
:root {
  --ds-navy: #0f1e35;
  --ds-navy-dark: #0a1426;
  --ds-cyan: #0ea5e9;
  --ds-cyan-light: #38bdf8;
  --ds-cyan-glow: rgba(14, 165, 233, 0.3);
  --ds-white: #ffffff;
  --ds-gray: #f8fafc;
  --ds-gray-light: #e2e8f0;
  --ds-text: #1e293b;
  --ds-muted: #64748b;
  --ds-radius: 12px;
  --ds-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --ds-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.ds-page {
  background: var(--ds-white);
  color: var(--ds-text);
}

/* ===== NAVBAR BASE STYLES ===== */
.navbar {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar .navbar-logo .navbar-brand {
  display: none;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, var(--ds-cyan), var(--ds-cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .navbar .navbar-logo .navbar-brand {
    display: block;
  }
}

.navbar .navbar-links {
  display: none;
}

.navbar .navbar-mobile-btn {
  display: block;
}

.navbar .navbar-mobile-btn button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ===== FIX HAMBURGER ICON VISIBILITY ===== */
.navbar-mobile-btn button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger icon lines - force white ALWAYS (both normal and scrolled) */
.navbar-mobile-btn svg,
.navbar-mobile-btn svg path,
.navbar-mobile-btn .icon,
.navbar-mobile-btn .icon path,
.navbar.scrolled .navbar-mobile-btn svg,
.navbar.scrolled .navbar-mobile-btn svg path,
.navbar.scrolled .navbar-mobile-btn .icon,
.navbar.scrolled .navbar-mobile-btn .icon path {
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
}

.navbar-mobile-btn {
  display: block;
  z-index: 1001;
}
/* ===== END HAMBURGER FIX ===== */

.navbar .mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  border-top: 1px solid #eee;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background-color: rgba(15, 30, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-logo .navbar-brand {
  display: block;
}

.navbar.scrolled .navbar-mobile-btn button {
  color: black;
}

.navbar.scrolled .navbar-mobile-btn button:hover {
  color: var(--ds-cyan);
}

/* ===== DS NAVBAR SPECIFIC ===== */
.ds-navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ds-nav-scrolled {
  background: rgba(15, 30, 53, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ds-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .ds-nav-links {
    display: flex;
  }
}

.ds-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.ds-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.ds-nav-links .ds-nav-cta {
  background: var(--ds-cyan);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px var(--ds-cyan-glow);
}

.ds-nav-links .ds-nav-cta:hover {
  background: var(--ds-cyan-light);
  box-shadow: 0 6px 20px var(--ds-cyan-glow);
}

.ds-mobile-cta {
  display: inline-block;
  background: var(--ds-cyan);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5rem;
}

.mobile-menu a {
  display: block;
  color: #333;
  padding: 10px 0;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background-color: #f8f8f8;
  color: var(--ds-cyan);
}

.mobile-menu .ds-mobile-cta {
  display: inline-block;
  background: var(--ds-cyan);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5rem;
}

.mobile-menu .ds-mobile-cta:hover {
  background: var(--ds-cyan-light);
}

.mobile-menu a:nth-last-child(2) {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .navbar .navbar-mobile-btn,
  .navbar .mobile-menu {
    display: none;
  }
}

@media (max-width: 1023px) {
  .navbar .navbar-mobile-btn {
    display: block;
    z-index: 1001;
  }

  .navbar .mobile-menu.hidden {
    display: none;
  }

  .navbar .mobile-menu:not(.hidden) {
    display: flex;
  }
}

/* ===== DS CONTAINER (content sections) ===== */
.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO SECTION (FULL WIDTH) ===== */
.ds-hero {
  position: relative;
  min-height: 100vh;
  background: 
    linear-gradient(135deg, var(--ds-navy) 0%, var(--ds-navy-dark) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ds-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(56, 189, 248, 0.3) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.25) 0%, transparent 55%),
    linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 200% 200%, 200% 200%, 200% 200%, 80px 80px, 80px 80px;
  animation: ds-hero-glow 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ds-hero-glow {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  50% {
    background-position: 100% 50%, 0% 100%, 50% 0%;
  }
}

.ds-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px);
}

@media (min-width: 1024px) {
  .ds-hero-content {
    padding: 8rem 1.5rem 5rem;
  }
}

.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--ds-cyan-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px var(--ds-cyan-glow);
}

.ds-hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: ds-float 20s ease-in-out infinite;
}

.ds-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: ds-float 25s ease-in-out infinite reverse;
}

@keyframes ds-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.ds-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 3;
}

.ds-highlight {
  color: var(--ds-cyan-light);
  text-shadow: 0 0 30px var(--ds-cyan-glow);
}

.ds-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 1rem;
}

.ds-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 600px;
}

.ds-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ds-cyan);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--ds-cyan);
  box-shadow: 0 4px 12px var(--ds-cyan-glow);
}

.ds-btn-primary:hover {
  background: var(--ds-cyan-light);
  border-color: var(--ds-cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--ds-cyan-glow);
}

.ds-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.ds-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.ds-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.ds-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--ds-cyan-light);
  line-height: 1;
}

.ds-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.ds-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== SECTIONS ===== */
.ds-section {
  padding: 5rem 0;
}

.ds-section-label {
  display: inline-block;
  background: rgba(14, 165, 233, 0.2);
  color: var(--ds-cyan-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.ds-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ds-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ds-section-sub {
  font-size: 1.1rem;
  color: var(--ds-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== DESPRE SECTION ===== */
.ds-despre {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ds-describe-content {
  margin-top: 2rem;
}

.ds-describe-text p {
  font-size: 1.05rem;
  color: var(--ds-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.ds-describe-text ul {
  list-style: none;
  padding: 0;
}

.ds-describe-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ds-text);
  line-height: 1.7;
}

.ds-describe-text ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BENEFITS (Numere Mari) ===== */
.ds-benefits {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.ds-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .ds-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-benefit-item {
  background: #fff;
  border-radius: var(--ds-radius);
  padding: 2rem;
  box-shadow: var(--ds-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.ds-benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ds-cyan-glow) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ds-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-lg);
  border-left-color: var(--ds-cyan);
}

.ds-benefit-item:hover::before {
  opacity: 1;
}

.ds-benefit-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ds-cyan);
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
  opacity: 0.9;
}

.ds-benefit-icon {
  width: 54px;
  height: 54px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--ds-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ds-benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ds-text);
}

.ds-benefit-item p {
  font-size: 0.92rem;
  color: var(--ds-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== DOMAINS (Grid Vizual) ===== */
.ds-domains {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.ds-domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .ds-domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-domains-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-domain-card {
  background: var(--ds-gray);
  border-radius: var(--ds-radius);
  padding: 2rem;
  box-shadow: var(--ds-shadow);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

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

.ds-domain-icon {
  width: 72px;
  height: 72px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--ds-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.ds-domain-card:hover .ds-domain-icon {
  background: var(--ds-cyan);
  color: #fff;
  transform: rotate(5deg);
}

.ds-domain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ds-text);
}

.ds-domain-card p {
  font-size: 0.92rem;
  color: var(--ds-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ds-domain-card ul {
  list-style: none;
  padding: 0;
}

.ds-domain-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ds-text);
  line-height: 1.6;
  border-bottom: 1px solid var(--ds-gray-light);
}

.ds-domain-card ul li:last-child {
  border-bottom: none;
}

.ds-domain-card ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FUNCTIONS ===== */
.ds-functions {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.ds-functions-content {
  margin-top: 2rem;
}

.ds-func-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ds-func-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ds-func-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-func-card {
  background: #fff;
  border-radius: var(--ds-radius);
  padding: 2rem;
  box-shadow: var(--ds-shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ds-func-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ds-cyan), var(--ds-cyan-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.ds-func-icon {
  width: 64px;
  height: 64px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--ds-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.ds-func-card:hover .ds-func-icon {
  background: var(--ds-cyan);
  color: #fff;
  transform: scale(1.1);
}

.ds-func-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ds-text);
}

.ds-func-card p {
  font-size: 0.92rem;
  color: var(--ds-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== TIMELINE ORIZONTAL ===== */
.ds-process {
  background: linear-gradient(180deg, #e2e8f0 0%, #ffffff 100%);
  padding: 4rem 0;
}

.ds-timeline-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .ds-timeline-horizontal {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .ds-timeline-horizontal {
    gap: 3rem;
  }
}

.ds-timeline-item {
  flex: 1;
  min-width: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ds-tl-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ds-cyan);
  margin: 0 0 1.5rem 0;
  font-family: 'Courier New', monospace;
  text-align: center;
  line-height: 1;
}

.ds-tl-num::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--ds-cyan), var(--ds-cyan-light));
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 4px 12px var(--ds-cyan-glow);
}

.ds-tl-line {
  display: none;
}

@media (min-width: 1024px) {
  .ds-timeline-item:not(:last-child) .ds-tl-line {
    display: block;
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ds-cyan), transparent);
    z-index: 0;
  }
}

.ds-tl-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  border: 2px solid var(--ds-gray-light);
  border-left: 4px solid var(--ds-cyan);
  box-shadow: var(--ds-shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.ds-tl-card:hover {
  box-shadow: var(--ds-shadow-lg);
  transform: translateY(-4px);
  border-left-color: var(--ds-cyan-light);
}

.ds-tl-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.15));
  color: var(--ds-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.ds-tl-card:hover .ds-tl-icon {
  background: var(--ds-cyan);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.ds-tl-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--ds-text);
}

.ds-tl-card p {
  font-size: 14px;
  color: var(--ds-muted);
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

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

.ds-tl-card ul li {
  font-size: 13px;
  color: var(--ds-text);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--ds-gray-light);
}

.ds-tl-card ul li:last-child {
  border-bottom: none;
}

.ds-tl-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--ds-cyan);
  border-radius: 50%;
}

.ds-deploy-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--ds-gray);
  border-radius: 16px;
  padding: 2rem 3rem;
}

.ds-deploy-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--ds-shadow);
  transition: all 0.3s ease;
}

.ds-deploy-opt:hover {
  transform: translateY(-2px);
  box-shadow: var(--ds-shadow-lg);
}

.ds-deploy-opt svg {
  color: var(--ds-cyan);
  flex-shrink: 0;
}

.ds-deploy-opt strong {
  display: block;
  font-size: 1rem;
  color: var(--ds-text);
  margin-bottom: 2px;
}

.ds-deploy-opt span {
  font-size: 13px;
  color: var(--ds-muted);
}

.ds-deploy-sep {
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== CTA FINAL ===== */
.ds-final-cta {
  background: linear-gradient(135deg, var(--ds-navy) 0%, var(--ds-navy-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.ds-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, var(--ds-cyan-glow) 0%, transparent 70%);
  opacity: 0.5;
}

.ds-cta-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ds-cta-box {
    grid-template-columns: 1.4fr 1fr;
  }
}

.ds-cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.ds-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ds-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.ds-cta-trust span {
  font-weight: 500;
}

.ds-cta-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ds-cta-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  color: var(--ds-cyan-light);
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
}

.ds-cta-badge:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.ds-cta-badge span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.75rem;
  line-height: 1;
}

.ds-cta-badge small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ===== CONTACT FORM ===== */
.ds-cta-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.ds-cta-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.ds-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .ds-form-grid {
    grid-template-columns: 1fr;
  }
}

.ds-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.ds-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ds-form-group input,
.ds-form-group textarea,
.ds-form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.ds-form-group input::placeholder,
.ds-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ds-form-group input:focus,
.ds-form-group textarea:focus {
  border-color: var(--ds-cyan-light);
  background: rgba(255, 255, 255, 0.12);
}

.ds-form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.ds-form-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.ds-form-captcha img {
  border-radius: 6px;
  height: 40px;
  width: auto;
  cursor: pointer;
}

.ds-form-captcha input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.ds-form-captcha input:focus {
  border-color: var(--ds-cyan-light);
}

.ds-form-submit {
  width: 100%;
  background: var(--ds-cyan);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.ds-form-submit:hover {
  background: var(--ds-cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--ds-cyan-glow);
}

/* ===== FOOTER ===== */
.ds-footer {
  background: #060d1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0 1.5rem;
}

.ds-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.ds-footer-brand p {
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.ds-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ds-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.ds-footer-links a:hover {
  color: var(--ds-cyan-light);
}

.ds-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.ds-footer-bottom p {
  font-size: 12px;
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== ANIMATIONS ===== */
@keyframes ds-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-fade-in {
  animation: ds-fade-in 0.6s ease forwards;
}

@media (hover: hover) {
  .ds-benefit-item:hover,
  .ds-domain-card:hover,
  .ds-func-card:hover {
    cursor: pointer;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ds-final-cta {
    padding: 3rem 1rem;
    overflow-x: hidden;
  }

  .ds-cta-box {
    gap: 2rem;
  }

  .ds-cta-form {
    padding: 1.25rem;
    overflow: hidden;
  }

  .ds-cta-form h3 {
    font-size: 1rem;
  }

  .ds-form-grid {
    grid-template-columns: 1fr;
  }

  .ds-cta-content h2 {
    font-size: 1.4rem;
  }

  .ds-cta-content p {
    font-size: 0.95rem;
  }

  .ds-form-group {
    width: 100%;
  }

  .ds-form-group input,
  .ds-form-group textarea,
  .ds-form-group select {
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .ds-hero-title {
    font-size: 2.5rem;
  }

  .ds-timeline-horizontal {
    flex-direction: column;
    gap: 2rem;
  }

  .ds-timeline-item {
    min-width: auto;
    width: 100%;
  }

  .ds-tl-num {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    text-align: left;
    position: relative;
  }

  .ds-tl-num::after {
    bottom: 5px;
    right: -15px;
    left: auto;
    transform: none;
  }

  .ds-tl-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ds-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .ds-hero-btns .ds-btn-primary,
  .ds-hero-btns .ds-btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }

  .ds-form-captcha {
    flex-direction: column;
    align-items: flex-start;
  }

  .ds-form-captcha img {
    width: 100%;
    height: auto;
    max-width: 200px;
  }

  .ds-form-captcha input[name="captcha"] {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .ds-deploy-options {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .ds-deploy-opt {
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
  }

  .ds-deploy-opt svg {
    margin-bottom: 0.75rem;
  }

  .ds-deploy-opt strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .ds-deploy-opt span {
    font-size: 14px;
  }

  .ds-deploy-sep {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ds-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding: 0.5rem 0;
  }

  .ds-deploy-sep::before,
  .ds-deploy-sep::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--ds-cyan);
    margin: 0.5rem auto;
  }
}

.ds-cta-form *,
.ds-form-group * {
  box-sizing: border-box;
}

.ds-form-captcha input[name="captcha"] {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}