/* ===== DPM ENTERPRISE — GLOBAL STYLES ===== */
:root {
  --bg0: #050505;
  --bg1: #0a0a0a;
  --bg2: #111111;
  --bg3: #191919;
  --bg4: #222222;
  --accent: #10b981;
  --accent2: #34d399;
  --accent-dim: rgba(16, 185, 129, 0.08);
  --accent-border: rgba(16, 185, 129, 0.18);
  --accent-glow: rgba(16, 185, 129, 0.05);
  --text1: #ededeb;
  --text2: #8a8a8a;
  --text3: #555555;
  --border1: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.04);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg1);
  color: var(--text1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border1);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--text1);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.02em;
}
.nav-logo .mark {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text1); }
.nav-cta {
  padding: 8px 20px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff !important;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text1);
  position: absolute; left: 0; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 180px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  font-size: 12px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 780px; margin-left: auto; margin-right: auto;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; color: var(--text2); max-width: 520px;
  margin: 0 auto 40px; line-height: 1.7;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 12px 28px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent2); transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  color: #fff;
}
.btn-secondary {
  padding: 12px 28px; border-radius: var(--radius-sm);
  background: transparent; color: var(--text2);
  font-size: 15px; font-weight: 500;
  border: 1px solid var(--border1); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--text3); color: var(--text1); }

/* ===== TRUST BAR ===== */
.trust-bar {
  text-align: center;
  padding: 48px 24px 0;
}
.trust-bar p {
  font-size: 13px; color: var(--text3);
  letter-spacing: 0.04em; font-weight: 500;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  opacity: 0.4;
}
.trust-logos span {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--text2);
  letter-spacing: -0.01em;
}

/* ===== SECTIONS ===== */
.section { padding: 120px 24px; }
.section-alt { background: var(--bg2); }
.section-label {
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}
.section-desc {
  font-size: 17px; color: var(--text2); max-width: 560px;
  line-height: 1.7; margin-bottom: 56px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--border1);
  border-radius: var(--radius-md);
  background: var(--bg2);
}
.stat {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid var(--border1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 600;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--text3); margin-top: 8px;
  font-weight: 500;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px; font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px;
}
.service-tag {
  padding: 4px 10px; border-radius: var(--radius-sm);
  background: var(--bg4); border: 1px solid var(--border1);
  font-size: 11px; font-weight: 600; color: var(--text3);
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.process-step {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--bg3);
  border: 1px solid var(--border1);
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--accent-border); }
.process-num {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 600; color: var(--accent);
  margin-bottom: 20px;
}
.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 600; margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.portfolio-card {
  background: var(--bg2); border: 1px solid var(--border1);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.portfolio-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.portfolio-thumb {
  height: 200px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border1);
}
.portfolio-body { padding: 24px; }
.portfolio-body h3 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.portfolio-body p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.portfolio-techs { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-tech {
  padding: 3px 10px; border-radius: var(--radius-sm);
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  font-size: 11px; font-weight: 600; color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--bg3); border: 1px solid var(--border1);
  border-radius: var(--radius-md); padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--accent-border); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 24px;
  font-family: 'Outfit', serif;
  font-size: 64px; font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
}
.testimonial-card .stars { font-size: 13px; margin-bottom: 16px; color: var(--accent); letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text2); line-height: 1.75;
  font-style: normal; margin-bottom: 24px;
}
.testimonial-author { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 13px; color: var(--text3); margin-top: 2px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--bg2);
  border: 1px solid var(--border1);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 600; color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-band p { font-size: 16px; color: var(--text2); margin-bottom: 32px; position: relative; }
.btn-white {
  padding: 12px 28px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
}
.btn-white:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  color: #fff;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(16,185,129,0.04) 0%, var(--bg3) 100%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 52px; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.pricing-currency {
  font-size: 28px; font-weight: 600; vertical-align: top;
  position: relative; top: 8px; margin-right: 2px;
}
.pricing-period {
  font-size: 16px; font-weight: 500; color: var(--text3);
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 14px; color: var(--text2); line-height: 1.6;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border1);
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.pricing-features li {
  font-size: 14px; color: var(--text2);
  padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li.disabled { color: var(--text3); }
.pricing-features .check {
  color: var(--accent); font-size: 13px; font-weight: 700;
  width: 18px; flex-shrink: 0; text-align: center;
}
.pricing-features .x {
  color: var(--text3); font-size: 12px;
  width: 18px; flex-shrink: 0; text-align: center;
}
.btn-pricing {
  display: block; width: 100%; padding: 12px 0;
  border-radius: var(--radius-sm);
  background: var(--bg4); color: var(--text2);
  font-size: 14px; font-weight: 600; text-align: center;
  border: 1px solid var(--border1);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-pricing:hover { border-color: var(--text3); color: var(--text1); }
.btn-pricing.featured {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-pricing.featured:hover {
  background: var(--accent2); border-color: var(--accent2); color: #fff;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 28px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail .icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail .label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-detail .value { font-size: 15px; color: var(--text1); margin-top: 3px; }
.form-card {
  background: var(--bg2); border: 1px solid var(--border1);
  border-radius: var(--radius-md); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text2); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--bg3); border: 1px solid var(--border1);
  color: var(--text1); font-size: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert-success {
  background: rgba(52, 211, 153, 0.08); border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; color: var(--accent2);
  margin-bottom: 20px;
}
.alert-error {
  background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; color: #ef4444;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border1);
  padding: 40px 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text1); }

/* ===== ABOUT PAGE ===== */
.about-hero { padding: 160px 24px 80px; text-align: center; }
.about-content { max-width: 680px; margin: 0 auto; }
.about-content p { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 24px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 56px;
}
.value-card {
  background: var(--bg3); border: 1px solid var(--border1);
  border-radius: var(--radius-md); padding: 28px;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--accent-border); }
.value-card h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 160px 24px 60px;
  text-align: center;
}

/* ===== 404 ===== */
.not-found { padding: 200px 24px 120px; text-align: center; }
.not-found h1 { font-family: 'Outfit', sans-serif; font-size: 120px; font-weight: 800; color: var(--bg4); letter-spacing: -0.05em; }
.not-found p { font-size: 18px; color: var(--text2); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg1); padding: 32px 24px; gap: 24px; z-index: 99;
    border-top: 1px solid var(--border1);
  }
  .hamburger { display: block; }
  .hero { padding: 140px 24px 80px; }
  .hero h1 { font-size: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border1); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat:nth-child(2n) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-logos { gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border1); }
  .stat:last-child { border-bottom: none; }
}
