/* ==========================================================================
   DIGITAL EXCELLENCE — COMMERCIAL SERVICE / MONEY PAGE STYLES
   High-converting, buyer-focused, responsive, Core Web Vitals optimized
   ========================================================================== */

:root {
  --comm-primary: #0ea5e9;
  --comm-blue: #1d4ed8;
  --comm-text: #0f172a;
  --comm-body: #334155;
  --comm-muted: #64748b;
  --comm-border: rgba(148, 163, 184, 0.25);
  --comm-card-bg: #ffffff;
  --comm-radius: 16px;
  --comm-max-w: 1160px;
  --comm-reading-w: 860px;
}

.comm-page {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--comm-text);
  background: #fbfdff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px;
}

.comm-shell {
  max-width: var(--comm-max-w);
  margin: 0 auto;
  padding: 24px 20px 60px;
  box-sizing: border-box;
}

/* Breadcrumbs */
.comm-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--comm-muted);
  margin-bottom: 24px;
}
.comm-breadcrumbs a {
  color: var(--comm-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.comm-breadcrumbs a:hover {
  color: var(--comm-blue);
  text-decoration: underline;
}
.comm-breadcrumbs .sep { opacity: 0.5; }
.comm-breadcrumbs .current {
  color: var(--comm-text);
  font-weight: 600;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Commercial Hero */
.comm-hero {
  margin-bottom: 48px;
  padding: 36px 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(186, 230, 253, 0.6);
  box-shadow: 0 16px 40px -12px rgba(14, 165, 233, 0.08);
}
.comm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  border: 1px solid rgba(14, 165, 233, 0.25);
  margin-bottom: 18px;
}
.comm-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -1.2px;
  color: #091426;
  margin-bottom: 20px;
}
.comm-hero-intro {
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.7;
  color: var(--comm-body);
  max-width: 860px;
  margin-bottom: 28px;
}
.comm-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.comm-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 13.5px;
  color: var(--comm-muted);
}
.comm-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comm-hero-trust-item strong {
  color: var(--comm-text);
}
.comm-hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: #0ea5e9;
}

/* Callout Card */
.comm-callout {
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: var(--comm-radius);
  background: #f8fafc;
  border-left: 4px solid var(--comm-blue);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.comm-callout-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.comm-callout-head svg {
  width: 22px;
  height: 22px;
  color: var(--comm-blue);
}
.comm-callout-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--comm-body);
}

/* Responsive Tables */
.comm-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 36px 0;
  border-radius: var(--comm-radius);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 8px 30px -10px rgba(15, 23, 42, 0.05);
}
.comm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  min-width: 580px;
}
.comm-table th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 750;
  padding: 14px 18px;
  border-bottom: 2px solid #cbd5e1;
}
.comm-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: var(--comm-body);
  vertical-align: top;
  line-height: 1.6;
}
.comm-table tr:last-child td {
  border-bottom: none;
}
.comm-table tr:hover td {
  background: #f8fafc;
}

/* Visual Figures */
.comm-figure {
  margin: 40px 0;
  border-radius: var(--comm-radius);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}
.comm-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.comm-figure figcaption {
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--comm-muted);
  background: #ffffff;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.comm-figure figcaption svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}

/* Content Sections */
.comm-content-section {
  margin: 36px 0;
}
.comm-content-section h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #091426;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.comm-content-section p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--comm-body);
  margin-bottom: 16px;
}
.comm-content-section strong {
  color: #0f172a;
}
.comm-content-section a {
  color: var(--comm-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s;
}
.comm-content-section a:hover {
  color: #0284c7;
}

/* Verified Portfolio Showcase Component */
.de-proof-section {
  margin: 56px 0;
  padding: 42px 32px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
}
.de-proof-header {
  margin-bottom: 32px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.de-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--comm-blue);
  margin-bottom: 10px;
}
.de-section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.de-section-desc {
  font-size: 15.5px;
  color: var(--comm-muted);
  line-height: 1.65;
}
.de-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.de-proof-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--comm-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.de-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.1);
}
.de-proof-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}
.de-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.de-proof-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.de-proof-body {
  padding: 20px;
}
.de-proof-title {
  font-size: 17.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.de-proof-desc {
  font-size: 13.5px;
  color: var(--comm-body);
  line-height: 1.6;
  margin-bottom: 14px;
}
.de-proof-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.de-proof-features li {
  font-size: 12.5px;
  color: var(--comm-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.de-proof-features li svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}
.de-proof-action {
  text-align: center;
}

/* Centralized Offer Banner */
.de-offer-section {
  margin: 56px 0;
  padding: 42px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #091830 0%, #0d274c 50%, #153e77 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px -12px rgba(13, 39, 76, 0.35);
  position: relative;
  overflow: hidden;
}
.de-offer-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
  pointer-events: none;
}
.de-offer-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.de-offer-header {
  text-align: center;
  margin-bottom: 32px;
}
.de-offer-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(14, 165, 233, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  margin-bottom: 12px;
}
.de-offer-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 850;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  color: #ffffff;
}
.de-offer-subtitle {
  font-size: 15.5px;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto;
}
.de-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.de-offer-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.de-offer-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  flex-shrink: 0;
}
.de-offer-feature-icon svg {
  width: 18px;
  height: 18px;
}
.de-offer-feature-text {
  font-size: 14px;
  font-weight: 650;
  color: #f1f5f9;
}
.de-offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.de-offer-guarantee {
  font-size: 13.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.de-offer-guarantee svg {
  width: 16px;
  height: 16px;
  color: #38bdf8;
}

/* FAQ Accordion */
.comm-faq-section {
  margin: 48px 0;
}
.comm-faq-section h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #091426;
  margin-bottom: 20px;
}
.comm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comm-faq-item {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  transition: border-color 0.2s;
}
.comm-faq-item[open] {
  border-color: rgba(14, 165, 233, 0.4);
}
.comm-faq-item summary {
  padding: 18px 22px;
  font-size: 16.5px;
  font-weight: 750;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.comm-faq-item summary::-webkit-details-marker {
  display: none;
}
.comm-faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--comm-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.comm-faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--comm-blue);
}
.comm-faq-answer {
  padding: 0 22px 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--comm-body);
}

/* Consultation CTA Section */
.comm-cta-section {
  margin: 56px 0;
  padding: 42px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
  border: 1px solid rgba(186, 230, 253, 0.7);
  text-align: center;
}
.comm-cta-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 850;
  color: #091426;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}
.comm-cta-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--comm-body);
  max-width: 720px;
  margin: 0 auto 24px;
}
.comm-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Related Guides Grid */
.comm-related-section {
  margin: 48px 0;
}
.comm-related-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #091426;
  margin-bottom: 18px;
}
.comm-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.comm-related-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.comm-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 8px 24px -6px rgba(14, 165, 233, 0.12);
}
.comm-related-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 8px;
}
.comm-related-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--comm-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
/* Figures and Visual Frameworks */
.comm-featured-figure {
  margin: 32px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(186, 230, 253, 0.8);
}
.comm-featured-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.comm-figure {
  margin: 36px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}
.comm-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.comm-figure figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #f8fafc;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 13.5px;
  color: var(--comm-muted);
  font-weight: 500;
}
.comm-figure figcaption svg {
  width: 16px;
  height: 16px;
  color: var(--comm-blue);
  flex-shrink: 0;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .comm-hero { padding: 24px 18px; border-radius: 18px; }
  .comm-hero-trust { gap: 12px; }
  .comm-callout { padding: 18px 18px; }
  .de-proof-section, .de-offer-section, .comm-cta-section { padding: 28px 18px; border-radius: 18px; }
  .de-offer-footer { flex-direction: column; align-items: flex-start; }
}

