/* ===================================================
   IFP PAGE STYLES (ifp.css)
   =================================================== */

/* ---------- Hero Video ---------- */
.ifp-hero {
  position: relative;
  width: 100%;
  margin-top: 80px; /* Offset for navbar */
  padding: 2rem 1rem 1rem 1rem; /* Reduced top/bottom padding to 50% */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ifp-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.ifp-hero-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ifp-warranty-badge {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 120px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  animation: ifp-badge-float 4s ease-in-out infinite;
}

@keyframes ifp-badge-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ---------- Text Content ---------- */
.ifp-text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ifp-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 1.5rem;
}

.ifp-text-content strong {
  color: var(--white);
}

/* ---------- Pricing Table ---------- */
.ifp-pricing-section {
  background: rgba(10, 10, 10, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-responsive {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.clasteq-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clasteq-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clasteq-table td {
  padding: 18px 24px;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.1rem;
}

.clasteq-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.clasteq-table tbody tr:last-child td {
  border-bottom: none;
}

.table-size {
  font-weight: 700;
  color: var(--white);
}

.table-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #06d6a0; /* Green accent for price */
}

.table-price.callout {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Grid Cards ---------- */
.ifp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ifp-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ifp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
}

.ifp-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ifp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.ifp-card p {
  color: #a0aab2;
  line-height: 1.6;
  font-size: 0.95rem;
}

.ifp-card p strong {
  color: var(--white);
}

.ifp-disclaimer {
  font-size: 0.8rem !important;
  color: #666 !important;
  font-style: italic;
}

/* ---------- Layout Spacing ---------- */
.ifp-section {
  padding: 4rem 0; /* Reduced general padding */
}

.ifp-about {
  padding-top: 1.5rem; /* Cut the top section gap heavily */
}
