/* ============================================================
   VMP Ingatlan Redesign - Design System
   Based on: vmp-ingatlan-redesign (NextJS/Tailwind)
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --radius: 0.875rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.22 0.015 285);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.015 285);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.22 0.015 285);
  --primary: oklch(0.53 0.24 295);
  --primary-foreground: oklch(0.99 0.005 300);
  --primary-soft: oklch(0.96 0.025 300);
  --primary-deep: oklch(0.33 0.15 296);
  --secondary: oklch(0.972 0.005 300);
  --secondary-foreground: oklch(0.28 0.02 290);
  --muted: oklch(0.975 0.004 300);
  --muted-foreground: oklch(0.53 0.015 288);
  --accent: oklch(0.96 0.025 300);
  --accent-foreground: oklch(0.38 0.16 296);
  --destructive: oklch(0.6 0.21 22);
  --success: oklch(0.62 0.14 155);
  --border: oklch(0.925 0.006 295);
  --input: oklch(0.925 0.006 295);
  --ring: oklch(0.53 0.24 295);

  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --shadow-card: 0 1px 2px oklch(0.2 0.05 300 / 0.04), 0 8px 24px -12px oklch(0.2 0.05 300 / 0.12);
  --shadow-lift: 0 2px 4px oklch(0.2 0.05 300 / 0.05), 0 24px 48px -20px oklch(0.3 0.12 300 / 0.28);
  --shadow-panel: 0 24px 60px -24px oklch(0.25 0.08 300 / 0.35);
}

/* --- Base Styles --- */
.vmp-redesign *,
.vmp-redesign *::before,
.vmp-redesign *::after {
  border-color: var(--border);
  box-sizing: border-box;
}

.vmp-redesign {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vmp-redesign h1,
.vmp-redesign h2,
.vmp-redesign h3,
.vmp-redesign h4,
.vmp-redesign h5,
.vmp-redesign h6 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

/* --- Utility Classes --- */
.vmp-redesign .max-w-7xl {
  max-width: 80rem;
}
.vmp-redesign .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.vmp-redesign .px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.vmp-redesign .py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.vmp-redesign .py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.vmp-redesign .pb-20 {
  padding-bottom: 5rem;
}

/* --- Reveal Animation --- */
.vmp-redesign .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.vmp-redesign .reveal[data-visible="true"] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .vmp-redesign .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Hero Section --- */
.vmp-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.vmp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vmp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, oklch(0.18 0.05 295 / 0.86) 0%, oklch(0.18 0.05 295 / 0.55) 48%, oklch(0.18 0.05 295 / 0.2) 100%);
}
.vmp-hero-content {
  position: relative;
  margin: 0 auto;
  max-width: 80rem;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.25rem;
}
.vmp-hero-text {
  max-width: 36rem;
  animation: vmpFadeIn 0.8s ease-out;
}
.vmp-hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid oklch(0.99 0.005 300 / 0.25);
  background: oklch(0.99 0.005 300 / 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-foreground);
  backdrop-filter: blur(4px);
}
.vmp-hero-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--primary-foreground);
}
.vmp-hero-title span {
  display: block;
  color: oklch(0.99 0.005 300 / 0.85);
}
.vmp-hero-desc {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: oklch(0.99 0.005 300 / 0.8);
}
.vmp-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.vmp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--primary-foreground);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.2s;
}
.vmp-hero-btn-primary:hover {
  transform: translateY(-2px);
}
.vmp-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.99 0.005 300 / 0.35);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}
.vmp-hero-btn-secondary:hover {
  background: var(--primary-foreground);
  color: var(--foreground);
}

@keyframes vmpFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1024px) {
  .vmp-hero { min-height: 720px; }
  .vmp-hero-content { min-height: 720px; padding: 5rem 2rem; }
  .vmp-hero-title { font-size: 3.75rem; }
  .vmp-hero-desc { font-size: 1.125rem; }
}

/* --- Section Head --- */
.vmp-section-head {
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.vmp-section-head h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}
.vmp-section-head p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}
.vmp-section-head .vmp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.vmp-section-head .vmp-cta-link:hover {
  border-color: oklch(0.53 0.24 295 / 0.4);
  color: var(--primary);
}
.vmp-section-head .vmp-cta-link svg {
  transition: transform 0.3s;
}
.vmp-section-head .vmp-cta-link:hover svg {
  transform: translateX(4px);
}
@media (min-width: 1024px) {
  .vmp-section-head h2 { font-size: 2.25rem; }
}

/* --- Quick Actions Grid --- */
.vmp-quick-actions {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .vmp-quick-actions { grid-template-columns: repeat(3, 1fr); }
}

.vmp-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  height: 100%;
}
.vmp-quick-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.53 0.24 295 / 0.3);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
}
.vmp-quick-card .vmp-icon-box {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--primary-soft);
  color: var(--primary);
  transition: all 0.3s;
}
.vmp-quick-card:hover .vmp-icon-box {
  background: var(--primary);
  color: var(--primary-foreground);
}
.vmp-quick-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
.vmp-quick-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.vmp-quick-card .vmp-card-arrow {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.vmp-quick-card .vmp-card-arrow svg {
  transition: transform 0.3s;
}
.vmp-quick-card:hover .vmp-card-arrow svg {
  transform: translateX(4px);
}

/* --- Property Card --- */
.vmp-property-grid {
  display: grid;
  gap: 1.5rem;
}
.vmp-property-grid.featured {
  grid-template-columns: 1fr;
}
.vmp-property-grid.latest {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .vmp-property-grid.featured { grid-template-columns: repeat(2, 1fr); }
  .vmp-property-grid.latest { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .vmp-property-grid.featured { grid-template-columns: repeat(3, 1fr); }
  .vmp-property-grid.latest { grid-template-columns: repeat(3, 1fr); }
}

.vmp-property-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.vmp-property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.vmp-property-card .vmp-prop-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.vmp-property-card .vmp-prop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.vmp-property-card:hover .vmp-prop-image img {
  transform: scale(1.06);
}
.vmp-property-card .vmp-prop-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-foreground);
}
.vmp-property-card .vmp-prop-fav {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.vmp-property-card .vmp-prop-fav:hover {
  transform: scale(1.1);
}
.vmp-property-card .vmp-prop-fav svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.vmp-property-card .vmp-prop-fav.favorited svg {
  fill: var(--primary);
  color: var(--primary);
}
.vmp-property-card .vmp-prop-type {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  border-radius: 0.5rem;
  background: oklch(0.22 0.015 285 / 0.8);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--background);
  backdrop-filter: blur(4px);
}
.vmp-property-card .vmp-prop-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}
.vmp-property-card .vmp-prop-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
}
.vmp-property-card .vmp-prop-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.vmp-property-card .vmp-prop-location svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
.vmp-property-card .vmp-prop-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.vmp-property-card .vmp-prop-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.vmp-property-card .vmp-prop-meta svg {
  width: 1rem;
  height: 1rem;
}
.vmp-property-card .vmp-prop-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- Category Cards --- */
.vmp-category-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .vmp-category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .vmp-category-grid { grid-template-columns: repeat(3, 1fr); }
}

.vmp-category-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
}
.vmp-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.vmp-category-card:hover img {
  transform: scale(1.05);
}
.vmp-category-card .vmp-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.05 295 / 0.8), transparent 60%);
}
.vmp-category-card .vmp-cat-label {
  position: absolute;
  inset-inline: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vmp-category-card .vmp-cat-label span:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.vmp-category-card .vmp-cat-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 9999px;
  background: oklch(0.99 0.005 300 / 0.15);
  color: var(--primary-foreground);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.vmp-category-card:hover .vmp-cat-icon {
  background: var(--primary);
}
.vmp-category-card .vmp-cat-icon svg {
  width: 1rem;
  height: 1rem;
}

/* --- City/Location Cards --- */
.vmp-city-locations {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .vmp-city-locations {
    grid-template-columns: 1.4fr 1fr;
  }
}

.vmp-city-main {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  min-height: 420px;
}
.vmp-city-main img,
.vmp-city-main .vmp-city-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.vmp-city-main:hover img,
.vmp-city-main:hover .vmp-city-placeholder {
  transform: scale(1.05);
}
.vmp-city-main .vmp-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.05 295 / 0.78), transparent 55%);
}
.vmp-city-main .vmp-city-label {
  position: absolute;
  inset-inline: 1.25rem;
  bottom: 1.25rem;
}
.vmp-city-main .vmp-city-label .vmp-city-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.vmp-city-main .vmp-city-label .vmp-city-link {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: oklch(0.99 0.005 300 / 0.8);
}
.vmp-city-main .vmp-city-label .vmp-city-link svg {
  transition: transform 0.3s;
}
.vmp-city-main:hover .vmp-city-label .vmp-city-link svg {
  transform: translateX(4px);
}

.vmp-city-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.vmp-city-side .vmp-city-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  aspect-ratio: 1 / 1;
}
.vmp-city-side .vmp-city-card img,
.vmp-city-side .vmp-city-card .vmp-city-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.vmp-city-side .vmp-city-card:hover img,
.vmp-city-side .vmp-city-card:hover .vmp-city-placeholder {
  transform: scale(1.05);
}
.vmp-city-side .vmp-city-card .vmp-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.05 295 / 0.78), transparent 55%);
}
.vmp-city-side .vmp-city-card .vmp-city-label {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
}
.vmp-city-side .vmp-city-card .vmp-city-label .vmp-city-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.vmp-city-side .vmp-city-card .vmp-city-label .vmp-city-link {
  margin-top: 0.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: oklch(0.99 0.005 300 / 0.8);
}
.vmp-city-side .vmp-city-card .vmp-city-label .vmp-city-link svg {
  transition: transform 0.3s;
}
.vmp-city-side .vmp-city-card:hover .vmp-city-label .vmp-city-link svg {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .vmp-city-locations {
    grid-template-columns: 1fr;
  }
  .vmp-city-main {
    min-height: 260px;
  }
  .vmp-city-main img,
  .vmp-city-main .vmp-city-placeholder {
    min-height: 260px;
  }
  .vmp-city-side {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Value Cards --- */
.vmp-value-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .vmp-value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .vmp-value-grid { grid-template-columns: repeat(4, 1fr); }
}

.vmp-value-card {
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.vmp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.vmp-value-card .vmp-icon-box {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--primary-soft);
  color: var(--primary);
}
.vmp-value-card h3 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.vmp-value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* --- Sell CTA Section --- */
.vmp-cta-grid {
  display: grid;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

/* Reverse columns only on mobile */
@media (max-width: 768px) {
  .vmp-cta-grid {
    grid-template-columns: 1fr;
  }

  .vmp-cta-grid > :first-child {
    order: 2; 
  }

  .vmp-cta-grid > :last-child {
    order: 1; 
  }
}

.vmp-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
}
.vmp-cta-content .vmp-cta-tag {
  width: fit-content;
  border-radius: 9999px;
  background: var(--primary-soft);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-foreground);
}
.vmp-cta-content h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}
.vmp-cta-content p {
  max-width: 32rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.vmp-cta-content .vmp-cta-buttons {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.vmp-cta-content .vmp-btn-primary {
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}
.vmp-cta-content .vmp-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-deep);
}
.vmp-cta-content .vmp-btn-outline {
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.2s;
}
.vmp-cta-content .vmp-btn-outline:hover {
  border-color: oklch(0.53 0.24 295 / 0.4);
  color: var(--primary);
}
.vmp-cta-image {
  min-height: 280px;
}
.vmp-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .vmp-cta-grid { grid-template-columns: repeat(2, 1fr); }
  .vmp-cta-content { padding: 3.5rem; }
  .vmp-cta-content h2 { font-size: 2.25rem; }
  .vmp-cta-image { min-height: 460px; }
}

/* --- Agent Section --- */
.vmp-agent-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .vmp-agent-grid { grid-template-columns: repeat(2, 1fr); }
}
.vmp-agent-image {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}
.vmp-agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vmp-agent-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vmp-agent-content h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}
.vmp-agent-content p {
  max-width: 32rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.vmp-agent-content .vmp-btn-primary {
  width: fit-content;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}
.vmp-agent-content .vmp-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-deep);
}
@media (min-width: 1024px) {
  .vmp-agent-content h2 { font-size: 2.25rem; }
}

/* --- How It Works --- */
.vmp-steps-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .vmp-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

.vmp-step-column {
  height: 100%;
  border-radius: 1.5rem;
  padding: 2rem;
}
.vmp-step-column.default {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.vmp-step-column.accent {
  border: 1px solid transparent;
  background: var(--primary-soft);
}
.vmp-step-column .vmp-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.vmp-step-column ol {
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.vmp-step-column ol li {
  display: flex;
  gap: 1rem;
}
.vmp-step-column ol li .vmp-step-num {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
.vmp-step-column ol li .vmp-step-num svg {
  width: 1.25rem;
  height: 1.25rem;
}
.vmp-step-column ol li .vmp-step-num .vmp-step-count {
  position: absolute;
  right: -0.375rem;
  top: -0.375rem;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 10px;
  font-weight: 700;
  color: var(--foreground);
}
.vmp-step-column ol li h3 {
  font-size: 1rem;
  font-weight: 600;
}
.vmp-step-column ol li p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
@media (min-width: 1024px) {
  .vmp-step-column { padding: 2.5rem; }
}

/* --- Blog Cards --- */
.vmp-blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .vmp-blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.vmp-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.vmp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.vmp-blog-card .vmp-blog-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.vmp-blog-card .vmp-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.vmp-blog-card:hover .vmp-blog-image img {
  transform: scale(1.05);
}
.vmp-blog-card .vmp-blog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}
.vmp-blog-card .vmp-blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vmp-blog-card .vmp-blog-meta .vmp-blog-cat {
  color: var(--primary);
}
.vmp-blog-card .vmp-blog-meta .vmp-blog-date {
  color: var(--muted-foreground);
}
.vmp-blog-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375;
}
.vmp-blog-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* --- Final CTA --- */
.vmp-final-cta {
  background: var(--primary);
  padding: 5rem 0;
}
.vmp-final-cta .vmp-final-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.vmp-final-cta h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-foreground);
}
.vmp-final-cta .vmp-final-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.vmp-final-cta .vmp-btn-light {
  border-radius: 9999px;
  background: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.2s;
}
.vmp-final-cta .vmp-btn-light:hover {
  transform: translateY(-2px);
}
.vmp-final-cta .vmp-btn-border {
  border-radius: 9999px;
  border: 1px solid oklch(0.99 0.005 300 / 0.5);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}
.vmp-final-cta .vmp-btn-border:hover {
  transform: translateY(-2px);
  background: oklch(0.99 0.005 300 / 0.1);
}
@media (min-width: 1024px) {
  .vmp-final-cta h2 { font-size: 2.75rem; }
}

/* --- Section Background Variants --- */
.vmp-section-muted {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(0.975 0.004 300 / 0.5);
}
.vmp-section-primary-soft {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(0.96 0.025 300 / 0.6);
}

/* --- SVG Icons Inline --- */
.vmp-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
}

/* --- FAQ Accordion --- */
.vmp-faq {
  max-width: 48rem;
  margin: 0 auto;
}
.vmp-faq-group {
  margin-bottom: 2.5rem;
}
.vmp-faq-group:last-child {
  margin-bottom: 0;
}
.vmp-faq-group > h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.vmp-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vmp-accordion-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.vmp-accordion-item:hover {
  box-shadow: var(--shadow-card);
}
.vmp-accordion-item.open {
  box-shadow: var(--shadow-card);
}
.vmp-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: var(--foreground);
  transition: color 0.2s;
}
.vmp-accordion-trigger:hover {
  color: var(--primary);
}
.vmp-accordion-trigger svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease, color 0.2s;
}
.vmp-accordion-item.open .vmp-accordion-trigger svg {
  transform: rotate(180deg);
  color: var(--primary);
}
.vmp-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.vmp-accordion-item.open .vmp-accordion-content {
  grid-template-rows: 1fr;
}
.vmp-accordion-content > div {
  overflow: hidden;
}
.vmp-accordion-content p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}