/* landing.css - Standalone styles for Landing Page */

/* ══════════════════════════════════════════════════════
   INDEPENDENT BASE STYLES EXTRACTED FROM PRODUCT.CSS
   ══════════════════════════════════════════════════════ */
.pdp-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.pdp-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}
.pdp-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--dm-primary);
  color: #fff;
  border: 2px solid var(--dm-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.pdp-cta-primary:hover {
  background-color: #c00;
  border-color: #c00;
  color: #fff;
}
.pdp-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #fff;
  color: #222;
  border: 2px solid #ccc;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.pdp-cta-secondary:hover {
  border-color: #222;
}
.pdp-media-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #eee;
}
.pdp-media-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp-media-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.pdp-section {
  padding: 64px 0;
}
.pdp-section-alt {
  background-color: #fafafa;
}
.pdp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  border-bottom: none;
}
.pdp-section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 0;
  position: relative;
}
.pdp-params-table {
  width: 100%;
  border-collapse: collapse;
}
.pdp-params-table td {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.pdp-params-table tr:last-child td {
  border-bottom: none;
}
.pdp-params-table .pt-name {
  color: #222;
  font-weight: 500;
  width: 45%;
}
.pdp-params-table .pt-val {
  color: #555;
  text-align: right;
  font-weight: 600;
}
.pdp-inquiry-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #eee;
}
.pdp-inquiry-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  text-align: center;
}


@media (max-width: 991px) {
  .pdp-title { font-size: 28px; }
  .pdp-section-head h2 { font-size: 26px; }
}
@media (max-width: 767px) {
  .pdp-title { font-size: 24px; }
  .pdp-section { padding: 40px 0; }
  .pdp-section-head h2 { font-size: 22px; }
  .pdp-inquiry-title { font-size: 24px; }
}

/* ══════════════════════════════════════════════════════
   LANDING PAGE SPECIFIC STYLES
   ══════════════════════════════════════════════════════ */
/* ── HERO SECTION (Sleek Industrial) ── */
.ld-hero {
    position: relative;
    padding: 90px 0;
    background-color: #000; /* Fallback */
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.ld-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ld-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.ld-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.5));
    z-index: 1;
}
.ld-hero .container {
    position: relative;
    z-index: 2;
}
.ld-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.ld-hero-subtitle {
    font-size: 19px;
    color: #ddd;
    max-width: 820px;
    margin: 0 auto 35px;
    line-height: 1.6;
}
.ld-hero-ctas {
    margin-bottom: 50px;
}
.ld-hero-ctas .pdp-cta-primary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(2px); /* Slight blur to make text pop against video */
}
.ld-hero-ctas .pdp-cta-primary:hover {
    background-color: rgba(204, 0, 0, 0.75); /* Semi-transparent red hover */
    border-color: transparent;
    color: #fff !important;
}

/* ── SLEEK METRICS (No Boxes, Industrial Dividers) ── */
.ld-hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    flex-wrap: wrap;
}
.ld-metric-item {
    padding: 0 45px;
    text-align: center;
    position: relative;
}
.ld-metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}
.ld-metric-val {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #e60012; /* Sany red highlight */
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 6px;
}
.ld-metric-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #bbb;
    font-weight: 600;
}

/* ── DATA CARDS ── */
.ld-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.ld-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid var(--dm-primary, #e60012);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ld-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.ld-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.ld-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ── TABLES ── */
.ld-table-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid #eee;
}
.ld-data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}
.ld-data-table th, .ld-data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.ld-data-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #333;
}
.ld-data-table tr:last-child td {
    border-bottom: none;
}
.ld-highlight-col {
    color: #008000;
    font-weight: 700;
}
.ld-savings-total {
    background-color: #fff8f8;
    font-weight: 800;
    font-size: 16px;
    color: var(--dm-primary, #e60012);
}

/* ── SPLIT LAYOUT ── */
.ld-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 30px;
}
.ld-split img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* ── ACCORDION DETAILS FOR PARAMETERS ── */
.ld-params-accordion {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}
.ld-params-accordion summary {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.ld-params-accordion summary:hover {
    background: #f0f1f2;
}
.ld-params-content {
    padding: 20px;
}

@media (max-width: 768px) {
    .ld-hero-title { font-size: 28px; }
    .ld-hero-subtitle { font-size: 15px; display: none;}
    .ld-hero-video { display: none; }
    .ld-metric-item { padding: 15px; width: 100%; }
    .ld-metric-item:not(:last-child)::after { display: none; }
    .ld-split { grid-template-columns: 1fr; }
}
