
/* =====================================================
   SHARED: FULL-BLEED BREAKOUT
   Both sections must break out of the .container
===================================================== */
.pdft-section,
.ftp-section {
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  overflow: hidden;
}

/* =====================================================
   PDF TOOLS SECTION
===================================================== */
.pdft-section {
  background: #080c16;
  padding: 90px 20px 100px;
}

.pdft-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(249,115,22,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(234,179,8,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.pdft-wrap {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}

.pdft-header {
  text-align: center; margin-bottom: 56px;
}

.pdft-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #f97316;
  background: rgba(249,115,22,0.10); border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 20px;
}

.pdft-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: #fff; margin: 0 0 16px; line-height: 1.15;
}

.pdft-title--accent {
  background: linear-gradient(90deg, #f97316, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.pdft-desc {
  font-size: 16px; color: rgba(255,255,255,0.55);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

/* Tool cards grid */
.pdft-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pdft-tool {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px;
  text-decoration: none; color: inherit;
  transition: all 0.25s ease;
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}

.pdft-tool:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}

.pdft-tool__icon {
  width: 52px; height: 52px; border-radius: 14px;
  border: 1px solid; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 4px;
}

.pdft-tool__name {
  font-size: 15px; font-weight: 700; color: #fff;
}

.pdft-tool__desc {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; flex: 1;
}

.pdft-tool__cta {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
  transition: color 0.2s;
}

.pdft-tool:hover .pdft-tool__cta { color: rgba(255,255,255,0.70); }

/* Footer bar */
.pdft-footer {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pdft-stats { display: flex; align-items: center; gap: 24px; }

.pdft-stat { text-align: center; }
.pdft-stat__num { display: block; font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.pdft-stat__lbl { font-size: 11px; color: rgba(255,255,255,0.40); margin-top: 4px; }
.pdft-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

.pdft-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(249,115,22,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pdft-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(249,115,22,0.55); }

/* =====================================================
   FILE TRANSFER SECTION
===================================================== */
.ftp-section {
  background: #060d14;
  padding: 90px 20px 100px;
}

.ftp-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(16,185,129,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(6,182,212,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.ftp-wrap {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.ftp-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #34d399;
  background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.25);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 20px;
}

.ftp-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  color: #fff; margin: 0 0 16px; line-height: 1.15;
}

.ftp-title--accent {
  background: linear-gradient(90deg, #10b981, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.ftp-desc {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 36px;
}

/* Steps */
.ftp-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.ftp-step {
  display: flex; gap: 18px; align-items: flex-start;
}

.ftp-step__num {
  font-size: 11px; font-weight: 800; color: #10b981;
  background: rgba(16,185,129,0.10); border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px; padding: 4px 10px; white-space: nowrap; margin-top: 2px;
  letter-spacing: 0.05em;
}

.ftp-step__title {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85);
  margin-bottom: 5px; display: flex; align-items: center; gap: 8px;
}

.ftp-step__title i { color: #10b981; }

.ftp-step__desc {
  font-size: 13px; color: rgba(255,255,255,0.40); line-height: 1.55;
}

.ftp-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.ftp-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(16,185,129,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ftp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(16,185,129,0.55); }

.ftp-btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; background: transparent;
  color: rgba(255,255,255,0.70); font-size: 15px; font-weight: 600;
  border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.2s;
}

.ftp-btn-secondary:hover { border-color: rgba(255,255,255,0.30); color: #fff; background: rgba(255,255,255,0.05); }

/* Right side card */
.ftp-right { display: flex; flex-direction: column; gap: 20px; }

.ftp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px; padding: 24px;
  backdrop-filter: blur(12px);
}

.ftp-card__header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}

.ftp-card__icon {
  font-size: 32px; color: #34d399;
  background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.20);
  border-radius: 12px; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}

.ftp-card__filename { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ftp-card__size { font-size: 12px; color: rgba(255,255,255,0.35); }

.ftp-card__bar-wrap { background: rgba(255,255,255,0.07); border-radius: 99px; height: 6px; margin-bottom: 16px; overflow: hidden; }
.ftp-card__bar-fill { height: 100%; width: 100%; background: linear-gradient(90deg, #10b981, #06b6d4); border-radius: 99px; }

.ftp-card__link-box {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 14px;
}

.ftp-card__link-text { flex: 1; font-size: 12px; color: rgba(255,255,255,0.40); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ftp-card__copy { font-size: 11px; font-weight: 700; color: #34d399; white-space: nowrap; cursor: pointer; }

.ftp-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); }
.ftp-card__status { display: inline-flex; align-items: center; gap: 5px; color: #34d399; font-weight: 700; font-size: 11px; background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.25); border-radius: 999px; padding: 3px 10px; }
.ftp-card__dot { width: 5px; height: 5px; border-radius: 50%; background: #34d399; display: inline-block; }

/* Plans comparison */
.ftp-plans { display: flex; gap: 12px; }

.ftp-plan {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px; text-align: center;
}

.ftp-plan--pro {
  background: rgba(52,211,153,0.06);
  border-color: rgba(52,211,153,0.25);
}

.ftp-plan__badge { font-size: 11px; font-weight: 700; color: #34d399; margin-bottom: 6px; }
.ftp-plan__label { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.ftp-plan__val { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 3px; }
.ftp-plan__sub { font-size: 10px; color: rgba(255,255,255,0.30); }

/* Feature list */
.ftp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ftp-feat { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.ftp-feat i { color: #34d399; font-size: 13px; flex-shrink: 0; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .pdft-tools { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ftp-wrap { grid-template-columns: 1fr; gap: 48px; }
  .ftp-right { order: -1; }
}

@media (max-width: 640px) {
  .pdft-section, .ftp-section { padding: 70px 16px 80px; }
  .pdft-tools { grid-template-columns: 1fr; gap: 14px; }
  .pdft-footer { flex-direction: column; align-items: center; text-align: center; }
  .ftp-plans { flex-direction: column; }
  .ftp-features { grid-template-columns: 1fr; }
  .ftp-ctas { flex-direction: column; }
  .ftp-btn-primary, .ftp-btn-secondary { width: 100%; justify-content: center; }
}

/* =====================================================
   3D PRINTING SECTION
===================================================== */
.tdp-section {
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: #05080f;
  padding: 100px 20px;
  overflow: hidden;
}

.tdp-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 20% 50%, rgba(139,92,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(6,182,212,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 60% 85%, rgba(139,92,246,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.tdp-wrap {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* ── Visual Left ── */
.tdp-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

/* 3D Cube */
.tdp-cube-wrap {
  perspective: 600px;
}

.tdp-cube {
  width: 160px; height: 160px;
  position: relative;
  transform-style: preserve-3d;
  animation: tdpRotate 10s linear infinite;
}

@keyframes tdpRotate {
  from { transform: rotateX(20deg) rotateY(0deg); }
  to   { transform: rotateX(20deg) rotateY(360deg); }
}

.tdp-cube__face {
  position: absolute;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  border: 1px solid rgba(139,92,246,0.40);
  backdrop-filter: blur(4px);
}

.tdp-cube__face--front  { background: rgba(139,92,246,0.15); transform: translateZ(80px); color: #a78bfa; }
.tdp-cube__face--back   { background: rgba(6,182,212,0.10);  transform: rotateY(180deg) translateZ(80px); color: #22d3ee; }
.tdp-cube__face--left   { background: rgba(139,92,246,0.10); transform: rotateY(-90deg) translateZ(80px); color: #8b5cf6; }
.tdp-cube__face--right  { background: rgba(6,182,212,0.08);  transform: rotateY(90deg) translateZ(80px); color: #06b6d4; }
.tdp-cube__face--top    { background: rgba(167,139,250,0.12); transform: rotateX(90deg) translateZ(80px); color: #c4b5fd; }
.tdp-cube__face--bottom { background: rgba(34,211,238,0.08);  transform: rotateX(-90deg) translateZ(80px); color: #67e8f9; }

/* Float badges */
.tdp-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 10px 16px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.tdp-float-badge i { color: #a78bfa; }
.tdp-float-badge--tl { top: 30px;    left: 0; animation: tdpFloat 4s ease-in-out infinite; }
.tdp-float-badge--tr { top: 30px;    right: 0; animation: tdpFloat 4.5s 0.5s ease-in-out infinite; }
.tdp-float-badge--bl { bottom: 30px; left: 0; animation: tdpFloat 5s 1s ease-in-out infinite; }
.tdp-float-badge--br { bottom: 30px; right: 0; animation: tdpFloat 4.2s 1.5s ease-in-out infinite; }

@keyframes tdpFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Copy Right ── */
.tdp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #a78bfa;
  background: rgba(139,92,246,0.10); border: 1px solid rgba(139,92,246,0.25);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 22px;
}

.tdp-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #a78bfa;
  animation: qrpPulse 1.8s ease-in-out infinite;
}

.tdp-title {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff; line-height: 1.15; margin: 0 0 16px;
}

.tdp-title--accent {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.tdp-desc {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 28px;
}

/* Categories grid */
.tdp-cats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 28px;
}

.tdp-cat {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}

.tdp-cat i { color: #8b5cf6; font-size: 14px; flex-shrink: 0; }
.tdp-cat:hover { background: rgba(139,92,246,0.10); border-color: rgba(139,92,246,0.30); color: #fff; }

/* Process steps */
.tdp-process {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 32px; flex-wrap: wrap;
}

.tdp-process-step {
  display: flex; gap: 12px; align-items: flex-start; flex: 1; min-width: 120px;
}

.tdp-process-num {
  font-size: 10px; font-weight: 800; color: #8b5cf6;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25);
  border-radius: 6px; padding: 3px 8px; white-space: nowrap; margin-top: 2px;
}

.tdp-process-text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.85); margin-bottom: 3px;
}

.tdp-process-text span {
  font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4;
}

.tdp-process-arrow {
  font-size: 11px; color: rgba(255,255,255,0.20);
  padding-top: 4px; flex-shrink: 0;
}

/* CTAs */
.tdp-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.tdp-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(124,58,237,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tdp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(124,58,237,0.60); }

.tdp-btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; background: transparent;
  color: rgba(255,255,255,0.70); font-size: 15px; font-weight: 600;
  border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: all 0.2s;
}

.tdp-btn-secondary:hover { border-color: rgba(255,255,255,0.30); color: #fff; background: rgba(255,255,255,0.05); }

/* Responsive */
@media (max-width: 900px) {
  .tdp-wrap { grid-template-columns: 1fr; gap: 50px; }
  .tdp-visual { min-height: 320px; order: -1; }
  .tdp-process { gap: 6px; }
  .tdp-process-arrow { display: none; }
}

@media (max-width: 640px) {
  .tdp-section { padding: 70px 16px 80px; }
  .tdp-cats { grid-template-columns: repeat(2, 1fr); }
  .tdp-ctas { flex-direction: column; }
  .tdp-btn-primary, .tdp-btn-secondary { width: 100%; justify-content: center; }
  .tdp-float-badge--tl, .tdp-float-badge--bl { left: -10px; }
  .tdp-float-badge--tr, .tdp-float-badge--br { right: -10px; }
}
