/* ========================================================
   DOOSIX AGENCY CORE DESIGN SYSTEM & UTILITY CLASSES
   ======================================================== */
:root {
  --ds-primary: #0F172A;
  --ds-accent: #2563EB;
  --ds-accent-gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --ds-accent-light: #EFF6FF;
  --ds-text: #475569;
  --ds-text-dark: #0F172A;
  --ds-bg-light: #F8FAFC;
  --ds-border: rgba(226, 232, 240, 0.9);
  --ds-border-focus: rgba(37, 99, 235, 0.4);
  --ds-radius-lg: 20px;
  --ds-radius: 16px;
  --ds-radius-sm: 8px;
}

body, .entry-content, .ds-container {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: var(--ds-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.entry-title, .entry-header { display: none !important; }
.site-content { padding-top: 0 !important; }
#primary, .site-content, .ast-plain-container.ast-no-sidebar #primary, .ast-separate-container #primary {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.ast-container { max-width: 1240px !important; margin: 0 auto !important; padding: 0 20px !important; }

.ds-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
}

.ds-dot-bg {
  background-image: radial-gradient(rgba(148, 163, 184, 0.25) 1px, transparent 1px);
  background-size: 24px 24px;
}

.ds-hero {
  text-align: center;
  padding: 35px 20px 50px;
  position: relative;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 246, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--ds-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.ds-pulse-dot {
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  animation: dsPulse 2s infinite;
}

@keyframes dsPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.ds-hero-title {
  font-size: 52px !important;
  font-weight: 800 !important;
  color: var(--ds-text-dark) !important;
  line-height: 1.15 !important;
  max-width: 920px;
  margin: 0 auto 24px !important;
  letter-spacing: -1.2px !important;
}

.ds-gradient-text {
  background: linear-gradient(135deg, #0F172A 20%, #2563EB 80%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ds-hero-sub {
  font-size: 20px;
  color: #64748B;
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.ds-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.ds-btn-primary {
  background: var(--ds-accent-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ds-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  color: #ffffff !important;
}

.ds-btn-secondary {
  background: #ffffff;
  color: var(--ds-text-dark) !important;
  border: 1px solid var(--ds-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ds-btn-secondary:hover {
  border-color: var(--ds-accent);
  color: var(--ds-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ds-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 30px 20px;
  border-radius: var(--ds-radius-lg);
  border: 1px solid var(--ds-border);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.ds-stat-card {
  text-align: center;
  position: relative;
}

.ds-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--ds-border);
}

.ds-stat-num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ds-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
}

.ds-section {
  padding: 80px 20px;
  position: relative;
}

.ds-bg-alt {
  background: var(--ds-bg-light);
  border-radius: var(--ds-radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 70px 40px;
  margin: 40px 0;
}

.ds-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.ds-subtitle {
  display: inline-block;
  color: var(--ds-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(239, 246, 255, 0.8);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(191, 219, 254, 0.7);
}

.ds-section-title {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--ds-text-dark) !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.8px !important;
}

.ds-section-desc {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
}

.ds-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ds-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: var(--ds-radius);
  border: 1px solid var(--ds-border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.01), 0 10px 20px -5px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.08), 0 10px 15px -3px rgba(15, 23, 42, 0.03);
  border-color: var(--ds-border-focus);
}

.ds-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid rgba(191, 219, 254, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.ds-card:hover .ds-icon-box {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #ffffff;
}

.ds-card h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--ds-text-dark) !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.3px;
}

.ds-card p {
  font-size: 15px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.ds-card-step {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  font-family: monospace;
}

.ds-cta-banner {
  background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.35) 0%, rgba(15, 23, 42, 0.98) 75%), #0F172A;
  color: #ffffff;
  padding: 80px 40px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.ds-cta-title {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
  letter-spacing: -1px !important;
}

.ds-cta-desc {
  font-size: 20px;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ========================================================
   GLOBAL FOOTER & COOKIE CONSENT STYLING
   ======================================================== */
.site-footer,
#colophon,
.ast-footer-copyright,
.ast-small-footer,
.ast-builder-footer-grid-columns {
  display: none !important;
}

.ds-site-footer {
  background: #0B1120 !important;
  color: #94A3B8 !important;
  padding: 80px 20px 30px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 60px !important;
  font-size: 14px !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

.ds-footer-container {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

.ds-footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr !important;
  gap: 48px !important;
  margin-bottom: 60px !important;
}

.ds-footer-brand-col {
  padding-right: 20px !important;
}

.ds-footer-logo {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  letter-spacing: -0.5px !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
}

.ds-footer-tagline {
  color: #38BDF8 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  letter-spacing: 0.3px !important;
}

.ds-footer-bio {
  color: #94A3B8 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.ds-footer-socials {
  display: flex !important;
  gap: 12px !important;
}

.ds-footer-socials a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94A3B8 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.ds-footer-socials a:hover {
  background: #2563EB !important;
  color: #FFFFFF !important;
  border-color: #2563EB !important;
  transform: translateY(-2px) !important;
}

.ds-footer-heading {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
}

.ds-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ds-footer-links li {
  margin-bottom: 12px !important;
  list-style-type: none !important;
}

.ds-footer-links a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}

.ds-footer-links a:hover {
  color: #FFFFFF !important;
  transform: translateX(4px) !important;
}

.ds-footer-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  font-size: 14px !important;
  color: #94A3B8 !important;
}

.ds-footer-contact-item a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.ds-footer-contact-item a:hover {
  color: #38BDF8 !important;
}

.ds-footer-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(37, 99, 235, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #60A5FA !important;
  margin-top: 10px !important;
}

.ds-status-indicator {
  width: 7px !important;
  height: 7px !important;
  background: #10B981 !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

.ds-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 28px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  font-size: 13px !important;
}

.ds-footer-copy {
  margin: 0 !important;
  color: #94A3B8 !important;
}

.ds-footer-copy span {
  color: #CBD5E1 !important;
  margin-left: 6px !important;
}

.ds-footer-legal {
  display: flex !important;
  gap: 20px !important;
}

.ds-footer-legal a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.ds-footer-legal a:hover {
  color: #38BDF8 !important;
}

/* Cookie Consent & DPDP Banner */
#ds-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 999999;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .ds-grid-4, .ds-grid-3, .ds-stats-grid, .ds-footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .ds-site-footer {
    padding: 50px 16px 24px !important;
    margin-top: 40px !important;
  }
  .ds-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .ds-footer-brand-col {
    padding-right: 0 !important;
  }
  .ds-footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .ds-footer-legal {
    justify-content: center !important;
  }
  #ds-cookie-banner {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    max-width: 100% !important;
  }
}