/* ==========================================================================
   PERDYSY HOMEPAGE V2 â€” Product-Focused Premium Design
   Namespaced with pdsy2- prefix to avoid conflicts
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --pdsy2-primary: #1b72b9;
  --pdsy2-primary-dark: #155d96;
  --pdsy2-accent: #298fc2;
  --pdsy2-gold: #c9a84c;
  --pdsy2-text: #1a1a2e;
  --pdsy2-text-muted: #64748b;
  --pdsy2-bg: #f5f7fa;
  --pdsy2-bg-warm: #faf8f5;
  --pdsy2-bg-card: #ffffff;
  --pdsy2-border: #e2e8f0;
  --pdsy2-radius: 16px;
  --pdsy2-radius-sm: 10px;
  --pdsy2-shadow: 0 4px 24px rgba(27,114,185,0.07);
  --pdsy2-shadow-hover: 0 12px 40px rgba(27,114,185,0.14);
  --pdsy2-transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --pdsy2-font: 'Jost', 'Inter', -apple-system, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

/* ---------- RESETS ---------- */
.pdsy2-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.pdsy2-container *, .pdsy2-container *::before, .pdsy2-container *::after { box-sizing: border-box; }

/* ---------- BUTTONS ---------- */
.pdsy2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pdsy2-font); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: var(--pdsy2-radius-sm);
  transition: var(--pdsy2-transition); cursor: pointer; border: none;
}
.pdsy2-btn--primary {
  background: var(--pdsy2-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(27,114,185,0.35);
}
.pdsy2-btn--primary:hover {
  background: var(--pdsy2-primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,114,185,0.45);
}
.pdsy2-btn--outline {
  background: transparent; color: var(--pdsy2-primary);
  border: 2px solid var(--pdsy2-primary);
}
.pdsy2-btn--outline:hover {
  background: var(--pdsy2-primary); color: #fff;
}
.pdsy2-btn--white {
  background: #fff; color: var(--pdsy2-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.pdsy2-btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.pdsy2-btn--sm { padding: 10px 20px; font-size: 0.8rem; }

/* ====================================================================
   HERO
   ==================================================================== */
.pdsy2-hero {
  background: linear-gradient(160deg, #e8eef5 0%, #f0f4f8 40%, #f5f7fa 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.pdsy2-hero .pdsy2-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.pdsy2-hero__badge {
  display: inline-block; font-family: var(--pdsy2-font); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pdsy2-primary); background: rgba(27,114,185,0.08);
  padding: 8px 20px; border-radius: 30px; margin-bottom: 20px;
}
.pdsy2-hero__title {
  font-family: var(--pdsy2-font); font-size: 3.2rem; font-weight: 800;
  line-height: 1.1; color: var(--pdsy2-text); margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.pdsy2-hero__title span { color: var(--pdsy2-primary); }
.pdsy2-hero__text {
  font-family: var(--pdsy2-font); font-size: 1.1rem; line-height: 1.7;
  color: var(--pdsy2-text-muted); margin-bottom: 32px; max-width: 520px;
}
.pdsy2-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.pdsy2-hero__stats {
  display: flex; gap: 36px;
}
.pdsy2-stat { text-align: center; }
.pdsy2-stat__value {
  display: block; font-family: var(--pdsy2-font); font-size: 1.5rem;
  font-weight: 700; color: var(--pdsy2-primary);
}
.pdsy2-stat__label {
  font-family: var(--pdsy2-font); font-size: 0.8rem;
  color: var(--pdsy2-text-muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.pdsy2-hero__visual {
  position: relative; display: flex; justify-content: center;
}
.pdsy2-hero__visual img {
  width: 100%; max-width: 540px; height: auto; object-fit: cover;
  border-radius: var(--pdsy2-radius); box-shadow: var(--pdsy2-shadow-hover);
}

/* ====================================================================
   TRUST BAR
   ==================================================================== */
.pdsy2-trust-bar {
  background: var(--pdsy2-bg-card);
  border-top: 1px solid var(--pdsy2-border);
  border-bottom: 1px solid var(--pdsy2-border);
  padding: 20px 0;
}
.pdsy2-trust-bar .pdsy2-container {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.pdsy2-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--pdsy2-font); font-size: 0.85rem; font-weight: 500;
  color: var(--pdsy2-text-muted);
}
.pdsy2-trust-item svg { color: var(--pdsy2-primary); flex-shrink: 0; }

/* ====================================================================
   SECTION HEADERS
   ==================================================================== */
.pdsy2-section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.pdsy2-section-header--center {
  flex-direction: column; align-items: center; text-align: center;
}
.pdsy2-section-header h2 {
  font-family: var(--pdsy2-font); font-size: 2rem; font-weight: 700;
  color: var(--pdsy2-text); margin: 0 0 8px; letter-spacing: -0.02em;
  position: relative;
}
.pdsy2-section-header--center h2::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: var(--pdsy2-primary); margin: 16px auto 0; border-radius: 3px;
}
.pdsy2-section-header p {
  font-family: var(--pdsy2-font); font-size: 1rem;
  color: var(--pdsy2-text-muted); margin: 0;
}

/* ====================================================================
   PRODUCT GRID
   ==================================================================== */
.pdsy2-products { padding: 72px 0; }
.pdsy2-products--bestsellers { background: var(--pdsy2-bg); }
.pdsy2-products--arrivals { background: var(--pdsy2-bg-card); }
.pdsy2-products--sunglasses { background: var(--pdsy2-bg-warm); }
.pdsy2-products--budget { background: var(--pdsy2-bg-card); }

.pdsy2-product-grid {
  display: grid; gap: 24px;
}
.pdsy2-product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ====================================================================
   PRODUCT CARD
   ==================================================================== */
.pdsy2-card {
  position: relative; background: var(--pdsy2-bg-card);
  border-radius: var(--pdsy2-radius); overflow: hidden;
  box-shadow: var(--pdsy2-shadow); transition: var(--pdsy2-transition);
  border: 1px solid rgba(226,232,240,0.6);
}
.pdsy2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pdsy2-shadow-hover);
}
.pdsy2-card__link {
  text-decoration: none; color: inherit; display: block;
}
.pdsy2-card__img {
  width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #f8fafc;
  display: flex; align-items: center; justify-content: center;
}
.pdsy2-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pdsy2-card:hover .pdsy2-card__img img {
  transform: scale(1.06);
}
.pdsy2-card__info {
  padding: 16px 20px 20px;
}
.pdsy2-card__name {
  font-family: var(--pdsy2-font); font-size: 0.95rem; font-weight: 600;
  color: var(--pdsy2-text); margin: 0 0 6px;
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.pdsy2-card__price {
  font-family: var(--pdsy2-font); font-size: 1.05rem; font-weight: 700;
  color: var(--pdsy2-primary);
}
.pdsy2-card__price del {
  color: var(--pdsy2-text-muted); font-weight: 400; font-size: 0.85rem;
}
/* Badges */
.pdsy2-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--pdsy2-font); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px; color: #fff;
}
.pdsy2-card__badge--new { background: linear-gradient(135deg, #27ae60, #1e8449); }
.pdsy2-card__badge--deal { background: linear-gradient(135deg, var(--pdsy2-gold), #b8942f); }
.pdsy2-card__badge--sale { background: linear-gradient(135deg, #e74c3c, #c0392b); }

/* ====================================================================
   CATEGORIES
   ==================================================================== */
.pdsy2-categories {
  padding: 80px 0 88px; background: var(--pdsy2-bg-card);
}
.pdsy2-categories__badge {
  display: inline-block; font-family: var(--pdsy2-font); font-size: 0.78rem;
  font-weight: 600; color: var(--pdsy2-primary); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ---------- Mosaic Grid ---------- */
.pdsy2-cat-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 560px;
}

/* ---------- Card Base ---------- */
.pdsy2-catv {
  position: relative; border-radius: 20px; overflow: hidden;
  text-decoration: none; display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.45s cubic-bezier(0.4,0,0.2,1);
}
.pdsy2-catv:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,114,185,0.2), 0 0 0 2px rgba(27,114,185,0.15);
}

/* Grid placement */
.pdsy2-catv--featured { grid-row: 1 / 3; grid-column: 1; }
.pdsy2-catv--wide     { grid-row: 1;     grid-column: 2 / 4; }

/* ---------- Image Layer ---------- */
.pdsy2-catv__img {
  position: absolute; inset: 0; z-index: 1;
}
.pdsy2-catv__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
  filter: brightness(0.85);
}
.pdsy2-catv:hover .pdsy2-catv__img img {
  transform: scale(1.08);
  filter: brightness(0.75);
}

/* ---------- Gradient Overlay ---------- */
.pdsy2-catv__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(
    0deg,
    rgba(10,18,36,0.85) 0%,
    rgba(10,18,36,0.45) 40%,
    rgba(10,18,36,0.05) 70%,
    transparent 100%
  );
  color: #fff;
}

/* ---------- Count Badge ---------- */
.pdsy2-catv__count {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--pdsy2-font); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s ease;
}
.pdsy2-catv:hover .pdsy2-catv__count {
  background: rgba(27,114,185,0.6);
}

/* ---------- Typography ---------- */
.pdsy2-catv__title {
  font-family: var(--pdsy2-font); font-size: 1.8rem; font-weight: 800;
  color: #fff; margin: 0 0 4px; letter-spacing: -0.02em;
  line-height: 1.1;
}
.pdsy2-catv--featured .pdsy2-catv__title { font-size: 2.4rem; }

.pdsy2-catv__desc {
  font-family: var(--pdsy2-font); font-size: 0.88rem; font-weight: 400;
  color: rgba(255,255,255,0.65); margin: 0 0 16px;
}

/* ---------- Animated CTA ---------- */
.pdsy2-catv__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pdsy2-font); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; padding: 10px 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; width: fit-content;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.pdsy2-catv__cta svg {
  width: 16px !important; height: 16px !important; min-width: 16px !important;
  display: inline-block !important; flex-shrink: 0 !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  stroke: currentColor !important; fill: none !important;
}
.pdsy2-catv:hover .pdsy2-catv__cta {
  background: var(--pdsy2-primary);
  border-color: var(--pdsy2-primary);
  box-shadow: 0 4px 20px rgba(27,114,185,0.4);
}
.pdsy2-catv:hover .pdsy2-catv__cta svg {
  transform: translateX(4px);
}

/* Old styles (keep for backward compat) */
.pdsy2-cat-grid { display: none; }

/* ====================================================================
   PROMO BANNER
   ==================================================================== */
.pdsy2-promo {
  background: linear-gradient(135deg, #1b72b9 0%, #298fc2 60%, #3ab0d4 100%);
  padding: 72px 0; text-align: center;
}
.pdsy2-promo__eyebrow {
  display: inline-block; font-family: var(--pdsy2-font); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 12px;
}
.pdsy2-promo h2 {
  font-family: var(--pdsy2-font); font-size: 2.5rem; font-weight: 800;
  color: #fff; margin: 0 0 16px; letter-spacing: -0.02em;
}
.pdsy2-promo p {
  font-family: var(--pdsy2-font); font-size: 1.1rem; color: rgba(255,255,255,0.9);
  margin: 0 0 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ====================================================================
   HOW IT WORKS
   ==================================================================== */
.pdsy2-process {
  padding: 80px 0; background: var(--pdsy2-bg);
}
.pdsy2-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.pdsy2-step {
  text-align: center; flex: 1; max-width: 280px; padding: 0 20px;
}
.pdsy2-step__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pdsy2-primary), var(--pdsy2-accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(27,114,185,0.3);
}
.pdsy2-step h3 {
  font-family: var(--pdsy2-font); font-size: 1.1rem; font-weight: 700;
  color: var(--pdsy2-text); margin: 0 0 8px;
}
.pdsy2-step p {
  font-family: var(--pdsy2-font); font-size: 0.9rem;
  color: var(--pdsy2-text-muted); margin: 0; line-height: 1.6;
}
.pdsy2-step__connector {
  width: 60px; height: 2px; background: var(--pdsy2-border);
  flex-shrink: 0; margin-top: -40px;
}

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.pdsy2-testimonials {
  padding: 72px 0; background: var(--pdsy2-bg);
}
.pdsy2-testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pdsy2-testimonial {
  background: var(--pdsy2-bg-card); border-radius: var(--pdsy2-radius);
  padding: 32px; box-shadow: var(--pdsy2-shadow);
  border: 1px solid rgba(226,232,240,0.5); transition: var(--pdsy2-transition);
}
.pdsy2-testimonial:hover { transform: translateY(-4px); box-shadow: var(--pdsy2-shadow-hover); }
.pdsy2-testimonial__stars {
  font-size: 1.2rem; color: var(--pdsy2-gold); margin-bottom: 16px;
  letter-spacing: 2px;
}
.pdsy2-testimonial p {
  font-family: var(--pdsy2-font); font-size: 0.95rem; font-style: italic;
  color: var(--pdsy2-text); line-height: 1.7; margin: 0 0 20px;
}
.pdsy2-testimonial__author {
  display: flex; align-items: center; gap: 12px;
}
.pdsy2-testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pdsy2-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pdsy2-font); font-weight: 700; font-size: 1rem;
}
.pdsy2-testimonial__author strong {
  display: block; font-family: var(--pdsy2-font); font-size: 0.9rem;
  color: var(--pdsy2-text);
}
.pdsy2-testimonial__author span {
  font-family: var(--pdsy2-font); font-size: 0.75rem;
  color: var(--pdsy2-text-muted);
}

/* ====================================================================
   BRANDS
   ==================================================================== */
.pdsy2-brands {
  padding: 64px 0; background: var(--pdsy2-bg-card);
}
.pdsy2-brand-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
  margin-top: 16px;
}
.pdsy2-brand {
  font-family: var(--pdsy2-font); font-size: 1.1rem; font-weight: 700;
  color: #c0c8d4; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--pdsy2-transition); cursor: default;
}
.pdsy2-brand:hover { color: var(--pdsy2-primary); }

/* ====================================================================
   SEO CONTENT BLOCK
   ==================================================================== */
.pdsy2-seo {
  padding: 48px 0; background: var(--pdsy2-bg); border-top: 1px solid var(--pdsy2-border);
}
.pdsy2-seo h2 {
  font-family: var(--pdsy2-font); font-size: 1.3rem; font-weight: 700;
  color: var(--pdsy2-text); margin: 0 0 12px;
}
.pdsy2-seo p {
  font-family: var(--pdsy2-font); font-size: 0.9rem; line-height: 1.8;
  color: var(--pdsy2-text-muted); margin: 0; max-width: 900px;
}

/* ====================================================================
   VIRTUAL TRY-ON (VTO) SECTION
   ==================================================================== */
.pdsy2-vto {
  padding: 88px 0;
  background: linear-gradient(160deg, #0f2a4a 0%, #1b4b7a 40%, #1b72b9 100%);
  position: relative;
  overflow: hidden;
}
/* Decorative glow */
.pdsy2-vto::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,143,194,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.pdsy2-vto::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,114,185,0.15) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.pdsy2-vto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- Badge --- */
.pdsy2-vto__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pdsy2-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdsy2-accent);
  background: rgba(41,143,194,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(41,143,194,0.25);
}

/* --- Title --- */
.pdsy2-vto__title {
  font-family: var(--pdsy2-font);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.pdsy2-vto__title span {
  background: linear-gradient(135deg, #5ec8f2, #298fc2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Description --- */
.pdsy2-vto__text {
  font-family: var(--pdsy2-font);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
}

/* --- Benefits checklist --- */
.pdsy2-vto__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdsy2-vto__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pdsy2-vto__check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pdsy2-primary), var(--pdsy2-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pdsy2-vto__benefits li strong {
  display: block;
  font-family: var(--pdsy2-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.pdsy2-vto__benefits li span {
  font-family: var(--pdsy2-font);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* --- Stats row --- */
.pdsy2-vto__stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--pdsy2-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pdsy2-vto__stat {
  text-align: center;
  flex: 1;
}
.pdsy2-vto__stat-value {
  display: block;
  font-family: var(--pdsy2-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.pdsy2-vto__stat-label {
  font-family: var(--pdsy2-font);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.pdsy2-vto__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- CTAs --- */
.pdsy2-vto__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.pdsy2-btn--glow {
  animation: pdsy2-glow-pulse 3s ease-in-out infinite;
}
@keyframes pdsy2-glow-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(27,114,185,0.4); }
  50% { box-shadow: 0 4px 32px rgba(41,143,194,0.6), 0 0 60px rgba(27,114,185,0.2); }
}
.pdsy2-vto__ctas .pdsy2-btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.pdsy2-vto__ctas .pdsy2-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* --- Visual (right side) --- */
.pdsy2-vto__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.pdsy2-vto__phone-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.pdsy2-vto__phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1);
}

/* Floating card */
.pdsy2-vto__float-card {
  position: absolute;
  bottom: 32px;
  left: -40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: pdsy2-float 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes pdsy2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pdsy2-vto__float-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(27,114,185,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdsy2-vto__float-text strong {
  display: block;
  font-family: var(--pdsy2-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pdsy2-text);
}
.pdsy2-vto__float-text span {
  font-family: var(--pdsy2-font);
  font-size: 0.72rem;
  color: var(--pdsy2-text-muted);
}

/* Pulse ring animation */
.pdsy2-vto__pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  border: 2px solid rgba(41,143,194,0.4);
  animation: pdsy2-pulse-expand 3s ease-out infinite;
  pointer-events: none;
}
@keyframes pdsy2-pulse-expand {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .pdsy2-product-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .pdsy2-hero__title { font-size: 2.5rem; }
  .pdsy2-vto__title { font-size: 2.2rem; }
  .pdsy2-vto__grid { gap: 40px; }
}
@media (max-width: 768px) {
  .pdsy2-hero .pdsy2-container { grid-template-columns: 1fr; text-align: center; }
  .pdsy2-hero__text { margin-left: auto; margin-right: auto; }
  .pdsy2-hero__ctas { justify-content: center; }
  .pdsy2-hero__stats { justify-content: center; }
  .pdsy2-hero__visual img { max-width: 80%; }
  .pdsy2-hero__title { font-size: 2rem; }
  .pdsy2-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pdsy2-cat-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  .pdsy2-catv--featured { grid-row: 1 / 3; grid-column: 1; min-height: 400px; }
  .pdsy2-catv--wide { grid-column: 2; grid-row: 1; }
  .pdsy2-cat-grid { display: none; }
  .pdsy2-testimonial-grid { grid-template-columns: 1fr; }
  .pdsy2-section-header { flex-direction: column; align-items: flex-start; }
  .pdsy2-steps { flex-direction: column; gap: 24px; }
  .pdsy2-step__connector { width: 2px; height: 30px; margin: 0; }
  .pdsy2-promo h2 { font-size: 1.8rem; }
  .pdsy2-trust-bar .pdsy2-container { gap: 20px; }
  /* VTO responsive */
  .pdsy2-vto__grid { grid-template-columns: 1fr; text-align: center; }
  .pdsy2-vto__text { margin-left: auto; margin-right: auto; }
  .pdsy2-vto__benefits { align-items: center; }
  .pdsy2-vto__benefits li { text-align: left; }
  .pdsy2-vto__ctas { justify-content: center; }
  .pdsy2-vto__title { font-size: 2rem; }
  .pdsy2-vto__float-card { left: auto; right: -10px; }
  .pdsy2-vto__stats-row { gap: 16px; padding: 18px 16px; }
  .pdsy2-vto__stat-value { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .pdsy2-product-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pdsy2-card__info { padding: 10px 14px 14px; }
  .pdsy2-card__name { font-size: 0.85rem; }
  .pdsy2-card__price { font-size: 0.95rem; }
  .pdsy2-hero { padding: 48px 0 32px; }
  .pdsy2-products { padding: 48px 0; }
  .pdsy2-vto { padding: 56px 0; }
  .pdsy2-vto__stats-row { flex-direction: column; gap: 16px; }
  .pdsy2-vto__stat-divider { width: 40px; height: 1px; }
  .pdsy2-vto__phone-frame { max-width: 280px; }
}
