/* =========================================================
   WebLite - lp-professional-website.css
   Landing Page: בניית אתר אינטרנט מקצועי
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --pw-bg: #f8fafc;
  --pw-primary: #2563eb;
  --pw-primary-dark: #1e40af;
  --pw-primary-light: #3b82f6;
  --pw-secondary: #7c3aed;
  --pw-secondary-light: #a78bfa;
  --pw-accent: #f59e0b;
  --pw-accent-light: #fbbf24;
  --pw-success: #059669;
  --pw-success-light: #10b981;
  --pw-text-dark: #0f172a;
  --pw-text-muted: #64748b;
  --pw-card-bg: #ffffff;
  --pw-border: #e2e8f0;
  --pw-danger: #ef4444;
  --gradient-pw: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

/* ---------- Base ---------- */
.pw-page {
  background-color: var(--pw-bg);
  color: var(--pw-text-dark);
  overflow-x: hidden;
  font-family: 'Heebo', sans-serif;
  line-height: 1.7;
}

.pw-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Utilities ---------- */
.pw-page .text-gradient {
  background: var(--gradient-pw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pw-page .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pw-page .section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pw-primary);
  font-size: .85rem;
  font-weight: 700;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pw-page .section-badge.success {
  background: rgba(5, 150, 105, 0.08);
  color: var(--pw-success);
}

.pw-page .section-badge.accent {
  background: rgba(245, 158, 11, 0.08);
  color: #b45309;
}

.pw-page .section-badge.danger {
  background: rgba(239, 68, 68, 0.08);
  color: var(--pw-danger);
}

.pw-page .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.pw-page .section-subtitle {
  font-size: 1.1rem;
  color: var(--pw-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.pw-page .btn-pw-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.8rem;
  background: var(--gradient-pw);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.45);
  text-decoration: none;
}

.pw-page .btn-pw-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px -8px rgba(37, 99, 235, 0.55);
}

.pw-page .btn-pw-primary i { transition: transform .3s; }
.pw-page .btn-pw-primary:hover i { transform: translateX(-4px); }

.pw-page .btn-pw-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.pw-page .btn-pw-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.pw-page .btn-pw-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--pw-primary);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--pw-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.pw-page .btn-pw-outline:hover {
  background: var(--pw-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== HERO ==================== */
.pw-hero {
  background: radial-gradient(circle at 30% 20%, var(--pw-primary-light) 0%, var(--pw-primary) 40%, var(--pw-primary-dark) 80%, #172554 100%);
  color: #fff;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.pw-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  border-radius: 50%;
  animation: pw-float 8s ease-in-out infinite;
}

.pw-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
  border-radius: 50%;
  animation: pw-float 10s ease-in-out infinite reverse;
}

@keyframes pw-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.pw-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.pw-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pw-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pw-hero .hero-subtitle {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: .9;
  margin-top: .5rem;
  line-height: 1.6;
}

.pw-hero .hero-description {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  opacity: .92;
  line-height: 1.9;
}

.pw-hero .hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ---------- Hero Promise Strip ---------- */
.pw-hero-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 720px;
  margin: 0 auto;
}

.pw-hero-promise .promise-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.pw-hero-promise .promise-item i {
  font-size: 1rem;
  color: var(--pw-accent-light);
}

.pw-hero-promise .promise-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

/* ==================== SOCIAL PROOF TICKER ==================== */
.pw-ticker {
  background: var(--pw-text-dark);
  padding: .75rem 0;
  overflow: hidden;
  position: relative;
}

.pw-ticker::before,
.pw-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.pw-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--pw-text-dark), transparent);
}

.pw-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--pw-text-dark), transparent);
}

.pw-ticker .ticker-track {
  display: flex;
  width: max-content;
}

.pw-ticker .ticker-content {
  display: flex;
  gap: 3rem;
  animation: pw-ticker-scroll 30s linear infinite;
}

.pw-ticker .ticker-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}

.pw-ticker .ticker-item i {
  color: var(--pw-accent);
  font-size: .65rem;
}

@keyframes pw-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== SCROLL INDICATOR ==================== */
.pw-hero .scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.pw-hero .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
  position: relative;
}

.pw-hero .wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: pw-scroll-anim 2s ease infinite;
}

@keyframes pw-scroll-anim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==================== AEO BLOCKS ==================== */
.pw-aeo-block {
  background: var(--pw-card-bg);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-right: 4px solid var(--pw-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pw-aeo-block.featured {
  border-right-width: 5px;
  border-right-color: var(--pw-secondary);
  padding: 2.5rem;
}

.pw-aeo-block h2,
.pw-aeo-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--pw-primary);
}

.pw-aeo-block.featured h2 {
  font-size: 1.4rem;
}

.pw-aeo-block p {
  color: var(--pw-text-muted);
  font-size: .95rem;
  line-height: 1.8;
}

/* ==================== DEFINITION SECTION ==================== */
.pw-definition {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

/* ==================== WHY SECTION ==================== */
.pw-why {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pw-why .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pw-why .why-card {
  background: var(--pw-card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pw-border);
  transition: all .3s;
  text-align: center;
}

.pw-why .why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pw-why .why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  background: rgba(239, 68, 68, 0.08);
  color: var(--pw-danger);
}

.pw-why .why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pw-why .why-card p {
  color: var(--pw-text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.pw-why .why-stat {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pw-danger);
  background: rgba(239, 68, 68, 0.06);
  padding: .3rem .8rem;
  border-radius: 50px;
}

/* ==================== WHAT MAKES IT PROFESSIONAL ==================== */
.pw-what-makes {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #f0f4ff 0%, var(--pw-bg) 100%);
}

.pw-what-makes .pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pw-what-makes .pillar-card {
  background: var(--pw-card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pw-border);
  transition: all .3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pw-what-makes .pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pw-primary);
}

.pw-what-makes .pillar-number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.06);
  line-height: 1;
}

.pw-what-makes .pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pw-primary);
  transition: all .3s;
}

.pw-what-makes .pillar-card:hover .pillar-icon {
  background: var(--gradient-pw);
  color: #fff;
  transform: scale(1.1);
}

.pw-what-makes .pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pw-what-makes .pillar-card p {
  color: var(--pw-text-muted);
  font-size: .88rem;
  line-height: 1.7;
}

/* ==================== SOLUTION ==================== */
.pw-solution {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pw-solution .solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pw-solution .solution-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pw-solution .solution-text p {
  color: var(--pw-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pw-solution .solution-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pw-solution .solution-points li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.6;
}

.pw-solution .solution-points li i {
  color: var(--pw-success);
  font-size: 1.1rem;
  margin-top: .25rem;
  flex-shrink: 0;
}

.pw-solution .solution-visual { position: relative; }

.pw-solution .solution-mockup {
  background: var(--pw-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--pw-border);
}

.pw-solution .mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--pw-border);
}

.pw-solution .mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.pw-solution .mockup-dot:first-child { background: #fca5a5; }
.pw-solution .mockup-dot:nth-child(2) { background: #fde68a; }
.pw-solution .mockup-dot:nth-child(3) { background: #86efac; }

.pw-solution .mockup-url {
  flex: 1;
  background: #fff;
  padding: .3rem .8rem;
  border-radius: 6px;
  font-size: .75rem;
  color: var(--pw-text-muted);
  margin-right: .5rem;
}

.pw-solution .mockup-body {
  padding: 2rem;
  min-height: 280px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.pw-solution .mockup-body .mockup-logo { font-size: 1.4rem; font-weight: 800; color: var(--pw-primary); }
.pw-solution .mockup-body .mockup-headline { font-size: 1.1rem; font-weight: 700; color: var(--pw-text-dark); }
.pw-solution .mockup-body .mockup-text { font-size: .85rem; color: var(--pw-text-muted); max-width: 300px; }
.pw-solution .mockup-body .mockup-btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  background: var(--gradient-pw);
  color: #fff;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
}

/* ==================== COMPARISON TABLE ==================== */
.pw-comparison {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--pw-bg) 0%, #f0f4ff 100%);
}

.pw-comparison .comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pw-comparison .comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pw-card-bg);
  font-size: .95rem;
  min-width: 600px;
}

.pw-comparison .comparison-table thead th {
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--pw-border);
  background: #f8fafc;
}

.pw-comparison .comparison-table thead th:first-child {
  text-align: right;
}

.pw-comparison .comparison-table .highlight-col {
  background: rgba(37, 99, 235, 0.03);
  position: relative;
}

.pw-comparison .comparison-table thead .highlight-col {
  background: rgba(37, 99, 235, 0.06);
  color: var(--pw-primary);
}

.pw-comparison .table-badge {
  display: inline-block;
  background: var(--gradient-pw);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .3rem;
}

.pw-comparison .comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pw-border);
  text-align: center;
}

.pw-comparison .comparison-table td:first-child {
  text-align: right;
  font-weight: 600;
}

.pw-comparison .comparison-table .good { color: var(--pw-success); margin-left: .3rem; }
.pw-comparison .comparison-table .bad { color: var(--pw-danger); margin-left: .3rem; }

/* ==================== PROCESS ==================== */
.pw-process {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pw-process .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.pw-process .process-step {
  background: var(--pw-card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pw-border);
  text-align: center;
  transition: all .3s;
  position: relative;
}

.pw-process .process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pw-process .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient-pw);
  color: #fff;
}

.pw-process .step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pw-process .step-content p {
  color: var(--pw-text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ==================== PRICING ==================== */
.pw-pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #f0f4ff 0%, var(--pw-bg) 100%);
}

.pw-pricing .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pw-pricing .pricing-card {
  background: var(--pw-card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pw-border);
  text-align: center;
  position: relative;
  transition: all .3s;
}

.pw-pricing .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pw-pricing .pricing-card.popular {
  border-color: var(--pw-primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--pw-primary);
  transform: scale(1.03);
}

.pw-pricing .pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pw-pricing .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pw);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pw-pricing .pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
}

.pw-pricing .plan-desc {
  color: var(--pw-text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.pw-pricing .plan-price {
  margin-bottom: .25rem;
}

.pw-pricing .plan-price del {
  font-size: 1.2rem;
  color: var(--pw-text-muted);
  font-weight: 500;
}

.pw-pricing .price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pw-primary);
}

.pw-pricing .price-period {
  font-size: .95rem;
  font-weight: 500;
  color: var(--pw-text-muted);
}

.pw-pricing .plan-note {
  color: var(--pw-text-muted);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}

.pw-pricing .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: right;
}

.pw-pricing .plan-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--pw-border);
}

.pw-pricing .plan-features li:last-child { border-bottom: none; }
.pw-pricing .plan-features li i { color: var(--pw-success); font-size: .85rem; flex-shrink: 0; }

.pw-pricing .btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 2rem;
  background: transparent;
  color: var(--pw-primary);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--pw-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.pw-pricing .btn-plan:hover {
  background: var(--pw-primary);
  color: #fff;
  transform: translateY(-2px);
}

.pw-pricing .btn-plan.primary {
  background: var(--gradient-pw);
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.45);
}

.pw-pricing .btn-plan.primary:hover {
  box-shadow: 0 12px 35px -8px rgba(37, 99, 235, 0.55);
  transform: translateY(-2px);
}

/* ==================== FAQ ==================== */
.pw-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pw-faq .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.pw-faq .faq-item {
  background: var(--pw-card-bg);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pw-border);
  overflow: hidden;
  transition: all .3s;
}

.pw-faq .faq-item:hover { box-shadow: var(--shadow-md); }

.pw-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all .2s;
  user-select: none;
}

.pw-faq .faq-question:hover { color: var(--pw-primary); }

.pw-faq .faq-question i {
  transition: transform .3s;
  color: var(--pw-primary);
  font-size: .9rem;
}

.pw-faq .faq-item.open .faq-question i { transform: rotate(180deg); }

.pw-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.pw-faq .faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.pw-faq .faq-answer p {
  color: var(--pw-text-muted);
  font-size: .95rem;
  line-height: 1.8;
}

/* ==================== TRUST STRIP ==================== */
.pw-trust {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--pw-border);
}

.pw-trust .trust-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.pw-trust .trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--pw-text-muted);
  font-weight: 500;
}

.pw-trust .trust-item i { color: var(--pw-success); }

/* ==================== FINAL CTA ==================== */
.pw-final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pw-final-cta .cta-box {
  background: var(--gradient-pw);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pw-final-cta .cta-box::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.pw-final-cta .cta-box > * { position: relative; z-index: 1; }

.pw-final-cta .cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.pw-final-cta .cta-box p {
  font-size: 1.1rem;
  opacity: .92;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.pw-final-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pw-final-cta .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.8rem;
  background: #fff;
  color: var(--pw-primary);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.pw-final-cta .btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.3);
}

.pw-final-cta .btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.4rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.pw-final-cta .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767px) {
  .pw-hero {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  }

  .pw-hero-promise {
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    gap: .75rem;
  }

  .pw-hero-promise .promise-divider { display: none; }

  .pw-hero-promise .promise-item { font-size: .82rem; }

  .pw-solution .solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pw-solution .solution-visual { order: -1; }

  .pw-what-makes .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .pw-comparison .comparison-table { font-size: .85rem; }
  .pw-comparison .comparison-table thead th { padding: 1rem .75rem; font-size: .95rem; }
  .pw-comparison .comparison-table td { padding: .75rem; }

  .pw-pricing .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pw-pricing .pricing-card.popular {
    transform: none;
  }

  .pw-pricing .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .pw-final-cta .cta-box { padding: 2.5rem 1.5rem; }
}
