/* ==========================================================================
   IAM Digital Business Kit — Dedicated Stylesheet
   Harmonized with IAM Brand Design System (Variables, Components, Typography)
   Fonts: Plus Jakarta Sans (Headings, Buttons, Tags) + Inter (Body, Inputs, Lists)
   ========================================================================== */

/* Page Wrapper */
.dbk-page {
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  padding-top: var(--header-height, 72px);
  color: var(--color-text, #0f172a);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dbk-page h1,
.dbk-page h2,
.dbk-page h3,
.dbk-page h4,
.dbk-page h5,
.dbk-page h6 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif);
  font-weight: 700;
  color: var(--color-text, #0f172a);
  letter-spacing: -0.015em;
}

/* Common Gradient Text */
.dbk-gradient-text {
  background: linear-gradient(135deg, var(--color-primary, #0a90ea) 0%, #005bb5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Section Header Badge */
.dbk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(10, 144, 234, 0.08);
  border: 1px solid rgba(10, 144, 234, 0.22);
  border-radius: 9999px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary, #0a90ea);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Standard Section Heading */
.dbk-section-head {
  max-width: 740px;
  margin-bottom: 52px;
}

.dbk-section-head.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dbk-section-head h2 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--color-text, #0f172a);
  margin: 12px 0 16px;
}

.dbk-section-head p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--color-text-muted, #64748b);
  line-height: 1.68;
  margin: 0;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.dbk-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 92px;
  background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 60%, #e6f3fc 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.dbk-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 144, 234, 0.14) 0%, rgba(10, 144, 234, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.dbk-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.dbk-hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dbk-hero__content h1 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: var(--color-text, #0f172a);
  margin: 16px 0 20px;
}

.dbk-hero__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.72;
  color: var(--color-text-secondary, #334155);
  margin-bottom: 34px;
  max-width: 580px;
}

.dbk-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 42px;
}

/* Standard Brand Buttons */
.dbk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.dbk-btn--primary {
  background: linear-gradient(135deg, var(--color-primary, #0a90ea) 0%, #0070bb 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(10, 144, 234, 0.28);
}

.dbk-btn--primary:hover {
  background: linear-gradient(135deg, #0284c7 0%, #005a96 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 144, 234, 0.36);
  color: #ffffff;
}

.dbk-btn--accent {
  background: linear-gradient(135deg, var(--color-accent, #f59e0b) 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.32);
}

.dbk-btn--accent:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245, 158, 11, 0.42);
  color: #ffffff;
}

.dbk-btn--outline {
  background: #ffffff;
  color: var(--color-primary, #0a90ea);
  border-color: var(--color-border, #e2e8f0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dbk-btn--outline:hover {
  background: #f8fafc;
  border-color: var(--color-primary, #0a90ea);
  transform: translateY(-2px);
  color: var(--color-primary-dark, #0070bb);
}

/* Trust Badges */
.dbk-hero__trust {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 26px;
}

.dbk-trust-item {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  color: var(--color-text-muted, #64748b);
  line-height: 1.45;
}

.dbk-trust-item strong {
  display: block;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text, #0f172a);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Hero Dashboard Visual Mockup */
.dbk-hero__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbk-dashboard {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 24px;
  box-shadow: 0 22px 55px -12px rgba(10, 144, 234, 0.16), 0 0 0 1px rgba(226, 232, 240, 0.8);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.dbk-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light, #f1f5f9);
}

.dbk-dashboard__dots {
  display: flex;
  gap: 6px;
}

.dbk-dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dbk-dashboard__dots span:nth-child(1) { background: #ef4444; }
.dbk-dashboard__dots span:nth-child(2) { background: #f59e0b; }
.dbk-dashboard__dots span:nth-child(3) { background: #10b981; }

.dbk-dashboard__url {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-muted, #64748b);
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 6px;
}

.dbk-dashboard__body {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding-top: 18px;
}

.dbk-dashboard__sidebar {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dbk-sidebar-item {
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
}

.dbk-sidebar-item.active {
  background: linear-gradient(90deg, var(--color-primary, #0a90ea), #0070bb);
  width: 75%;
}

.dbk-dashboard__main-card {
  background: linear-gradient(135deg, #0a90ea 0%, #0070bb 60%, #024370 100%);
  border-radius: 18px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 144, 234, 0.25);
}

.dbk-dashboard__main-card small {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.dbk-dashboard__main-card h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 20px;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.dbk-dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 10px;
}

.dbk-dashboard__bars i {
  flex: 1;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 4px 4px 2px 2px;
  transition: all 0.3s ease;
}

.dbk-dashboard__bars i:nth-child(1) { height: 42%; }
.dbk-dashboard__bars i:nth-child(2) { height: 68%; }
.dbk-dashboard__bars i:nth-child(3) { height: 55%; }
.dbk-dashboard__bars i:nth-child(4) { height: 92%; background: #ffffff; box-shadow: 0 0 12px rgba(255, 255, 255, 0.6); }
.dbk-dashboard__bars i:nth-child(5) { height: 78%; }

/* Floating Badges */
.dbk-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 12px 18px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text, #0f172a);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  z-index: 2;
  animation: dbkFloat 4s ease-in-out infinite alternate;
}

.dbk-float-badge.pos-top-right {
  top: 15px;
  right: -15px;
}

.dbk-float-badge.pos-bottom-left {
  bottom: 20px;
  left: -15px;
  animation-delay: -2s;
}

.dbk-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.dbk-float-icon.blue {
  background: rgba(10, 144, 234, 0.12);
  color: var(--color-primary, #0a90ea);
}

.dbk-float-icon.green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

@keyframes dbkFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   2. SERVICES SECTION (9 SERVICES)
   ========================================================================== */
.dbk-services-section {
  padding: 96px 0;
  background: #ffffff;
}

.dbk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dbk-service-card {
  background: #ffffff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
}

.dbk-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 144, 234, 0.45);
  box-shadow: 0 20px 40px -8px rgba(10, 144, 234, 0.14);
}

.dbk-service-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-light, #f1f5f9);
  margin-bottom: 18px;
  min-height: 74px;
}

.dbk-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf5ff 0%, #f0f7ff 100%);
  border: 1px solid rgba(10, 144, 234, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0a90ea);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 144, 234, 0.08);
}

.dbk-service-card__icon svg {
  width: 26px;
  height: 26px;
}

.dbk-service-card__title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text, #0f172a);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.dbk-service-card__scope-tag {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-primary, #0a90ea);
  background: rgba(10, 144, 234, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  display: inline-block;
  align-self: flex-start;
  height: 24px;
  line-height: 16px;
}

.dbk-service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
  min-height: 196px;
  display: flex;
  flex-direction: column;
}

.dbk-service-card__list li {
  font-family: var(--font-body, 'Inter', sans-serif);
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.58;
  color: var(--color-text-secondary, #334155);
}

.dbk-service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 800;
  font-size: 14px;
}

.dbk-service-card__benefit {
  margin-top: auto;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border-radius: 12px;
  padding: 14px 16px;
  border-left: 3.5px solid var(--color-primary, #0a90ea);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-secondary, #334155);
  box-sizing: border-box;
}

.dbk-service-card__benefit strong {
  display: block;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary-dark, #0070bb);
  margin-bottom: 6px;
}

/* ==========================================================================
   3. WHY IAM SECTION (DARK THEME)
   ========================================================================== */
.dbk-why-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #09172e 0%, #0d284f 60%, #024370 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dbk-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 144, 234, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.dbk-why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dbk-why-section .dbk-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #7dd3fc;
}

.dbk-why-section h2 {
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.dbk-why-section p {
  font-family: var(--font-body, 'Inter', sans-serif);
  color: #cbd5e1;
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}

.dbk-why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dbk-why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dbk-why-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(125, 211, 252, 0.45);
  transform: translateY(-4px);
}

.dbk-why-item__num {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.dbk-why-item h3 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.35;
}

.dbk-why-item span {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  line-height: 1.62;
  color: #94a3b8;
  display: block;
}

/* ==========================================================================
   4. PACKAGES SECTION (4 TIERS)
   ========================================================================== */
.dbk-packages-section {
  padding: 96px 0;
  background: #f8fafc;
}

.dbk-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.dbk-package-card {
  background: #ffffff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: 22px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.dbk-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(10, 144, 234, 0.16);
}

.dbk-package-card.popular {
  border: 2px solid var(--color-primary, #0a90ea);
  box-shadow: 0 16px 36px -8px rgba(10, 144, 234, 0.22);
}

.dbk-package-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--color-accent, #f59e0b), #d97706);
  color: #ffffff;
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.dbk-package-card h3 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-text, #0f172a);
  margin: 4px 0 8px;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.dbk-package-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  color: var(--color-text-muted, #64748b);
  min-height: 48px;
  line-height: 1.55;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.dbk-package-features {
  list-style: none;
  padding: 18px 0 0 0;
  margin: 0 0 26px 0;
  flex-grow: 1;
  min-height: 180px;
  border-top: 1px solid var(--color-border-light, #f1f5f9);
}

.dbk-package-features li {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-secondary, #334155);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.dbk-package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary, #0a90ea);
  font-weight: 800;
  font-size: 14px;
}

.dbk-package-card .dbk-btn {
  width: 100%;
  margin-top: auto;
  padding: 13px 20px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  height: 48px;
}

/* ==========================================================================
   5. PROCESS SECTION (4 STEPS)
   ========================================================================== */
.dbk-process-section {
  padding: 96px 0;
  background: #ffffff;
}

.dbk-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.dbk-step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dbk-step-item::after {
  content: '';
  height: 2px;
  background: var(--color-border, #e2e8f0);
  position: absolute;
  top: 26px;
  left: 50%;
  width: calc(100% + 32px);
  z-index: 0;
}

.dbk-step-item:last-child::after {
  display: none;
}

.dbk-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary, #0a90ea), #0070bb);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #ffffff, 0 6px 18px rgba(10, 144, 234, 0.28);
  margin-bottom: 20px;
}

.dbk-step-item h3 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text, #0f172a);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.dbk-step-item p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14px;
  line-height: 1.62;
  color: var(--color-text-muted, #64748b);
  margin: 0;
  max-width: 250px;
}

/* ==========================================================================
   6. CONTACT & LEAD FORM SECTION
   ========================================================================== */
.dbk-contact-section {
  padding: 88px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.dbk-contact-card {
  background: linear-gradient(135deg, #0a90ea 0%, #006eb8 55%, #024775 100%);
  border-radius: 28px;
  padding: 46px 48px 36px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 25px 60px -15px rgba(10, 144, 234, 0.32);
  position: relative;
  overflow: hidden;
}

.dbk-contact-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.dbk-contact-info .dbk-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dbk-contact-info h2 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}

.dbk-contact-info p {
  font-family: var(--font-body, 'Inter', sans-serif);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  line-height: 1.65;
}

.dbk-contact-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0 30px;
}

.dbk-contact-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dbk-check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.dbk-check-text {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.55;
  flex: 1;
}

.dbk-direct-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  align-items: center;
}

.dbk-direct-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dbk-direct-item strong {
  display: block;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e0f2fe;
  opacity: 0.95;
  margin-bottom: 2px;
}

.dbk-direct-item a {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.dbk-direct-item a:hover {
  color: #fef08a;
}

/* Form Container */
.dbk-lead-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 30px;
  color: var(--color-text, #0f172a);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dbk-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dbk-form-field.full {
  grid-column: 1 / -1;
}

.dbk-form-field label {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
}

.dbk-form-field label span.req {
  color: #ef4444;
  margin-left: 3px;
}

.dbk-form-field input,
.dbk-form-field select,
.dbk-form-field textarea {
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14.5px;
  line-height: 1.5;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.dbk-form-field input,
.dbk-form-field select {
  height: 44px;
  padding: 0 14px;
}

.dbk-form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234B5563' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
}

.dbk-form-field textarea {
  padding: 11px 14px;
  height: auto;
  min-height: 84px;
  max-height: 140px;
  resize: vertical;
}

.dbk-form-field input:hover,
.dbk-form-field select:hover,
.dbk-form-field textarea:hover {
  border-color: #9CA3AF;
}

.dbk-form-field input:focus,
.dbk-form-field select:focus,
.dbk-form-field textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  outline: none;
}

.dbk-privacy-checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
  margin-top: 4px;
}

.dbk-privacy-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: #2563EB;
  cursor: pointer;
  border-radius: 4px;
}

.dbk-privacy-checkbox label {
  cursor: pointer;
  color: #374151;
}

.dbk-privacy-checkbox a {
  color: #2563EB;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dbk-privacy-checkbox a:hover {
  color: #1d4ed8;
}

.dbk-form-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.dbk-form-submit .dbk-btn {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--color-accent, #ff8c00);
  color: #ffffff;
  border: none;
  border-radius: 11px;
  box-shadow: 0 4px 14px 0 rgba(255, 140, 0, 0.39);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dbk-form-submit .dbk-btn:hover:not(:disabled) {
  background: var(--color-accent-light, #ff9f1c);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent, 0 10px 24px rgba(255, 140, 0, 0.32));
}

.dbk-form-submit .dbk-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.22);
}

.dbk-form-submit .dbk-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.dbk-form-status {
  grid-column: 1 / -1;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 6px;
}

.dbk-form-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.dbk-form-status.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .dbk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbk-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbk-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dbk-contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .dbk-hero {
    padding: 48px 0 64px;
  }

  .dbk-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dbk-hero__visual {
    min-height: 380px;
  }

  .dbk-dashboard {
    max-width: 100%;
  }

  .dbk-float-badge.pos-top-right {
    right: 0;
    top: 0;
  }

  .dbk-float-badge.pos-bottom-left {
    left: 0;
    bottom: 0;
  }

  .dbk-services-section,
  .dbk-why-section,
  .dbk-packages-section,
  .dbk-process-section,
  .dbk-contact-section {
    padding: 64px 0;
  }

  .dbk-section-head {
    margin-bottom: 38px;
  }

  .dbk-services-grid {
    grid-template-columns: 1fr;
  }

  .dbk-why-features {
    grid-template-columns: 1fr;
  }

  .dbk-packages-grid {
    grid-template-columns: 1fr;
  }

  .dbk-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dbk-step-item::after {
    display: none;
  }

  .dbk-lead-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .dbk-form-field {
    grid-column: 1 / -1;
  }

  .dbk-contact-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .dbk-hero__trust {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .dbk-service-card__top,
  .dbk-service-card__title,
  .dbk-service-card__list,
  .dbk-service-card__benefit,
  .dbk-package-card h3,
  .dbk-package-desc,
  .dbk-package-features {
    min-height: auto;
  }
}
