:root {
  --dc-bg: #f9fafb;
  --dc-bg-alt: #ffffff;
  --dc-accent: #2563eb;
  --dc-accent-soft: #e0edff;
  --dc-accent-2: #f97316;
  --dc-text-main: #111827;
  --dc-text-soft: #6b7280;
  --dc-border: #e5e7eb;
  --dc-radius-lg: 18px;
  --dc-radius-xl: 22px;
  --dc-shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #eff6ff 0, #f9fafb 35%, #f3f4f6 100%);
  color: var(--dc-text-main);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.dc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dc-section {
  padding: 4.5rem 0;
}

.dc-section-alt {
  background: #ffffff;
}

/* Header */

.dc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.dc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.dc-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.dc-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: lowercase;
  background: radial-gradient(circle at 20% 0,
      #f97316 0,
      #fb923c 35%,
      #2563eb 100%);
  color: white;
  font-size: 18px;
}

.dc-logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111827;
}

.dc-nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
}

.dc-nav-links a {
  text-decoration: none;
  color: #4b5563;
  position: relative;
  padding-bottom: 0.15rem;
  transition: color 0.18s ease;
}

.dc-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dc-accent), var(--dc-accent-2));
  transition: width 0.18s ease;
}

.dc-nav-links a:hover {
  color: #111827;
}

.dc-nav-links a:hover::after {
  width: 100%;
}

/* Buttons */

.dc-btn-primary,
.dc-nav-cta {
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
  color: #ffffff;
  background: linear-gradient(135deg, var(--dc-accent), #1d4ed8);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    filter 0.16s ease;
}

.dc-btn-primary:hover,
.dc-nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.dc-btn-ghost {
  border-radius: 999px;
  border: 1px solid var(--dc-border);
  padding: 0.6rem 1.3rem;
  font: inherit;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.16s ease, border-color 0.16s ease,
    transform 0.16s ease, box-shadow 0.16s ease;
}

.dc-btn-ghost:hover {
  background: #f3f4f6;
  border-color: #cbd5f5;
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.25);
  transform: translateY(-1px);
}

.dc-btn-full {
  width: 100%;
}

/* Mobile nav */

.dc-nav-toggle {
  display: none;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 1.1rem;
}

.dc-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.5rem 0.9rem;
  gap: 0.5rem;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.dc-nav-mobile a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
}

.dc-nav-mobile a:hover {
  color: #111827;
}

.dc-nav-mobile-open {
  display: flex;
}

/* Hero */

.dc-hero {
  padding-top: 5rem;
}

.dc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: center;
}

.dc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #1d4ed8;
  background: #e0edff;
}

.dc-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.dc-hero h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin: 1.1rem 0 0.7rem;
  color: #0f172a;
}

.dc-hero-sub {
  max-width: 33rem;
  color: var(--dc-text-soft);
  font-size: 0.98rem;
}

.dc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 1.1rem;
}

.dc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #6b7280;
}

.dc-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--dc-accent-2);
  align-self: center;
}

/* Hero image */

.dc-hero-image-wrapper {
  border-radius: var(--dc-radius-xl);
  background: #ffffff;
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow-soft);
  overflow: hidden;
  position: relative;
}

.dc-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dc-hero-image-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(17, 24, 39, 0.85);
  color: #f9fafb;
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* Trusted */

.dc-trusted {
  margin-top: 2.5rem;
}

.dc-trusted-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.dc-trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dc-logo-box {
  border-radius: 999px;
  border: 1px dashed #cbd5f5;
  background: #f3f6ff;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: #1d4ed8;
}

/* Typography helpers */

.dc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #1d4ed8;
  margin-bottom: 0.35rem;
}

h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  margin: 0.4rem 0 0.7rem;
  color: #0f172a;
}

.dc-body {
  color: var(--dc-text-soft);
  font-size: 0.96rem;
}

.dc-section-intro {
  max-width: 36rem;
}

/* Two column layout */

.dc-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2.6rem;
  align-items: center;
}

/* Image cards */

.dc-image-card {
  background: #ffffff;
  border-radius: var(--dc-radius-xl);
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow-soft);
  overflow: hidden;
}

.dc-image-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dc-image-caption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #6b7280;
  border-top: 1px solid var(--dc-border);
}

/* About bullets */

.dc-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.dc-bullets h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  color: #111827;
}

.dc-bullets p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

/* Services */

.dc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.dc-service-card {
  background: #ffffff;
  border-radius: var(--dc-radius-lg);
  border: 1px solid var(--dc-border);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--dc-shadow-soft);
  position: relative;
}

.dc-service-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--dc-accent-soft);
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.dc-service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #111827;
}

.dc-service-card p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.dc-service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Portfolio */

.dc-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 2.1rem;
}

.dc-project-card {
  background: #ffffff;
  border-radius: var(--dc-radius-lg);
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dc-project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.dc-project-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #e5e7eb;
}

.dc-project-image-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font-size: 0.76rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.dc-project-body {
  padding: 1rem 1.1rem 1.1rem;
}

.dc-project-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  color: #111827;
}

.dc-project-body p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.dc-project-meta {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #4b5563;
}

/* Contact */

.dc-contact-grid {
  align-items: start;
}

.dc-contact-image-card {
  margin: 1.4rem 0;
}

.dc-contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1rem;
}

.dc-contact-details h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  color: #111827;
}

.dc-contact-details p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
}

.dc-contact-details a {
  color: #2563eb;
  text-decoration: none;
}

.dc-contact-details a:hover {
  text-decoration: underline;
}

/* Contact form */

.dc-contact-form {
  background: #ffffff;
  padding: 1.6rem 1.4rem;
  border-radius: var(--dc-radius-lg);
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow-soft);
}

.dc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.dc-form-field label {
  font-size: 0.8rem;
  color: #4b5563;
}

.dc-form-field input,
.dc-form-field select,
.dc-form-field textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0.55rem 0.7rem;
  color: #111827;
  font: inherit;
}

.dc-form-field input:focus,
.dc-form-field select:focus,
.dc-form-field textarea:focus {
  outline: none;
  border-color: var(--dc-accent);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.dc-form-note {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  color: #9ca3af;
}

/* Footer */

.dc-footer {
  padding: 2.6rem 0 1.7rem;
  border-top: 1px solid var(--dc-border);
  background: #f9fafb;
}

.dc-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.dc-footer-logo {
  margin-bottom: 0.5rem;
}

.dc-footer-text {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
  max-width: 18rem;
}

.dc-footer h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #111827;
}

.dc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.dc-footer li + li {
  margin-top: 0.26rem;
}

.dc-footer a {
  color: #4b5563;
  text-decoration: none;
}

.dc-footer a:hover {
  color: #111827;
}

.dc-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Responsive */

@media (max-width: 960px) {
  .dc-hero-grid,
  .dc-two-col,
  .dc-services-grid,
  .dc-portfolio-grid,
  .dc-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dc-bullets {
    grid-template-columns: minmax(0, 1fr);
  }

  .dc-contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .dc-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .dc-hero {
    padding-top: 4.3rem;
  }

  .dc-hero-image {
    height: auto;
  }

  .dc-footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .dc-nav-links,
  .dc-nav-cta {
    display: none;
  }

  .dc-nav-toggle {
    display: inline-flex;
  }

  .dc-container {
    padding: 0 1.2rem;
  }

  .dc-section {
    padding: 3.5rem 0;
  }
}
