:root {
  /* The Corporate "Trust" Palette */
  --navy-deep: #001a33;
  --navy-standard: #003366;
  --action-blue: #0066cc;
  --action-blue-hover: #0052a3;
  --success-green: #2d8a2d;
  --border-gray: #d1d9e0;
  --bg-light: #f4f7f9;
  --text-heading: #1a1a1a;
  --text-body: #333333;
  --text-muted: #595959;
  --focus-ring: #0066cc;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  line-height: 1.5;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--action-blue);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* --- Focus Styles (Accessibility) --- */
*:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 25px;
}

/* --- Top Bar (Enterprise Style) --- */
.top-utility {
  background: var(--navy-deep);
  color: #fff;
  font-size: 11px;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.top-utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-utility-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-utility-left i {
  color: var(--action-blue);
}
.top-utility-right {
  display: flex;
  gap: 25px;
}
.top-utility a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em; /* Added explicit font size */
}
.top-utility a:hover {
  text-decoration: underline;
}

/* --- Navigation --- */
.site-header {
  background: rgba(255, 255, 255, 0.95); /* Semi-transparent */
  backdrop-filter: blur(12px); /* Glassmorphism */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-bottom: 2px solid var(--action-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-nav {
  height: 60px; /* Reduced from 75px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg {
  width: 40px;
  height: 40px;
  color: var(--action-blue);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-standard);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover {
  color: var(--action-blue);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--action-blue);
  transition: width 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  transition: all 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px; /* Reduced from 14px 28px */
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px; /* Standardized to 4px from 2px */
  transition: all 0.3s ease;
}
.btn-blue {
  background: var(--action-blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--action-blue-hover);
}
.btn-green {
  background: var(--success-green);
  color: #fff;
}
.btn-green:hover {
  background: #247024;
}
.btn-navy {
  background: var(--navy-deep);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-standard);
}
.btn-outline {
  border: 2px solid var(--navy-standard);
  color: var(--navy-standard);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy-standard);
  color: #fff;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(
    135deg,
    rgba(0, 51, 102, 0.03) 0%,
    rgba(0, 102, 204, 0.05) 100%
  ); /* Subtle mesh-like gradient */
  padding: 30px 0; /* Reduced from 40px */
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}
.hero-svg-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.hero-svg-decoration.top-right {
  top: 5%;
  right: 5%;
  width: 300px;
  height: 300px;
}
.hero-svg-decoration.bottom-left {
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  color: var(--action-blue);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero h1 {
  font-size: 2.5rem; /* Reduced from 3.2rem */
  line-height: 1.1;
  color: var(--navy-deep);
  margin-bottom: 15px; /* Reduced from 20px */
  font-weight: 800;
  letter-spacing: -0.03em; /* Tightened from -0.02em */
}
.hero h1 .highlight {
  color: var(--action-blue);
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px; /* Reduced from 40px */
  position: relative;
  z-index: 2;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 20px; /* Reduced from 30px */
  border-top: 1px solid var(--border-gray);
  position: relative;
  z-index: 2;
}
.hero-stat {
  text-align: left;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--navy-deep);
  font-weight: 800;
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-image {
  width: 100%;
  height: auto;
  /* max-height: 500px; */
  object-fit: cover;
  object-position: top center;
  border-radius: 8px; /* Slightly increased radius */
  box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15); /* More refined shadow */
  border: 1px solid rgba(0, 51, 102, 0.05); /* Subtle border definition */
}

/* --- Section Title --- */
.section-title {
  margin-bottom: 30px; /* Reduced from 40px */
}
.section-title h2 {
  font-size: 1.8rem; /* Reduced from 2.2rem */
  color: var(--navy-deep);
  margin-bottom: 8px; /* Reduced from 10px */
  font-weight: 800;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.section-title--center {
  text-align: center;
  margin-bottom: 40px; /* Reduced from 60px */
}

/* --- Module Capabilities --- */
.capabilities {
  padding: 40px 0; /* Reduced from 50px */
  position: relative;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; /* "Financial Grid" look */
  background: var(--border-gray);
  border: 1px solid var(--border-gray);
}
.cap-card {
  background: #fff;
  padding: 30px; /* Reduced from 40px */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cap-card:hover {
  transform: translateY(-5px);
  position: relative; /* Ensure z-index works */
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1); /* Deeper, more "standard" shadow */
  border-radius: 4px; /* Maintain radius */
}
.cap-card__icon-svg {
  width: 48px; /* Reduced from 56px */
  height: 48px; /* Reduced from 56px */
  background: rgba(0, 102, 204, 0.08);
  border-radius: 10px; /* Reduced from 12px */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px; /* Reduced from 20px */
  transition: all 0.3s;
}
.cap-card__icon-svg svg {
  width: 24px; /* Reduced from 28px */
  height: 24px; /* Reduced from 28px */
  color: var(--action-blue);
  transition: all 0.3s;
}
.cap-card:hover .cap-card__icon-svg {
  background: var(--action-blue);
}
.cap-card:hover .cap-card__icon-svg svg {
  color: #fff;
}
.cap-card__icon {
  font-size: 1.8rem;
  color: var(--action-blue);
  margin-bottom: 20px;
  display: block;
}
.cap-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--navy-standard);
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 10px;
}
.cap-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cap-card__list {
  list-style: none;
}
.cap-card__list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cap-card__list .fa-check {
  font-size: 0.8rem;
  color: var(--success-green);
  margin-top: 4px;
}

/* --- Industry Verticals --- */
.industry-banner {
  background: var(--navy-deep);
  color: #fff;
  padding: 30px 0; /* Reduced from 40px */
  margin: 0;
}
.industry-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.industry-flex h3 {
  font-size: 1.5rem;
}
.industry-tags {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
}
.industry-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.industry-tag:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* --- Pricing Section --- */
.pricing-section {
  background: var(--bg-light);
  padding: 40px 0; /* Reduced from 50px */
  position: relative;
  overflow: hidden;
}
.pricing-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
  z-index: 1;
}
.p-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  padding: 25px 20px; /* Reduced from 35px 25px */
  display: flex;
  flex-direction: column;
  height: 100%; /* Force equal height */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.p-card--popular {
  border: 2px solid var(--action-blue);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.08); /* Default pop */
  transform: scale(1.02); /* Slight default scale */
  z-index: 2;
}
.p-card--free {
  border: 2px solid var(--success-green);
}
.p-tag {
  position: absolute;
  top: -10px; /* Overlap border */
  left: 50%;
  transform: translateX(-50%);
  background: var(--action-blue);
  color: #fff;
  font-size: 10px;
  padding: 2px 12px;
  font-weight: 800;
}
.p-tag--green {
  background: var(--success-green);
}
.p-card__tier {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.p-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 5px;
}
.p-card__price span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}
.p-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.p-card__features {
  list-style: none;
  margin: 25px 0;
  border-top: 1px solid var(--bg-light);
  padding-top: 20px;
  flex-grow: 1;
}
.p-card__features li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.p-card__features .fa-check {
  color: var(--success-green);
  font-size: 0.8rem;
  margin-top: 3px;
}
.p-card .btn {
  margin-top: auto;
  width: 100%;
}
.pricing-note {
  text-align: center;
  margin-top: 30px; /* Reduced from 50px */
  padding-top: 30px; /* Reduced from 40px */
  border-top: 1px solid var(--border-gray);
}
.pricing-note p {
  color: var(--text-muted);
  margin-bottom: 15px;
}
.pricing-note strong {
  color: var(--text-body);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--action-blue);
  padding: 40px 0; /* Reduced from 50px */
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-svg-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--navy-standard);
}
.btn-white:hover {
  background: var(--bg-light);
}
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Footer --- */
.logo-svg-footer {
  width: 32px;
  height: 32px;
  color: var(--action-blue);
}
.footer-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  fill: #fff;
  transform: translateY(-99%);
}
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 40px 0 15px; /* Reduced from 60px 0 20px */
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px; /* Reduced from 30px */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px; /* Reduced from 30px */
}
.footer-brand {
  margin-bottom: 25px;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 10px; /* Reduced from 15px */
}
.footer-brand p {
  color: #999;
  font-size: 0.8rem; /* Reduced from 0.85rem */
  line-height: 1.5; /* Reduced from 1.6 */
  margin-top: 10px; /* Reduced from 15px */
}
.social-links {
  display: flex;
  gap: 8px; /* Reduced from 10px */
  margin-top: 12px; /* Reduced from 15px */
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-nav h5 {
  font-size: 0.8rem; /* Reduced from 0.85rem */
  text-transform: uppercase;
  margin-bottom: 10px; /* Reduced from 15px */
  color: var(--action-blue);
  letter-spacing: 0.05em;
}
.footer-nav ul {
  list-style: none;
}
.footer-nav a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px; /* Reduced from 8px */
  font-size: 0.8rem; /* Reduced from 0.85rem */
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 15px; /* Reduced from 20px */
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px; /* Reduced from 30px */
  }

  .site-footer {
    padding: 30px 0 20px; /* Reduced from 40px 0 30px */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Reduced from 15px */
    text-align: center;
    margin-top: 15px;
  }

  .footer-legal {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 2px solid var(--action-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border-gray);
  }
  .nav-links a {
    display: block;
    padding: 15px 0;
  }
  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }
  .nav-actions.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 180px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 2px solid var(--action-blue);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-image {
    box-shadow: none;
    margin-top: 30px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 20px;
  }

  .industry-flex {
    justify-content: center;
    text-align: center;
  }
  .industry-tags {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .social-links {
    justify-content: center;
  }

  .section-title {
    text-align: center;
  }

  .top-utility .container {
    justify-content: center;
  }
  .top-utility-left {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .top-utility .container {
    font-size: 10px;
  }
  .cap-card {
    padding: 30px 20px;
  }
  .p-card {
    padding: 25px 20px;
  }
}

/* --- Print Styles --- */
@media print {
  .top-utility,
  .menu-toggle,
  .nav-actions {
    display: none;
  }
  .hero-image {
    box-shadow: none;
  }
  body {
    font-size: 12pt;
  }
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Interaction Design (Phase 5) --- */

html {
  scroll-behavior: smooth;
}

/* Hero Pulse Animation */
@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-image {
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}

/* Fade Up Entrance Animation */
.fade-up {
  /* opacity: 0; Disabled for hotfix */
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add stagger delays for grid items if needed */
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}

/* Staggered Delays for Grids */
.capabilities-grid .cap-card:nth-child(1) {
  transition-delay: 100ms;
}
.capabilities-grid .cap-card:nth-child(2) {
  transition-delay: 200ms;
}
.capabilities-grid .cap-card:nth-child(3) {
  transition-delay: 300ms;
}
.capabilities-grid .cap-card:nth-child(4) {
  transition-delay: 400ms;
}
.capabilities-grid .cap-card:nth-child(5) {
  transition-delay: 500ms;
}
.capabilities-grid .cap-card:nth-child(6) {
  transition-delay: 600ms;
}

.pricing-grid .p-card:nth-child(1) {
  transition-delay: 100ms;
}
.pricing-grid .p-card:nth-child(2) {
  transition-delay: 200ms;
}
.pricing-grid .p-card:nth-child(3) {
  transition-delay: 300ms;
}
.pricing-grid .p-card:nth-child(4) {
  transition-delay: 400ms;
}
