/* =========================================================
   DCC Smart Service Pages Pro — Frontend CSS v1.2.5
   ========================================================= */

/* ── Base Reset ──────────────────────────────────────────── */
.dcc-custom-page-shell,
.dcc-custom-page-shell * { box-sizing: border-box; }

.dcc-custom-page-shell {
  --dcc-primary:    #3157f6;
  --dcc-secondary:  #111827;
  --dcc-accent:     #22c55e;
  --dcc-soft:       #f6f8ff;
  --dcc-card-r:     24px;
  --dcc-btn-r:      14px;
  --dcc-font:       Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dcc-text:       #111827;
  --dcc-muted:      #667085;
  --dcc-border:     #e7eaf2;
  --dcc-white:      #fff;
  --dcc-shadow-sm:  0 2px 8px rgba(17,24,39,.06);
  --dcc-shadow-md:  0 14px 34px rgba(17,24,39,.08);
  --dcc-shadow-lg:  0 28px 70px rgba(17,24,39,.13);
  --dcc-primary-glow: rgba(49,87,246,.22);
  --dcc-accent-glow:  rgba(34,197,94,.14);
  font-family: var(--dcc-font);
  color: var(--dcc-text);
  line-height: 1.65;
  background: #fff;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

.dcc-custom-page-shell a { text-decoration: none; transition: all .22s ease; }
.dcc-custom-page-shell img { max-width: 100%; height: auto; display: block; }

.dcc-container { width: min(1180px, 94%); margin: 0 auto; }
.dcc-section   { padding: 88px 0; }
.dcc-soft-bg   { background: var(--dcc-soft); }
.dcc-white-bg  { background: var(--dcc-white); }

/* ── Header ──────────────────────────────────────────────── */
.dcc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(231,234,242,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 4px 24px rgba(17,24,39,.05);
  transition: box-shadow .3s ease;
}
.dcc-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  padding: 10px 0;
}
.dcc-logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--dcc-secondary); font-weight: 900; letter-spacing: -.02em; min-width: 0;
  flex-shrink: 0;
}
.dcc-logo:hover { color: var(--dcc-primary); transform: translateY(-1px); }
.dcc-logo-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--dcc-primary), #6f8cff);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px var(--dcc-primary-glow); flex: 0 0 auto; font-weight: 900;
}
.dcc-logo-text { font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 360px; }

/* Nav */
.dcc-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.dcc-nav a {
  color: #344054; font-size: 15px; font-weight: 700;
  padding: 9px 13px; border-radius: 999px; white-space: nowrap;
}
.dcc-nav a:hover { color: var(--dcc-primary); background: rgba(49,87,246,.08); transform: translateY(-1px); }
.dcc-nav .dcc-nav-cta {
  background: var(--dcc-secondary); color: #fff !important;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17,24,39,.18);
}
.dcc-nav .dcc-nav-cta:hover {
  background: var(--dcc-primary); color: #fff !important;
  box-shadow: 0 14px 32px var(--dcc-primary-glow);
}
.dcc-nav-check { display: none !important; }
.dcc-nav-toggle {
  display: none !important;
  width: 46px; height: 46px;
  border: 1px solid var(--dcc-border); border-radius: 14px;
  align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; cursor: pointer; background: #fff; box-shadow: var(--dcc-shadow-sm);
  flex-shrink: 0;
  margin-left: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.dcc-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--dcc-secondary); border-radius: 20px; transition: .22s ease; }

/* ── Buttons ─────────────────────────────────────────────── */
.dcc-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 50px; padding: 13px 24px;
  border-radius: var(--dcc-btn-r); font-weight: 800; font-size: 15px; line-height: 1;
  border: 1px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  isolation: isolate;
}
.dcc-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 75%);
  transform: translateX(-120%); transition: transform .5s ease; z-index: -1;
}
.dcc-btn:hover::before { transform: translateX(120%); }
.dcc-btn:hover { transform: translateY(-2px); }
.dcc-btn:active { transform: translateY(0); }
.dcc-btn-primary {
  background: linear-gradient(135deg, var(--dcc-primary), #1736bd);
  color: #fff !important; box-shadow: 0 14px 32px var(--dcc-primary-glow);
}
.dcc-btn-primary:hover { box-shadow: 0 20px 44px rgba(49,87,246,.34); color: #fff !important; }
.dcc-btn-secondary {
  background: #fff; color: var(--dcc-secondary) !important;
  border-color: var(--dcc-border); box-shadow: var(--dcc-shadow-sm);
}
.dcc-btn-secondary:hover { color: var(--dcc-primary) !important; border-color: rgba(49,87,246,.3); box-shadow: var(--dcc-shadow-md); }
.dcc-btn-ghost {
  background: rgba(255,255,255,.8); color: var(--dcc-secondary) !important;
  border-color: rgba(49,87,246,.2); box-shadow: 0 8px 22px rgba(17,24,39,.06);
}
.dcc-btn-ghost:hover { color: var(--dcc-primary) !important; border-color: var(--dcc-primary); background: #fff; }
.dcc-btn-light { background: #fff; color: var(--dcc-primary) !important; box-shadow: 0 14px 32px rgba(17,24,39,.14); }
.dcc-btn-light:hover { box-shadow: 0 20px 42px rgba(17,24,39,.2); color: var(--dcc-primary) !important; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.dcc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid rgba(49,87,246,.18);
  border-radius: 999px; background: rgba(255,255,255,.85);
  color: var(--dcc-primary); font-size: 13px; font-weight: 800;
  margin-bottom: 18px; box-shadow: 0 8px 22px rgba(17,24,39,.06);
  letter-spacing: .01em;
}
.dcc-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--dcc-accent); box-shadow: 0 0 0 4px var(--dcc-accent-glow);
  flex-shrink: 0;
}
.dcc-eyebrow-dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; box-shadow: none; }

/* ── Hero ────────────────────────────────────────────────── */
.dcc-hero {
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 5% 5%, rgba(49,87,246,.12), transparent),
    radial-gradient(ellipse 55% 50% at 95% 95%, rgba(34,197,94,.1), transparent),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(49,87,246,.06), transparent),
    linear-gradient(160deg, #f8faff 0%, #fff 50%, #eef4ff 100%);
}
.dcc-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.dcc-hero h1, .dcc-simple-hero h1 {
  font-size: clamp(38px, 5.2vw, 68px); line-height: 1.02;
  margin: 0 0 18px; letter-spacing: -.045em; color: var(--dcc-secondary);
}
.dcc-hero p, .dcc-simple-hero p {
  font-size: 18px; color: var(--dcc-muted); max-width: 700px; margin: 0 0 30px;
}
.dcc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Illustration */
.dcc-hero-illustration {
  position: relative; min-height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.dcc-hero-illustration svg { width: 100%; max-width: 520px; height: auto; }
.dcc-hero-illustration .dcc-float-1 { animation: dcc-float-a 4s ease-in-out infinite; }
.dcc-hero-illustration .dcc-float-2 { animation: dcc-float-b 5s ease-in-out infinite .8s; }
.dcc-hero-illustration .dcc-float-3 { animation: dcc-float-a 6s ease-in-out infinite 1.4s; }
.dcc-hero-illustration .dcc-badge { animation: dcc-float-b 4.5s ease-in-out infinite 2s; }

@keyframes dcc-float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes dcc-float-b {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

/* ── Simple Hero ─────────────────────────────────────────── */
.dcc-simple-hero {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(49,87,246,.11), transparent),
    linear-gradient(150deg, #f8faff 0%, #fff 55%, #edf3ff 100%);
}
.dcc-simple-hero p { margin-bottom: 0; }

/* ── Section Head ────────────────────────────────────────── */
.dcc-section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.dcc-section-head h2 {
  font-size: clamp(30px, 4vw, 48px); line-height: 1.1;
  margin: 0 0 12px; letter-spacing: -.035em; color: var(--dcc-secondary);
}
.dcc-section-head p { font-size: 17px; color: var(--dcc-muted); margin: 0; }

/* ── Stats Bar ───────────────────────────────────────────── */
.dcc-stats-bar { padding: 30px 0; background: var(--dcc-secondary); }
.dcc-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.dcc-stat-item { padding: 18px 10px; position: relative; }
.dcc-stat-item + .dcc-stat-item::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.15);
}
.dcc-stat-number {
  display: block; font-size: 36px; font-weight: 950; line-height: 1;
  color: #fff; letter-spacing: -.04em; margin-bottom: 4px;
}
.dcc-stat-label { font-size: 13px; color: #8fa4c8; font-weight: 600; }

/* ── Cards ───────────────────────────────────────────────── */
.dcc-card, .dcc-contact-card, .dcc-service-card, .dcc-form-card, .dcc-legal-card {
  background: #fff; border: 1px solid var(--dcc-border);
  border-radius: var(--dcc-card-r); box-shadow: var(--dcc-shadow-md);
}
.dcc-card {
  padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dcc-card:hover, .dcc-service-card:hover, .dcc-contact-card:hover {
  transform: translateY(-5px); box-shadow: 0 26px 56px rgba(17,24,39,.11);
  border-color: rgba(49,87,246,.25);
}
.dcc-card h2, .dcc-card h3, .dcc-contact-card h3,
.dcc-service-card h2, .dcc-form-card h2, .dcc-legal-card h2 {
  color: var(--dcc-secondary); line-height: 1.2; letter-spacing: -.02em; margin: 0 0 10px;
}
.dcc-card h2 { font-size: 28px; } .dcc-card h3 { font-size: 20px; }
.dcc-card p, .dcc-contact-card p, .dcc-service-card p,
.dcc-form-card p, .dcc-legal-card p { margin: 0; color: var(--dcc-muted); }
.dcc-large-card p + p { margin-top: 12px; }

/* Icon on cards */
.dcc-card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.dcc-card-icon svg { width: 26px; height: 26px; }
.dcc-icon-blue  { background: rgba(49,87,246,.1);  color: var(--dcc-primary); }
.dcc-icon-green { background: rgba(34,197,94,.12); color: var(--dcc-accent); }
.dcc-icon-dark  { background: rgba(17,24,39,.08);  color: var(--dcc-secondary); }
.dcc-icon-purple { background: rgba(139,92,246,.1); color: #8b5cf6; }
.dcc-icon-orange { background: rgba(249,115,22,.1); color: #f97316; }

/* Step cards */
.dcc-step-number {
  width: 50px; height: 50px; border-radius: 16px;
  background: rgba(49,87,246,.1); color: var(--dcc-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 950; font-size: 22px; margin-bottom: 20px; padding: 10px !important;
}

/* ── Grids ───────────────────────────────────────────────── */
.dcc-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.dcc-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.dcc-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.dcc-split  { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }

/* ── Dark Panel ──────────────────────────────────────────── */
.dcc-dark-panel {
  background: radial-gradient(circle at top right, rgba(49,87,246,.35), transparent 45%),
              linear-gradient(145deg, var(--dcc-secondary), #1d2940);
  color: #fff; border-radius: 28px; padding: 40px;
  box-shadow: 0 24px 64px rgba(17,24,39,.22);
}
.dcc-dark-panel h2 {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.12;
  letter-spacing: -.035em; margin: 0 0 14px; color: #fff;
}
.dcc-dark-panel p { color: #c8d4e8; margin: 0 0 14px; }

.dcc-card-stack { display: grid; gap: 16px; }
.dcc-mini-feature {
  padding: 20px 22px; border: 1px solid var(--dcc-border); border-radius: 20px;
  background: #fff; box-shadow: var(--dcc-shadow-sm); display: flex; align-items: flex-start; gap: 14px;
}
.dcc-mini-feature-icon {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dcc-mini-feature-icon svg { width: 20px; height: 20px; }
.dcc-mini-feature-body { display: grid; gap: 2px; }
.dcc-mini-feature strong { color: var(--dcc-secondary); font-size: 16px; }
.dcc-mini-feature span  { color: var(--dcc-muted); font-size: 14px; }

/* ── Price ───────────────────────────────────────────────── */
.dcc-price {
  font-size: 30px; font-weight: 950; color: var(--dcc-primary);
  margin: 18px 0; letter-spacing: -.04em;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.dcc-faq { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.dcc-faq-item {
  background: #fff; border: 1px solid var(--dcc-border);
  border-radius: 18px; overflow: hidden; box-shadow: var(--dcc-shadow-sm);
  transition: box-shadow .22s ease;
}
.dcc-faq-item:hover { box-shadow: var(--dcc-shadow-md); }
.dcc-faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-weight: 800; color: var(--dcc-secondary); position: relative;
  user-select: none; padding-right: 52px;
}
.dcc-faq-item summary::-webkit-details-marker { display: none; }
.dcc-faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); color: var(--dcc-primary); font-size: 22px; font-weight: 900;
  transition: transform .22s ease;
}
.dcc-faq-item[open] summary::after { content: "–"; }
.dcc-faq-item p { padding: 0 22px 22px; margin: 0; color: var(--dcc-muted); }

/* ── CTA Block ───────────────────────────────────────────── */
.dcc-final-cta {
  background: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255,255,255,.18), transparent),
              linear-gradient(140deg, var(--dcc-primary), #1430a0);
  color: #fff; border-radius: 32px; padding: 58px 48px; text-align: center;
  box-shadow: 0 28px 72px rgba(49,87,246,.3); position: relative; overflow: hidden;
}
.dcc-final-cta::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.dcc-final-cta::after {
  content: ""; position: absolute; bottom: -80px; left: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(34,197,94,.08); pointer-events: none;
}
.dcc-final-cta h2 {
  font-size: clamp(30px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -.035em; margin: 0 0 14px; color: #fff;
  position: relative; z-index: 1;
}
.dcc-final-cta p { max-width: 680px; margin: 0 auto 26px; color: #d6e4ff; font-size: 17px; position: relative; z-index: 1; }
.dcc-final-cta .dcc-btn { position: relative; z-index: 1; }

/* ── Trust Row ───────────────────────────────────────────── */
.dcc-trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 0;
  margin-top: 28px;
}
@media (max-width: 920px) {
  .dcc-trust-row {
    justify-content: center;
  }
}
.dcc-trust-item { display: flex; align-items: center; gap: 8px; color: var(--dcc-muted); font-size: 14px; font-weight: 600; }
.dcc-trust-item svg { width: 18px; height: 18px; color: var(--dcc-accent); flex-shrink: 0; }

/* ── Contact ─────────────────────────────────────────────── */
.dcc-contact-card { padding: 26px; }
.dcc-contact-card .dcc-card-icon { margin-bottom: 14px; }
.dcc-contact-card h3 { font-size: 17px; }
.dcc-contact-card a { color: var(--dcc-muted); }
.dcc-contact-card a:hover { color: var(--dcc-primary); }
.dcc-contact-split { align-items: start; margin-top: 36px; }
.dcc-form-card { padding: 34px; background: linear-gradient(180deg, #fff, var(--dcc-soft)); }
.dcc-alert { padding: 14px 16px; border-radius: 14px; margin: 0 0 20px; font-weight: 700; }
.dcc-alert-success { background: rgba(34,197,94,.12); color: #137a3a; border: 1px solid rgba(34,197,94,.25); }
.dcc-alert-error   { background: rgba(239,68,68,.1);  color: #b42318; border: 1px solid rgba(239,68,68,.22); }
.dcc-contact-form { margin-top: 20px; }
.dcc-field { display: grid; gap: 7px; margin-bottom: 16px; }
.dcc-field label { font-size: 14px; font-weight: 800; color: var(--dcc-secondary); }
.dcc-field input, .dcc-field textarea {
  width: 100%; border: 1px solid var(--dcc-border); border-radius: 14px;
  padding: 13px 16px; font: inherit; background: #fff; color: var(--dcc-secondary);
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.dcc-field input:focus, .dcc-field textarea:focus {
  border-color: rgba(49,87,246,.5); box-shadow: 0 0 0 4px rgba(49,87,246,.1);
}
.dcc-field textarea { min-height: 150px; resize: vertical; }
.dcc-form-note { font-size: 13px !important; margin-top: 12px !important; color: #8a94a6 !important; }
.dcc-hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
  opacity: 0 !important; pointer-events: none !important;
}
.dcc-contact-form { position: relative; }

/* ── Services Page ───────────────────────────────────────── */
.dcc-services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px; align-items: stretch;
}
.dcc-service-card {
  padding: 28px; display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dcc-service-card h2 { font-size: 22px; }
.dcc-service-desc { margin-bottom: 16px !important; font-size: 15px; }
.dcc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dcc-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--dcc-muted); font-size: 14px; }
.dcc-list li .dcc-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,.12); color: var(--dcc-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 20px; font-size: 11px; font-weight: 950; margin-top: 1px;
}
.dcc-service-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--dcc-border); }
.dcc-service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--dcc-muted);
  margin-bottom: 12px;
}
.dcc-service-badge svg { width: 14px; height: 14px; }
.dcc-note-box {
  margin-top: 30px; border: 1px solid var(--dcc-border); border-radius: 20px;
  background: var(--dcc-soft); padding: 22px; color: var(--dcc-muted);
  display: flex; align-items: flex-start; gap: 12px;
}
.dcc-note-box svg { width: 20px; height: 20px; color: var(--dcc-primary); flex-shrink: 0; margin-top: 1px; }

/* ── Legal ───────────────────────────────────────────────── */
.dcc-legal-container { max-width: 960px; }
.dcc-legal-card { padding: 40px; }
.dcc-legal-card h2 { font-size: 24px; margin-top: 36px; }
.dcc-legal-card h2:first-child { margin-top: 0; }
.dcc-legal-card p { font-size: 16px; line-height: 1.75; }

/* ── About Illustration ──────────────────────────────────── */
.dcc-about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.dcc-about-visual svg { width: 100%; max-width: 480px; height: auto; }

/* ── Values image card ───────────────────────────────────── */
.dcc-image-card {
  border-radius: var(--dcc-card-r); overflow: hidden;
  position: relative; min-height: 320px;
  background: linear-gradient(135deg, #1d2d50, #263c6b);
  display: flex; align-items: flex-end;
}
.dcc-image-card-visual {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.dcc-image-card-overlay {
  position: relative; z-index: 2; padding: 28px; color: #fff;
}
.dcc-image-card-overlay h3 { font-size: 22px; margin: 0 0 6px; color: #fff; }
.dcc-image-card-overlay p  { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.dcc-footer { background: var(--dcc-secondary); color: #c8d4e8; padding: 42px 0 20px; }
.dcc-footer-grid { display: grid; grid-template-columns: 1.3fr .85fr .95fr; gap: 24px; align-items: start; }
.dcc-footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dcc-footer-logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--dcc-primary), #6f8cff);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900;
}
.dcc-footer-logo-name { color: #fff; font-weight: 900; font-size: 16px; }
.dcc-footer h3 { color: #fff; margin: 0 0 10px; font-size: 17px; letter-spacing: -.01em; }
.dcc-footer-company { display: inline-block; color: #fff; font-weight: 800; }
.dcc-footer p  { margin: 0 0 6px; color: #8fa4c8; font-size: 15px; line-height: 1.55; }
.dcc-footer a  { display: block; color: #8fa4c8; margin: 0 0 6px; font-size: 15px; line-height: 1.55; transition: all .2s ease; }
.dcc-footer a:hover { color: #fff; transform: translateX(3px); }
.dcc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
  padding-top: 16px;
  color: #5c7295;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.dcc-footer-bottom a { display: inline; color: #8fa4c8; margin: 0 6px; }
.dcc-footer-bottom a:hover { color: #fff; transform: none; }
.dcc-footer-grid > div:first-child p { max-width: 430px; }

/* ── Preview Card ────────────────────────────────────────── */
.dcc-preview-card { padding: 26px; }
.dcc-preview-card h3 { font-size: 19px; }
.dcc-preview-card p  { font-size: 14px; margin-bottom: 0 !important; }

/* ── Back to top ─────────────────────────────────────────── */
.dcc-back-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 200;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--dcc-secondary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(17,24,39,.22); cursor: pointer; border: none;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .26s ease;
}
.dcc-back-top.dcc-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.dcc-back-top:hover { background: var(--dcc-primary); transform: translateY(-3px); box-shadow: 0 16px 36px var(--dcc-primary-glow); }
.dcc-back-top svg { width: 33px !important; height: 33px !important; }

/* ── Feature Card ────────────────────────────────────────── */
.dcc-feature-card { padding: 28px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dcc-grid-4        { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dcc-services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dcc-stats-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .dcc-header-inner { min-height: 68px; padding: 8px 0; }
  .dcc-nav-toggle { display: flex !important; visibility: visible; opacity: 1; pointer-events: auto; }
  .dcc-nav {
    position: absolute; top: calc(100% + 6px); left: 4%; right: 4%;
    display: grid; gap: 4px; background: #fff;
    border: 1px solid var(--dcc-border); border-radius: 20px;
    padding: 12px; box-shadow: 0 20px 56px rgba(17,24,39,.16);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 99;
  }
  .dcc-nav a { display: block; padding: 12px 14px; border-radius: 14px; }
  .dcc-nav .dcc-nav-cta { margin-top: 4px; text-align: center; border-radius: 14px; }
  .dcc-nav-check:checked ~ .dcc-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(2) { opacity: 0; }
  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .dcc-hero-grid, .dcc-split, .dcc-footer-grid { grid-template-columns: 1fr; }
  .dcc-hero-illustration { min-height: 300px; order: -1; }
  .dcc-about-visual { order: -1; }
  .dcc-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dcc-section { padding: 68px 0; }
  .dcc-hero, .dcc-simple-hero { padding: 74px 0; }
  .dcc-final-cta { padding: 44px 36px; }
  .dcc-contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .dcc-container { width: min(100% - 28px, 1180px); }
  .dcc-logo-text { max-width: 200px; }
  .dcc-hero h1, .dcc-simple-hero h1 { font-size: 36px; letter-spacing: -.03em; }
  .dcc-hero p, .dcc-simple-hero p { font-size: 16px; }
  .dcc-hero-actions { flex-direction: column; }
  .dcc-btn { width: 100%; justify-content: center; }
  .dcc-grid-3, .dcc-grid-4, .dcc-services-grid { grid-template-columns: 1fr; }
  .dcc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dcc-card, .dcc-form-card, .dcc-service-card, .dcc-legal-card, .dcc-contact-card { padding: 22px; }
  .dcc-dark-panel { padding: 28px; }
  .dcc-final-cta { padding: 34px 22px; border-radius: 24px; }
  .dcc-section { padding: 54px 0; }
  .dcc-hero-illustration { min-height: 260px; }
  .dcc-footer { padding-top: 32px; padding-bottom: 18px; }
  .dcc-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .dcc-legal-card { padding: 24px; }
  .dcc-trust-row { gap: 16px; }
  .dcc-stat-item + .dcc-stat-item::before { display: none; }
  .dcc-back-top { bottom: 18px; right: 14px; }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .dcc-hero-illustration .dcc-float-1,
  .dcc-hero-illustration .dcc-float-2,
  .dcc-hero-illustration .dcc-float-3,
  .dcc-hero-illustration .dcc-badge { animation: none; }
  .dcc-btn:hover { transform: none; }
  .dcc-card:hover, .dcc-service-card:hover, .dcc-contact-card:hover { transform: none; }
  .dcc-back-top:hover { transform: none; }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .dcc-header, .dcc-back-top, .dcc-nav-toggle { display: none !important; }
  .dcc-custom-page-shell { width: 100%; max-width: 100%; position: static; margin: 0; left: auto; right: auto; }
  .dcc-hero-illustration { display: none; }
}

/* Fix contact form submit button SVG icon */
.dcc-submit-btn {
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.dcc-submit-btn .dcc-btn-icon,
.dcc-btn svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex: 0 0 18px;
  display: inline-block;
}

/* Contact textarea stable size */
.dcc-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Extra safety: prevent any form SVG from exploding */
.dcc-contact-form svg {
  max-width: 22px;
  max-height: 22px;
}

/* ── Flatsome Theme Spacing Fix ──────────────────────────── */
/* Elimină spațiul pus de Flatsome pe .col/.columns doar pe paginile DCC */
body.dccsp-page .page-wrapper,
body.dccsp-page .page-inner,
body.dccsp-page #content,
body.dccsp-page .content-area,
body.dccsp-page .site-main,
body.dccsp-page .entry-content,
body.dccsp-page .entry-content > .row,
body.dccsp-page .entry-content > .row > .col,
body.dccsp-page .page-content,
body.dccsp-page .col,
body.dccsp-page .columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-page .dcc-custom-page-shell {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-page .dcc-footer {
  margin-bottom: 0 !important;
}

/* ── WooCommerce + Flatsome Header/Footer Integration ────── */
body.dccsp-woo-page #header,
body.dccsp-woo-page .header-wrapper,
body.dccsp-woo-page #footer,
body.dccsp-woo-page .footer-wrapper,
body.dccsp-woo-page .absolute-footer {
  display: none !important;
}

body.dccsp-woo-page .dcc-woo-header-shell,
body.dccsp-woo-page .dcc-woo-footer-shell {
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  left: 50%;
  right: 50%;
  position: relative;
}

body.dccsp-woo-page .dcc-woo-header-shell {
  z-index: 999;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-woo-page .dcc-woo-footer-shell {
  padding-top: 40px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-woo-page #wrapper,
body.dccsp-woo-page #main,
body.dccsp-woo-page .page-wrapper,
body.dccsp-woo-page .page-inner,
body.dccsp-woo-page .shop-container,
body.dccsp-woo-page .product-main,
body.dccsp-woo-page .cart-container,
body.dccsp-woo-page .checkout-page-title,
body.dccsp-woo-page .woocommerce {
  margin-top: 0 !important;
}

body.dccsp-woo-page .dcc-footer {
  margin-bottom: 0 !important;
}

body.dccsp-woo-page .dcc-woo-footer-shell .dcc-back-top {
  display: flex;
}

/* Footer payment methods */
.dcc-footer-payments {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  align-items: start;
}

.dcc-footer-payments span {
  display: block;
  color: #8fa4c8;
  font-family: var(--dcc-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.dcc-footer-payments img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 680px) {
  .dcc-footer-payments {
    margin-top: 12px;
    justify-items: start;
  }

  .dcc-footer-payments img {
    max-width: 135px;
  }
}

/* Back to top arrow size override */
.dcc-back-top svg {
  width: 25px !important;
  height: 25px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  display: block !important;
}

/* ── Header uploaded logo ───────────────────────────────── */
.dcc-logo-image-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 44px;
  background: transparent;
}

.dcc-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* When uploaded logo exists, keep header aligned cleanly */
.dcc-logo:has(.dcc-logo-image) {
  gap: 12px;
}

/* Mobile logo size */
@media (max-width: 680px) {
  .dcc-logo-image-wrap {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }
}

/* ── Header: doar logo, fara text ───────────────────────── */
.dcc-header .dcc-logo-text {
  display: none !important;
}

.dcc-header .dcc-logo {
  gap: 0 !important;
  min-width: auto !important;
}

.dcc-header .dcc-logo-image-wrap,
.dcc-header .dcc-logo-mark {
  margin-right: 0 !important;
}

/* ── Header logo bigger, only logo, no site text ─────────── */
.dcc-header .dcc-logo-text {
  display: none !important;
}

.dcc-header .dcc-logo {
  gap: 0 !important;
  min-width: auto !important;
  align-items: center !important;
}

.dcc-header .dcc-logo-image-wrap {
  width: 190px !important;
  height: 56px !important;
  flex: 0 0 190px !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.dcc-header .dcc-logo-image {
  width: 100% !important;
  height: 100% !important;
  max-width: 190px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}

/* Mobile */
@media (max-width: 680px) {
  .dcc-header .dcc-logo-image-wrap {
    width: 167px !important;
    height: 47px !important;
    flex-basis: 150px !important;
  }

  .dcc-header .dcc-logo-image {
    max-width: 167px !important;
    max-height: 47px !important;
  }
}

/* ── Terms product list ─────────────────────────────────── */
.dcc-terms-products {
  margin-top: 4px;
}

.dcc-terms-products p {
  margin: 0 0 18px !important;
  color: var(--dcc-secondary) !important;
  font-size: 16px;
  line-height: 1.65;
}

.dcc-terms-product-list {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 14px;
}

.dcc-terms-product-list li {
  color: var(--dcc-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.dcc-terms-product-link {
  color: var(--dcc-secondary) !important;
  font-weight: 800;
  text-decoration: none;
}

.dcc-terms-product-link:hover {
  color: var(--dcc-primary) !important;
}

.dcc-terms-price {
  color: var(--dcc-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.dcc-terms-separator {
  color: var(--dcc-muted);
}

@media (max-width: 680px) {
  .dcc-terms-product-list {
    padding-left: 20px;
    gap: 12px;
  }

  .dcc-terms-product-list li {
    font-size: 15px;
  }

  .dcc-terms-price {
    white-space: normal;
  }
}
