/* --- CSS CONFIGURATIONS & VARIABLES --- */
:root {
  /* Colorful theme variables mapped specifically for Diaclose */
  --dc-bg-gradient: linear-gradient(135deg, #091e3a 0%, #102a43 50%, #06152d 100%);
  --dc-surface-dark: #051426;
  --dc-glass-card: rgba(255, 255, 255, 0.07);
  --dc-glass-hover: rgba(255, 255, 255, 0.12);
  --dc-glass-darker: rgba(3, 10, 20, 0.65);
  
  --dc-accent-gold: #f59e0b;
  --dc-accent-cyan: #06b6d4;
  --dc-border-color: rgba(255, 255, 255, 0.12);
  
  /* Bright coral rose primary color to contrast with the deep blue/teal background */
  --dc-button-bg: #f43f5e;
  --dc-button-hover: #e11d48;
  --dc-button-text: #ffffff;
  
  /* Customized Fonts */
  --dc-font-display: 'Oswald', sans-serif;
  --dc-font-body: 'Poppins', sans-serif;
  
  /* Configured parameters */
  --dc-container-max: 1180px;
  --dc-radius-soft: 14px;
  --dc-deep-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 45px rgba(6, 182, 212, 0.15);
  --dc-text-white: #ffffff;
  --dc-text-muted: #cbd5e1;
}

/* --- BASE CUSTOM STYLES --- */
body.dc-body {
  font-family: var(--dc-font-body);
  background: var(--dc-bg-gradient);
  color: var(--dc-text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Container limits applied strictly to content */
.dc-main-frame {
  max-width: var(--dc-container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- HEADER SECTION --- */
.dc-page-header {
  width: 100%;
  background: var(--dc-surface-dark);
  border-bottom: 1px solid var(--dc-border-color);
  padding: 1.25rem 0;
  position: relative;
  z-index: 40;
}
.dc-page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dc-logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dc-brand-text {
  font-family: var(--dc-font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dc-text-white);
}
.dc-header-decor {
  display: none;
}
@media (min-width: 1024px) {
  .dc-header-decor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dc-accent-cyan);
  }
}

/* --- BACKGROUND ABSTRACT SVG PATTERNS --- */
.dc-bg-pattern {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.dc-bg-pattern-two {
  position: absolute;
  bottom: 25%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- SHOWCASE PANEL (PRESET B) --- */
.dc-showcase-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .dc-showcase-panel {
    flex-direction: row;
    align-items: flex-start;
  }
  .dc-left-panel-content {
    width: 55%;
  }
  .dc-right-panel-media {
    width: 45%;
    position: sticky;
    top: 2.5rem;
  }
}

/* Typography styles matching Oswald font heading uppercase */
.dc-main-heading {
  font-family: var(--dc-font-display);
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--dc-accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .dc-main-heading {
    font-size: 2.15rem;
  }
}

.dc-sub-heading {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dc-accent-gold);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Pills & Badges Row */
.dc-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.dc-pill-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--dc-text-white);
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--dc-radius-soft);
  letter-spacing: 0.02em;
}

.dc-product-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dc-text-muted);
  margin-bottom: 2.25rem;
}

/* Mini Inline Features */
.dc-mini-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.dc-mini-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dc-mini-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--dc-radius-soft);
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-accent-cyan);
}
.dc-mini-label {
  font-weight: 500;
  font-size: 1.025rem;
  color: var(--dc-text-white);
}

/* Floating Sticky CTA Container */
.dc-sticky-cta-panel {
  background: var(--dc-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--dc-border-color);
  padding: 1.5rem;
  border-radius: var(--dc-radius-soft);
  box-shadow: var(--dc-deep-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .dc-sticky-cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .dc-sticky-cta-panel {
    position: sticky;
    bottom: 2rem;
    z-index: 30;
  }
}

.dc-price-badge {
  display: flex;
  flex-direction: column;
}
.dc-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dc-text-muted);
}
.dc-price-value {
  font-family: var(--dc-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dc-accent-gold);
  line-height: 1;
  margin-top: 0.25rem;
}

.dc-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.75rem;
  background: var(--dc-button-bg);
  color: var(--dc-button-text);
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: var(--dc-radius-soft);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
  text-align: center;
}
.dc-action-button:hover {
  background: var(--dc-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
}

/* --- MEDIA & PRODUCT IMAGE --- */
.dc-image-wrapper {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  padding: 1.5rem;
  border-radius: var(--dc-radius-soft);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dc-main-product-img {
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
}

/* --- GUARANTEE STRIP (ICON LEFT) --- */
.dc-guarantee-strip {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(6, 182, 212, 0.05);
  border: 1px dashed rgba(6, 182, 212, 0.25);
  padding: 1.25rem;
  border-radius: var(--dc-radius-soft);
  margin-top: 2.5rem;
}
.dc-guarantee-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--dc-accent-cyan);
}
.dc-guarantee-desc {
  font-size: 0.9rem;
  color: var(--dc-text-muted);
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* --- FEATURES TRAIT SEGMENT --- */
.dc-trait-segment {
  background: var(--dc-surface-dark);
  border-top: 1px solid var(--dc-border-color);
  border-bottom: 1px solid var(--dc-border-color);
  padding: 4.5rem 0;
  position: relative;
  z-index: 10;
}
.dc-segment-heading {
  font-family: var(--dc-font-display);
  font-size: 2.35rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  color: var(--dc-text-white);
  letter-spacing: 0.04em;
}
.dc-shadow-heading {
  position: relative;
}
.dc-shadow-heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--dc-accent-cyan);
  margin: 0.85rem auto 0;
  border-radius: 9999px;
}

.dc-twin-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .dc-twin-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.dc-trait-item {
  background: var(--dc-glass-card);
  border: 1px solid var(--dc-border-color);
  padding: 2.25rem;
  border-radius: var(--dc-radius-soft);
  display: flex;
  gap: 1.5rem;
  transition: all 0.25s ease-in-out;
}
.dc-trait-item:hover {
  transform: translateY(-4px);
  background: var(--dc-glass-hover);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: var(--dc-deep-shadow);
}

.dc-trait-icon-box {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(244, 63, 94, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-accent-cyan);
}
.dc-trait-icon {
  width: 1.85rem;
  height: 1.85rem;
}

.dc-trait-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dc-trait-title {
  font-family: var(--dc-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dc-text-white);
  letter-spacing: 0.02em;
}
.dc-trait-text {
  font-size: 0.95rem;
  color: var(--dc-text-muted);
  line-height: 1.55;
}

/* --- TESTIMONIALS / FEEDBACK SEGMENT --- */
.dc-feedback-segment {
  padding: 4.5rem 0;
  position: relative;
  z-index: 10;
}

.dc-feedback-mosaic {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .dc-feedback-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .dc-feedback-item:nth-child(4) {
    grid-column: span 1;
  }
  .dc-feedback-item:nth-child(5) {
    grid-column: span 2;
  }
}

.dc-feedback-item {
  background: var(--dc-glass-darker);
  border: 1px solid var(--dc-border-color);
  padding: 2.25rem;
  border-radius: var(--dc-radius-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Customquote decor details */
.dc-feedback-quote {
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 8rem;
  font-family: serif;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.dc-feedback-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.dc-feedback-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dc-accent-cyan) 0%, var(--dc-button-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--dc-text-white);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.dc-feedback-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dc-feedback-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dc-text-white);
}
.dc-feedback-rating {
  display: flex;
  gap: 0.15rem;
  color: var(--dc-accent-gold);
}
.dc-feedback-rating svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.dc-feedback-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dc-text-muted);
  font-style: italic;
  position: relative;
  z-index: 5;
}

/* --- FOOTER SECTION --- */
.dc-footer {
  background: var(--dc-surface-dark);
  border-top: 1px solid var(--dc-border-color);
  padding: 3.5rem 0;
  position: relative;
  z-index: 40;
}
.dc-footer-container {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .dc-footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.dc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dc-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dc-footer-brand-text {
  font-family: var(--dc-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dc-text-white);
  letter-spacing: 0.05em;
}
.dc-footer-tagline {
  font-size: 0.85rem;
  color: var(--dc-text-muted);
}

.dc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
@media (max-width: 1023px) {
  .dc-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.dc-footer-link {
  font-size: 0.9rem;
  color: var(--dc-text-muted);
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}
.dc-footer-link:hover {
  color: var(--dc-accent-cyan);
}

.dc-footer-copyright {
  text-align: center;
  width: 100%;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.825rem;
  color: var(--dc-text-muted);
  line-height: 1.6;
}