.elementor-4125 .elementor-element.elementor-element-9d5c528{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-9d5c528 */:root {
  --bg-page: #f5f5f7;
  --bg-surface: #ffffff;
  --bg-subtle: #f9fafb;
  --border-subtle: #e5e7eb;

  --brand-deep: #080063;
  --brand-accent: #FF3B05;

  --text-main: #020617;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;

  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-soft: 0 18px 50px rgba(15,23,42,0.18);
  --shadow-subtle: 0 10px 32px rgba(15,23,42,0.06);

  --btn-primary-from: #FF3B05;
  --btn-primary-to: #ff7a3b;
  --btn-primary-shadow: 0 18px 45px rgba(8, 0, 99, 0.45);
  --btn-primary-shadow-hover: 0 22px 60px rgba(8, 0, 99, 0.65);
  --btn-focus-ring: 0 0 0 1px #ffffff, 0 0 0 3px rgba(8, 0, 99, 0.8);
}

#ps-home * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#ps-home {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f4f6 45%, #e5e7eb 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

#ps-home a {
  text-decoration: none;
  color: inherit;
}

#ps-home a:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

#ps-home img {
  max-width: 100%;
  display: block;
}

/* Skip link */
#ps-home .sr-only-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#ps-home .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  z-index: 50;
}

/* Shell */
#ps-home .shell,
#ps-home .section-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px;
}

@media (max-width: 720px) {
  #ps-home .shell,
  #ps-home .section-inner {
    padding: 0 16px;
  }
}

/* Subheader sticky nav */
#ps-home .ps-subheader {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(249,250,251,0.97),
    rgba(249,250,251,0.93),
    rgba(249,250,251,0.8),
    transparent
  );
  border-bottom: 1px solid rgba(209,213,219,0.8);
}

#ps-home .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  gap: 18px;
  font-size: 13px;
  color: #374151;
}

#ps-home .nav-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: #6b7280;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

#ps-home .nav-links::-webkit-scrollbar { display: none; }

#ps-home .nav-links a {
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

#ps-home .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brand-deep), var(--brand-accent));
  border-radius: 999px;
  transition: width 0.17s ease-out;
}

#ps-home .nav-links a:hover::after { width: 18px; }

#ps-home .nav-links a.nav-cta {
  font-weight: 600;
  color: #111827;
}

#ps-home .nav-links a.nav-cta::after {
  background: linear-gradient(to right, var(--brand-accent), var(--brand-deep));
}

/* Buttons */
#ps-home .btn-chat-primary,
#ps-home .btn-secondary {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    filter 0.18s ease-out,
    background 0.18s ease-out,
    border-color 0.18s ease-out,
    color 0.18s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: none;
}

#ps-home .btn-chat-primary {
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.25), transparent 55%),
    linear-gradient(135deg, var(--btn-primary-from), var(--btn-primary-to));
  color: #f9fafb;
  border-color: rgba(8, 0, 99, 0.9);
  box-shadow: var(--btn-primary-shadow);
  font-weight: 500;
}

#ps-home .btn-chat-primary span { font-size: 13px; }

#ps-home .btn-chat-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(248,250,252,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

#ps-home .btn-chat-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--btn-primary-shadow-hover);
  filter: saturate(1.07);
}

#ps-home .btn-chat-primary:hover::after { opacity: 1; }

#ps-home .btn-chat-primary:focus-visible {
  outline: none;
  box-shadow: var(--btn-primary-shadow-hover), var(--btn-focus-ring);
}

#ps-home .btn-secondary {
  background: rgba(8, 0, 99, 0.03);
  color: #0f172a;
  border-color: rgba(148,163,184,0.9);
  font-weight: 500;
}

#ps-home .btn-secondary span { font-size: 13px; }

#ps-home .btn-secondary:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 10px 30px rgba(15,23,42,0.12);
  background: #ffffff;
  color: var(--brand-deep);
  transform: translateY(-1px);
}

#ps-home .btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 10px 30px rgba(15,23,42,0.12), var(--btn-focus-ring);
}

#ps-home main section { padding: 40px 0; }
#ps-home .section-light { background: var(--bg-page); }
#ps-home .section-dark { background: #ffffff; border-top: 1px solid #e5e7eb; }

#ps-home .section-header {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

#ps-home .section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

#ps-home .section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--brand-deep);
}

#ps-home .section-description {
  font-size: 14px;
  color: #4b5563;
  max-width: 720px;
  line-height: 1.7;
}

/* HERO */
#ps-home .hero {
  padding-top: 40px;
  padding-bottom: 32px;
  background: radial-gradient(circle at top, #ffffff, #eef2ff 50%, #e5e7eb 100%);
  border-bottom: 1px solid rgba(209,213,219,0.8);
}

#ps-home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

#ps-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(209,213,219,0.9);
  background: rgba(255,255,255,0.96);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 16px;
}

#ps-home .eyebrow-pill {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--brand-accent), var(--brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 59, 5, 0.5);
}

#ps-home .eyebrow-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f9fafb;
}

#ps-home .hero-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

#ps-home .hero-title span {
  background: linear-gradient(to right, var(--brand-deep), var(--brand-accent));
  -webkit-background-clip: text;
  color: transparent;
}

#ps-home .hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 18px;
}

#ps-home .hero-subtitle strong {
  color: #111827;
  font-weight: 600;
}

#ps-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

#ps-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

#ps-home .hero-meta strong {
  color: #111827;
  font-weight: 500;
}

#ps-home .hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 18px;
  background: radial-gradient(circle at top, #ffffff, #eef2ff 55%, #e5e7eb 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

#ps-home .hero-visual-inner {
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
  color: #4b5563;
}

#ps-home .hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

#ps-home .hero-visual-title {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

#ps-home .hero-visual-subtitle {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

#ps-home .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

#ps-home .hero-badge {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  color: #374151;
}

#ps-home .hero-visual-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
  gap: 12px;
}

#ps-home .hero-visual-footer strong {
  color: #111827;
  font-weight: 500;
  font-size: 12px;
}

/* Hero benefits bar */
#ps-home .hero-benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-soft);
}

#ps-home .hero-benefit {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#ps-home .hero-benefit span { font-size: 11px; }

#ps-home .hero-benefit strong {
  font-size: 12px;
  color: #111827;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* Steps */
#ps-home .steps {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

#ps-home .steps-header {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

#ps-home .steps-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
  margin-bottom: 4px;
}

#ps-home .steps-subtitle {
  font-size: 13px;
  color: #4b5563;
  max-width: 640px;
  line-height: 1.7;
}

#ps-home .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

#ps-home .step-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 16px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

#ps-home .step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

#ps-home .step-number {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--brand-accent), var(--brand-deep));
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

#ps-home .step-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

#ps-home .step-list {
  margin-top: 6px;
  padding-left: 16px;
  font-size: 12px;
}

#ps-home .grid-3,
#ps-home .grid-3-soft {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#ps-home .card,
#ps-home .ghost-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

#ps-home .ghost-card h3,
#ps-home .card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111827;
}

#ps-home .box-muted {
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

#ps-home .box-muted h3 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #111827;
}

#ps-home .split {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 24px;
  align-items: flex-start;
}

#ps-home .config-link,
#ps-home .city-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 12px;
  color: #0f172a;
  align-items: center;
  gap: 4px;
}

#ps-home .config-link:hover,
#ps-home .city-link:hover { color: var(--brand-accent); }

/* FAQ */
#ps-home .faq {
  border-radius: var(--radius-lg);
  padding: 16px 16px 6px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: #4b5563;
}

#ps-home .faq-item {
  padding: 10px 0 12px;
  border-bottom: 1px solid #e5e7eb;
}

#ps-home .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

#ps-home .faq-q {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 13px;
  color: #111827;
  cursor: pointer;
  position: relative;
  padding-right: 16px;
}

#ps-home .faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  color: #9ca3af;
}

#ps-home .faq-item.is-open .faq-q::after { content: "−"; }

#ps-home .faq-a {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

#ps-home .faq-item.is-open .faq-a {
  max-height: 500px;
  opacity: 1;
}

/* CTA final */
#ps-home .cta-final {
  border-radius: var(--radius-xl);
  padding: 22px 20px 20px;
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 20px 60px rgba(15,23,42,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  color: #0b1120;
}

#ps-home .cta-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--brand-deep);
}

#ps-home .cta-subtitle {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

#ps-home .cta-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 8px;
}

#ps-home .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 16px;
}

#ps-home .package-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

#ps-home .package-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

#ps-home .package-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  color: #374151;
  margin-bottom: 6px;
}

#ps-home .package-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}

#ps-home .trust-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 20px; }
#ps-home .trust-columns { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); gap: 16px; }

#ps-home .trust-list {
  font-size: 13px;
  color: #4b5563;
  list-style: none;
  padding-left: 0;
}

#ps-home .trust-list li {
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

#ps-home .trust-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-accent);
}

/* Config table */
#ps-home .config-table-wrapper {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

#ps-home .config-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

#ps-home .config-table th,
#ps-home .config-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

#ps-home .config-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
  font-size: 12px;
}

#ps-home .config-table tr:last-child td { border-bottom: none; }

/* Responsive */
@media (max-width: 980px) {
  #ps-home .hero-grid,
  #ps-home .split,
  #ps-home .trust-columns { grid-template-columns: minmax(0,1fr); }

  #ps-home .grid-3,
  #ps-home .grid-3-soft,
  #ps-home .packages-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  #ps-home .steps-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  #ps-home .hero-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  #ps-home .hero-title { font-size: 30px; }

  #ps-home .grid-3,
  #ps-home .grid-3-soft,
  #ps-home .steps-grid,
  #ps-home .packages-grid { grid-template-columns: minmax(0,1fr); }

  #ps-home .section-title { font-size: 20px; }
  #ps-home .cta-title { font-size: 18px; }

  #ps-home .hero-benefits { grid-template-columns: minmax(0,1fr); }

  #ps-home .hero-actions .btn-chat-primary,
  #ps-home .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */