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

html {
  scroll-behavior: smooth;
}

.hp-body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--hp-text-main);
  background-color: var(--hp-surface);
  /* Tech grid background */
  background-image:
    linear-gradient(to right, rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  line-height: 1.6;
  overflow-x: hidden;
}

.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-section {
  padding: 100px 0;
}

.hp-bg-light {
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(10px);
}

.hp-text-center {
  text-align: center;
}

.hp-mb-4 {
  margin-bottom: 2rem;
}

.hp-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Variables - User Requested Theme */
:root {
  --hp-blue: #317efe;
  /* Logo Blue */
  --hp-blue-dark: #1e59bc;
  /* Darker Logo Blue */
  --hp-accent: #dfff00;
  /* Neon Lime/Yellow from button */
  --hp-yellow: #facc15;
  --hp-dark: #0f172a;
  --hp-pink: #fff1f2;
  --hp-pink-border: #fecdd3;
  --hp-green: #41c385;
  /* Logo Green */
  --hp-surface: #ffffff;
  --hp-surface-light: #f8fafc;
  --hp-border: #e2e8f0;
  --hp-text-main: #0f172a;
  --hp-text-muted: #64748b;
}

/* Typography */
.hp-h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hp-text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hp-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hp-text-main);
  margin-bottom: 1rem;
}

.hp-p {
  color: var(--hp-text-muted);
  font-size: 1.1rem;
}

.hp-p-large {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.hp-p-sm {
  font-size: 0.95rem;
  color: var(--hp-text-muted);
}

.hp-color-blue {
  color: var(--hp-blue);
}

/* Buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 50px;
  /* Pill shape from image */
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.hp-btn-primary {
  background: var(--hp-accent);
  color: #000;
  box-shadow: 0 4px 15px -3px rgba(223, 255, 0, 0.4);
}

.hp-btn-primary:hover {
  box-shadow: 0 8px 25px -5px rgba(223, 255, 0, 0.6);
  transform: translateY(-2px);
}

.hp-btn-yellow {
  background: var(--hp-accent);
  color: #000;
}

.hp-btn-white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--hp-blue);
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
}

.hp-btn-outline {
  background: transparent;
  color: var(--hp-blue);
  border: 1px solid var(--hp-blue);
}

.hp-btn-outline:hover {
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 4px 15px -3px rgba(14, 165, 233, 0.15);
}

.hp-btn-icon {
  font-size: 1.1rem;
}

/* Header */
.hp-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.hp-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.hp-nav {
  display: flex;
  gap: 30px;
}

.hp-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.hp-nav-link.hp-active {
  color: var(--hp-yellow);
}

.hp-drop-icon {
  font-size: 0.7rem;
  vertical-align: middle;
}

/* Hero */
.hp-hero {
  background: #0f172a;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hp-hero-grid {
  position: relative;
  z-index: 2;
}

.hp-hero-content {
  max-width: 600px;
}

.hp-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hp-hero-title span {
  color: var(--hp-blue);
}

.hp-hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 40px;
}

.hp-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  opacity: 0.6;
}

.hp-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Mentor */
.hp-about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hp-about-text {
  flex: 1;
}

.hp-check-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hp-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.hp-check-list li::before {
  content: "✓";
  color: var(--hp-blue);
  font-weight: 800;
}

.hp-about-img-box {
  flex: 0.8;
  position: relative;
}

.hp-about-main-img {
  width: 100%;
  border-radius: 90px 90px 40px 40px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.hp-about-bg-decoration {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(49, 126, 254, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}



.hp-badge-pill-modern {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hp-badge-pill-icon {
  width: 44px;
  height: 44px;
  background: rgba(49, 126, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
  box-shadow: 0 5px 15px rgba(49, 126, 254, 0.2);
}

.hp-badge-pill-text {
  display: flex;
  flex-direction: column;
}

.hp-badge-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1;
}

.hp-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
}

/* Why grid */
.hp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-why-tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.hp-tag-card {
  background: rgba(49, 126, 254, 0.03);
  border: 1px solid rgba(49, 126, 254, 0.1);
  padding: 12px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.hp-tag-card:hover {
  background: rgba(49, 126, 254, 0.08);
  transform: translateY(-2px);
  border-color: rgba(49, 126, 254, 0.2);
}

.hp-tag-icon {
  font-size: 1.25rem;
}

.hp-tag-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
}

.hp-why-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  border-left: 6px solid var(--hp-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Highlights */
.hp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.hp-high-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.hp-high-card:nth-child(4),
.hp-high-card:nth-child(5) {
  grid-column: auto;
}

.hp-high-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--hp-blue);
}

/* Roadmap */
.hp-roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hp-learning-card {
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease;
}

.hp-learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hp-learning-card-red {
  border-top: 6px solid #cbd5e1;
}

.hp-learning-card-green {
  border-top: 6px solid var(--hp-blue);
}

.hp-learning-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #64748b;
}

.hp-learning-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hp-learning-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #334155;
  font-size: 1.05rem;
}

.hp-roadmap-list li::before {
  content: "•";
  color: var(--hp-blue);
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

/* Success Grid */
.hp-success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.hp-success-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Tools grid */
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.hp-tool-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Company */
.hp-company-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hp-company-logos span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #cbd5e1;
}

/* Pink grid */
.hp-pink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.hp-pink-card {
  background: rgba(49, 126, 254, 0.05);
  border: 1px solid rgba(49, 126, 254, 0.15);
  padding: 25px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Green checklist */
.hp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.hp-feature-card {
  position: relative;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 24px;
  border: 1px solid #e8edf5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.hp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(49, 126, 254, 0.05) 0%, rgba(65, 195, 133, 0.02) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hp-feature-card:hover::before {
  opacity: 1;
}

.hp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(49, 126, 254, 0.08);
  border-color: rgba(49, 126, 254, 0.3);
}

.hp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(49, 126, 254, 0.1);
  color: var(--hp-blue);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.hp-feature-card:hover .hp-feature-icon {
  background: var(--hp-blue);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(49, 126, 254, 0.3);
}

.hp-feature-card .hp-h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Review */
.hp-review-main {
  max-width: 800px;
  margin: 50px auto 0;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hp-stars {
  color: #f59e0b;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.hp-review-text {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 30px;
  color: #020617;
}

.hp-reviewer-info {
  display: flex;
  flex-direction: column;
}

.hp-reviewer-name {
  font-weight: 800;
  font-size: 1.2rem;
}

.hp-reviewer-role {
  color: #64748b;
  font-size: 0.95rem;
}

/* Footer */
.hp-footer {
  padding: 50px 0;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {

  .hp-highlights-grid,
  .hp-success-grid,
  .hp-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-hero-title {
    font-size: 2.75rem;
  }

  .hp-about-flex,
  .hp-why-grid,
  .hp-roadmap-grid,
  .hp-pink-grid,
  .hp-green-checklist {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hp-nav {
    display: none;
  }

  .hp-hero-image {
    width: 100%;
    opacity: 0.3;
  }

  .hp-check-list {
    grid-template-columns: 1fr;
  }
}

/* Base & Variables */
:root {
  --cp-primary-color: #317efe;
  --cp-primary-hover: #2165de;
  --cp-secondary-color: #54bc91;
  --cp-secondary-hover: #45a078;
  --cp-accent-color: #e7f914;
  --cp-whatsapp-color: #25d366;
  --cp-whatsapp-hover: #128c7e;
  --cp-text-color: #161616;
  --cp-text-light: #525252;
  --cp-bg-color: #ffffff;
  --cp-bg-light: #fbfdff;
  --cp-border-color: #e0e0e0;
  --cp-card-bg: rgba(255, 255, 255, 0.7);

  --cp-font-main: "DM Sans", "Inter", sans-serif;

  --cp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --cp-shadow-md: 0 8px 24px rgba(49, 126, 254, 0.08);
  --cp-shadow-lg: 0 16px 40px rgba(49, 126, 254, 0.12);

  --cp-radius-md: 4px;
  --cp-radius-lg: 16px;
  --cp-radius-xl: 24px;

  --cp-transition: all 0.3s ease;
}

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

.cp-main {
  width: 100%;
  overflow: hidden;
}

.cp-html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.cp-body {
  font-family: var(--cp-font-main);
  color: var(--cp-text-color);
  background-color: var(--cp-bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.cp-h1,
.cp-h2,
.cp-h3,
.cp-h4,
.cp-h5,
.cp-h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--cp-text-color);
  margin-bottom: 1rem;
}

.cp-h1 {
  font-size: 2.5rem;
}

.cp-h2 {
  font-size: 2rem;
}

.cp-h3 {
  font-size: 1.5rem;
}

.cp-h4 {
  font-size: 1.25rem;
}

.cp-p {
  margin-bottom: 1rem;
  color: var(--cp-text-light);
}

.cp-text-center {
  text-align: center;
}

.cp-text-white {
  color: #ffffff !important;
}

.cp-text-primary {
  color: var(--cp-primary-color);
}

.cp-text-large {
  font-size: 1.25rem;
}

.cp-font-weight-bold {
  font-weight: 600;
}

.cp-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.cp-mt-2 {
  margin-top: 0.5rem;
}

.cp-mt-3 {
  margin-top: 1rem;
}

.cp-mt-4 {
  margin-top: 2rem;
}

.cp-mt-5 {
  margin-top: 3rem;
}

.cp-mb-3 {
  margin-bottom: 1rem;
}

.cp-mb-4 {
  margin-bottom: 2rem;
}

.cp-pt-3 {
  padding-top: 1rem;
}

.cp-pr-4 {
  padding-right: 2rem;
}

.cp-pl-4 {
  padding-left: 2rem;
}

.cp-mw-800 {
  max-width: 800px;
}

.cp-text-decoration-none {
  text-decoration: none;
}

/* Layout Utilities */
.cp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cp-section {
  padding: 5rem 0;
}

.cp-bg-light {
  background: linear-gradient(135deg, #fbfdff 0%, #e8f3ff 100%);
}

.cp-grid {
  display: grid;
  gap: 2rem;
}

.cp-align-center {
  align-items: center;
}

.cp-justify-center {
  justify-content: center;
}

/* Buttons */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--cp-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--cp-transition);
}

.cp-btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.cp-btn-primary {
  background-color: var(--cp-primary-color);
  color: #ffffff;
}

.cp-btn-primary:hover {
  background-color: var(--cp-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow-md);
}

.cp-btn-secondary {
  background-color: var(--cp-secondary-color);
  color: #ffffff;
}

.cp-btn-secondary:hover {
  background-color: var(--cp-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow-md);
}

.cp-whatsapp-btn {
  background-color: var(--cp-whatsapp-color);
  color: #ffffff;
}

.cp-whatsapp-btn:hover {
  background-color: var(--cp-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow-md);
}

.cp-btn-light-hover:hover {
  background-color: #ffffff;
  color: var(--cp-primary-color);
}

.cp-border-white {
  border-color: #ffffff;
}

.cp-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cp-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cp-text-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.cp-logo .cp-span {
  color: var(--cp-primary-color);
}

/* Hero Section */
.cp-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #f4f7fb 0%, #eef3fc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(49, 126, 254, 0.15) 0%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.cp-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(231, 249, 20, 0.15) 0%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.cp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cp-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(49, 126, 254, 0.1);
  color: var(--hp-blue);
  border: 1px solid var(--hp-blue);
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(231, 249, 20, 0.4);
}

.cp-hero .cp-h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.cp-hero-subtitle {
  font-size: 1.25rem;
  color: var(--cp-text-light);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cp-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.cp-card {
  background: var(--cp-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--cp-radius-lg);
  padding: 2rem;
  box-shadow: var(--cp-shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--cp-transition);
}

.cp-hover-up:hover {
  transform: translateY(-5px);
  box-shadow: var(--cp-shadow-md);
  border-color: rgba(49, 126, 254, 0.2);
}

.cp-card-icon {
  margin-bottom: 1rem;
  color: var(--cp-primary-color);
}

.cp-card-icon .cp-svg {
  width: 40px;
  height: 40px;
}

/* Feature Lists */
.cp-bullet-list {
  list-style: none;
  padding-left: 0;
}

.cp-bullet-list .cp-li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.cp-bullet-list .cp-li::before {
  content: "•";
  color: var(--cp-primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.25rem;
}

.cp-large-feature-list {
  list-style: none;
}

.cp-large-feature-list .cp-li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cp-large-feature-list .cp-icon {
  background-color: rgba(49, 126, 254, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cp-radius-md);
  flex-shrink: 0;
  color: var(--cp-primary-color);
}

.cp-large-feature-list .cp-icon .cp-svg {
  width: 28px;
  height: 28px;
}

/* Images */
.cp-rounded-lg {
  border-radius: var(--cp-radius-lg);
}

.cp-shadow-lg {
  box-shadow: var(--cp-shadow-lg);
}

.cp-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.cp-image-placeholder {
  background-color: #e0e0e0;
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* Curriculum Grid */
.cp-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cp-curriculum-card {
  background: var(--cp-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--cp-radius-lg);
  padding: 2rem;
  box-shadow: var(--cp-shadow-sm);
  transition: var(--cp-transition);
  height: 100%;
}

.cp-curriculum-card:hover {
  box-shadow: var(--cp-shadow-md);
  transform: translateY(-3px);
}

.cp-module-number {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cp-primary-color);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Tools Grid */
.cp-tools-grid {
  text-align: center;
}

.cp-tool-card {
  background: var(--cp-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 1rem;
  border-radius: var(--cp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--cp-transition);
}

.cp-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cp-shadow-md);
  border-color: var(--cp-primary-color);
}

.cp-tool-icon {
  margin-bottom: 0.5rem;
  color: var(--cp-primary-color);
}

.cp-tool-icon .cp-svg {
  width: 32px;
  height: 32px;
}

.cp-tool-card .cp-p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cp-text-color);
}

/* Benefits Section */
.cp-benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cp-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--cp-primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Testimonials */
.cp-rating {
  color: #ffb800;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.cp-review-text {
  font-style: italic;
}

.cp-student-info .cp-h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cp-student-info .cp-p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Related Courses */
.cp-course-thumb {
  height: 160px;
  border-radius: var(--cp-radius-md) var(--cp-radius-md) 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
}

.cp-bg-gradient-1 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.cp-bg-gradient-2 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.cp-bg-gradient-3 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.cp-bg-gradient-4 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* FAQ Container */
.cp-faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cp-faq-item {
  padding: 1.5rem;
}

.cp-faq-question {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: var(--cp-text-color);
}

.cp-faq-answer .cp-p {
  margin-bottom: 0;
}

/* Final CTA */
.cp-cta-section {
  background-color: var(--cp-primary-color);
  background-image: linear-gradient(135deg, #317efe 0%, #1e59bc 100%);
  padding: 6rem 0;
  border-radius: var(--cp-radius-xl);
  margin: 2rem 1.5rem 4rem;
}

.cp-cta-section .cp-p {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.cp-footer {
  padding: 2rem 0;
  background-color: #ffffff;
}

.cp-border-top {
  border-top: 1px solid var(--cp-border-color);
}

/* Animations */
.cp-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

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

/* Dynamic Grids */
.cp-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cp-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cp-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cp-curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cp-hero .cp-h1 {
    font-size: 2.5rem;
  }

  .cp-grid-2,
  .cp-grid-3,
  .cp-grid-4,
  .cp-curriculum-grid {
    grid-template-columns: 1fr;
  }

  .cp-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-pr-4,
  .cp-pl-4 {
    padding: 0;
  }

  .cp-text-content {
    order: 2;
    margin-top: 2rem;
  }

  .cp-image-content {
    order: 1;
  }

  .cp-cta-section {
    margin: 1rem 0;
    border-radius: 0;
  }

  .cp-nav-cta {
    display: none;
  }

  /* Hide CTA in mobile header to save space, or move it */
}

@media (max-width: 480px) {
  .cp-hero {
    padding: 8rem 0 4rem;
  }

  .cp-hero .cp-h1 {
    font-size: 2rem;
  }

  .cp-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cp-hero-buttons .cp-btn {
    width: 100%;
  }

  .cp-grid-6 {
    grid-template-columns: 1fr;
  }
}


/* Premium UI Enhancements */

/* 1. Background Patterns & Watermarks */
.cp-pattern-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(49, 126, 254, 0.1) 2px,
      transparent 2px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

.cp-watermark {
  position: absolute;
  font-size: 15rem;
  font-weight: 800;
  color: rgba(49, 126, 254, 0.03);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* 2. Abstract Floating Shapes */
.cp-shape {
  position: absolute;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
  opacity: 0.6;
}

.cp-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--cp-primary-color);
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.cp-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--cp-secondary-color);
  bottom: 10%;
  left: -5%;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* 3. Marquee (Trusted By) */
.cp-marquee-wrapper {
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  padding: 3rem 0;
  background: #ffffff;
  border-top: 1px solid var(--cp-border-color);
  border-bottom: 1px solid var(--cp-border-color);
}

.cp-marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.cp-marquee-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding-right: 4rem;
}

.cp-marquee-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0aabf;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cp-marquee-logo .cp-svg {
  width: 32px;
  height: 32px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 4. Bento Box Layouts */
.cp-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
}

.cp-bento-item-span-2 {
  grid-column: span 2;
}

.cp-bento-item-span-row {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .cp-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cp-bento-grid {
    grid-template-columns: 1fr;
  }

  .cp-bento-item-span-2,
  .cp-bento-item-span-row {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* 5. Enhanced Card Hover Glow */
.cp-card-glow:hover {
  box-shadow:
    0 0 25px rgba(231, 249, 20, 0.2),
    0 8px 24px rgba(49, 126, 254, 0.15);
  border-color: rgba(231, 249, 20, 0.5);
  transform: translateY(-8px);
}

.cp-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--cp-radius-md);
  background: linear-gradient(135deg,
      rgba(49, 126, 254, 0.1),
      rgba(84, 188, 145, 0.1));
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* 6. Animated Counters */
.cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin: 4rem 0;
}

.cp-stat-card {
  padding: 2rem;
  background: var(--cp-card-bg);
  border-radius: var(--cp-radius-lg);
  box-shadow: var(--cp-shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cp-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cp-primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.cp-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cp-text-light);
}

@media (max-width: 768px) {
  .cp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cp-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Base structural fixes for new components */
.cp-relative {
  position: relative;
}

.cp-z-10 {
  z-index: 10;
  position: relative;
}

/* Modern Hero Styling (Mehulprajapati.com inspired) */
.cp-hero-modern {
  background-color: #d2e8ff;
  /* Light blue */
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  /* Offset for sticky header */
}

.cp-hero-modern-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
}

.cp-hero-modern-image .cp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cp-hero-modern-wave {
  position: absolute;
  top: 0;
  left: 40%;
  width: 25vw;
  height: 100%;
  z-index: 2;
}

.cp-hero-abstract-lines {
  position: absolute;
  top: 10%;
  left: 0;
  width: 500px;
  height: 800px;
  z-index: 3;
  pointer-events: none;
}

.cp-hero-dotted-circle {
  position: absolute;
  bottom: -10%;
  right: 35%;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(#317efe 2px, transparent 2px);
  background-size: 15px 15px;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 3;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cp-hero-modern-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 10;
}

.cp-hero-modern-content {
  max-width: 600px;
  padding: 2rem 0;
}

.cp-hero-kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #317efe;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cp-hero-modern-content .cp-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #101828;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cp-hero-modern-content .cp-hero-subtitle {
  font-size: 1.125rem;
  color: #475467;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cp-hero-contact-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cp-hero-call {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cp-hero-call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cp-accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101828;
  background-color: #ffffff;
}

.cp-hero-call-icon .cp-svg {
  width: 20px;
  height: 20px;
}

.cp-hero-call-text {
  display: flex;
  flex-direction: column;
}

.cp-hero-call-label {
  font-size: 0.8rem;
  color: #475467;
  font-weight: 600;
}

.cp-hero-call-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #101828;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .cp-hero-modern-content .cp-h1 {
    font-size: 3rem;
  }

  .cp-hero-modern-wave {
    width: 35vw;
    left: 35%;
  }
}

@media (max-width: 768px) {
  .cp-hero-modern {
    flex-direction: column;
    padding-top: 100px;
  }

  .cp-hero-modern-image {
    position: relative;
    width: 100%;
    height: 300px;
    order: 2;
  }

  .cp-hero-modern-wave,
  .cp-hero-abstract-lines,
  .cp-hero-dotted-circle {
    display: none;
  }

  .cp-hero-modern-container {
    order: 1;
    padding-bottom: 3rem;
  }

  .cp-hero-contact-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Curriculum Timeline */
.cp-timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.cp-timeline-container::after {
  content: "";
  display: table;
  clear: both;
}

.cp-timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--cp-primary-color),
      var(--cp-secondary-color));
  border-radius: 3px;
}

.cp-timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 3rem;
  padding: 0 40px;
  clear: both;
}

.cp-timeline-item:nth-child(odd) {
  float: left;
}

.cp-timeline-item:nth-child(even) {
  float: right;
}

.cp-timeline-item:last-child {
  margin-bottom: 0;
}

.cp-timeline-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #ffffff;
  border: 4px solid var(--cp-primary-color);
  border-radius: 50%;
  top: 24px;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(49, 126, 254, 0.2);
}

.cp-timeline-item:nth-child(odd) .cp-timeline-dot {
  right: -13px;
}

.cp-timeline-item:nth-child(even) .cp-timeline-dot {
  left: -13px;
}

.cp-timeline-content {
  width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .cp-timeline-container::before {
    left: 20px;
    transform: none;
  }

  .cp-timeline-item {
    width: 100%;
    float: none;
    padding-left: 50px;
    padding-right: 0;
  }

  .cp-timeline-item:nth-child(odd),
  .cp-timeline-item:nth-child(even) {
    float: none;
  }

  .cp-timeline-item:nth-child(odd) .cp-timeline-dot,
  .cp-timeline-item:nth-child(even) .cp-timeline-dot {
    left: 8px;
    right: auto;
  }
}

/* --cp------------------------------------ */
/* Clean Card Styles for Bento Grid      */
/* --cp------------------------------------ */
.cp-clean-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cp-clean-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(49, 126, 254, 0.2);
}

.cp-clean-card.cp-glow-accent {
  box-shadow:
    -15px -15px 40px rgba(231, 249, 20, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.03);
}

.cp-clean-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f0f6ff;
  color: #317efe;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.cp-clean-icon .cp-svg {
  width: 24px;
  height: 24px;
}

.cp-clean-card .cp-h3 {
  font-size: 1.25rem;
  color: #101828;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cp-clean-card .cp-p {
  color: #475467;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --cp------------------------------------ */
/* Split Timeline Layout (Heading Left, Content Right) */
/* --cp------------------------------------ */
.cp-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.cp-timeline-container::before {
  content: "";
  position: absolute;
  left: 35%;
  transform: translateX(-50%);
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,
      var(--cp-primary-color),
      var(--cp-secondary-color));
  border-radius: 3px;
}

.cp-timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
  padding: 0;
  float: none !important;
}

.cp-timeline-item:last-child {
  margin-bottom: 0;
}

.cp-timeline-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #ffffff;
  border: 4px solid var(--cp-primary-color);
  border-radius: 50%;
  left: 35%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(49, 126, 254, 0.2);
}

.cp-timeline-item:nth-child(odd) .cp-timeline-dot,
.cp-timeline-item:nth-child(even) .cp-timeline-dot {
  right: auto;
  left: 35%;
}

.cp-timeline-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.cp-timeline-heading-side {
  width: 35%;
  text-align: right;
  padding-right: 3rem;
  padding-top: 2px;
}

.cp-timeline-heading-side .cp-h3 {
  font-size: 1.25rem;
  color: #101828;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cp-timeline-content-side {
  width: 60%;
  padding-left: 1rem;
  text-align: left;
}

.cp-timeline-content-side .cp-bullet-list {
  margin: 0;
}

@media (max-width: 768px) {
  .cp-timeline-container::before {
    left: 20px;
  }

  .cp-timeline-dot,
  .cp-timeline-item:nth-child(odd) .cp-timeline-dot,
  .cp-timeline-item:nth-child(even) .cp-timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }

  .cp-timeline-row {
    flex-direction: column;
  }

  .cp-timeline-heading-side {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .cp-timeline-content-side {
    width: 100%;
    padding-left: 50px;
  }
}

.cp-body {
  overflow-x: hidden;
}

/* Dark Section Styles */
.cp-section-dark {
  background-color: #0b0f19;
  /* Deep premium dark blue/black */
  color: #f0f6ff;
}

.cp-section-dark .cp-section-title {
  color: #ffffff;
}

.cp-section-dark .cp-section-subtitle {
  color: #94a3b8;
}

.cp-section-dark .cp-pattern-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px,
      transparent 2px);
}

/* --cp------------------------------------ */
/* Image-Matched Tools & Stats Section   */
/* --cp------------------------------------ */
.cp-tools-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cp-tool-card {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 0;
}

.cp-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.cp-tool-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem auto;
  color: #317efe;
  background: transparent;
}

.cp-tool-card .cp-p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
}

.cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cp-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.cp-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #317efe;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-stat-label {
  font-size: 0.85rem;
  color: #475467;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .cp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cp-stats-grid {
    grid-template-columns: 1fr;
  }

  .cp-tools-grid {
    gap: 1.5rem;
  }
}

/* --cp------------------------------------ */
/* Redesign 1: High-Tech Command Center  */
/* --cp------------------------------------ */
.cp-command-center-section {
  background-color: #030712;
  padding: 8rem 0;
  overflow: hidden;
}

.cp-cmd-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle,
      rgba(49, 126, 254, 0.15) 0%,
      transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cp-marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
  padding: 2rem 0;
}

.cp-marquee-track {
  display: flex;
  animation: marquee-scroll 25s linear infinite;
}

.cp-marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  font-size: 1.5rem;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.cp-marquee-item .cp-svg {
  width: 36px;
  height: 36px;
  color: #475569;
  transition: all 0.3s ease;
}

.cp-marquee-item:hover {
  color: #e7f914;
}

.cp-marquee-item:hover .cp-svg {
  color: #e7f914;
  filter: drop-shadow(0 0 10px rgba(231, 249, 20, 0.8));
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cp-glass-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.cp-glass-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.cp-glass-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(231, 249, 20, 0.3);
}

.cp-glow-text {
  text-shadow: 0 0 20px rgba(49, 126, 254, 0.5);
}

@media (max-width: 1024px) {
  .cp-glass-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cp-glass-stats-grid {
    grid-template-columns: 1fr;
  }

  .cp-marquee-item {
    padding: 0 2rem;
    font-size: 1.2rem;
  }

  .cp-marquee-item .cp-svg {
    width: 28px;
    height: 28px;
  }
}

/* --cp------------------------------------ */
/* Redesign 2: Sticky Stacking Cards     */
/* --cp------------------------------------ */
.cp-sticky-stack-section {
  background-color: #0b0f19;
  /* dark theme */
  padding: 6rem 0;
}

.cp-sticky-stack-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.cp-sticky-side {
  position: sticky;
  top: 150px;
  width: 40%;
  padding-right: 2rem;
}

.cp-sticky-orb {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg,
      var(--cp-primary-color),
      var(--cp-secondary-color));
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  margin-top: 3rem;
  animation: orb-pulse 6s infinite alternate;
}

@keyframes orb-pulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2) translate(20px, 20px);
    opacity: 0.6;
  }
}

.cp-stacking-side {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}

.cp-stack-card {
  background: #111827;
  /* Solid opaque background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: sticky;
  top: 150px;
  /* Stacking target */
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.2);
  /* Shadow above to show depth when stacked */
  transition: all 0.3s ease;
}

.cp-stack-card:nth-child(1) {
  top: 150px;
  z-index: 1;
}

.cp-stack-card:nth-child(2) {
  top: 170px;
  z-index: 2;
}

.cp-stack-card:nth-child(3) {
  top: 190px;
  z-index: 3;
}

.cp-stack-card:nth-child(4) {
  top: 210px;
  z-index: 4;
}

.cp-stack-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(49, 126, 254, 0.2),
      rgba(231, 249, 20, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7f914;
  margin-bottom: 2rem;
  border: 1px solid rgba(231, 249, 20, 0.2);
}

.cp-stack-card .cp-h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cp-stack-card .cp-p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .cp-sticky-stack-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .cp-sticky-side {
    position: relative;
    top: 0;
    width: 100%;
    padding-right: 0;
  }

  .cp-stacking-side {
    width: 100%;
  }

  .cp-stack-card {
    position: relative;
    top: 0 !important;
    transform: none !important;
  }

  .cp-sticky-orb {
    display: none;
  }
}

@media (max-width: 768px) {
  .cp-command-center-section {
    padding: 4rem 0;
  }

  .cp-sticky-stack-section {
    padding: 4rem 0;
  }

  .cp-stack-card {
    padding: 2rem;
  }

  .cp-hero .cp-h1 {
    font-size: 2.2rem;
  }

  .cp-section-title {
    font-size: 1.8rem;
  }
}


/* ------------------------------------- */
/* Premium Header & Navbar               */
/* ------------------------------------- */
.cp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hp-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.cp-navbar .cp-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.cp-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.cp-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2d3748;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.cp-logo-icon {
  font-size: 1.5rem;
}

.cp-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.cp-nav-links .cp-a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #1a202c;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.cp-nav-links .cp-a:hover {
  color: var(--cp-primary-color);
}

.cp-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: var(--cp-accent-color);
  color: #1a202c;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 249, 20, 0.4);
  background-color: var(--cp-accent-color);
  color: #1a202c;
}

.cp-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.cp-mobile-menu-btn .cp-span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1a202c;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ------------------------------------- */
/* Premium Footer                        */
/* ------------------------------------- */
.cp-footer {
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cp-footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.cp-footer-logo {
  color: #fff;
}

.cp-text-gray {
  color: #94a3b8;
}

.cp-social-links {
  display: flex;
  gap: 1rem;
}

.cp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  transition: all 0.2s ease;
}

.cp-social-link:hover {
  background: var(--cp-primary-color);
  transform: translateY(-2px);
}

.cp-social-link .cp-svg {
  width: 18px;
  height: 18px;
}

.cp-footer-heading {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cp-footer-list .cp-a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.cp-footer-list .cp-a:hover {
  color: var(--cp-primary-color);
}

.cp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cp-newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.cp-newsletter-input:focus {
  border-color: var(--cp-primary-color);
}

.cp-newsletter-btn {
  width: 100%;
  padding: 0.75rem;
}

.cp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

  .cp-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .cp-nav-links.cp-active {
    right: 0;
  }

  .cp-nav-links .cp-a {
    font-size: 1.25rem;
  }

  .cp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ============================================== */
/* HOME PAGE STYLES (hp- prefix)                 */
/* ============================================== */

/* ─── Active Nav Link ─── */
.hp-nav-active {
  color: var(--cp-primary-color) !important;
  font-weight: 800 !important;
}

/* ─── Eyebrow Labels ─── */
.hp-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-blue);
  background: rgba(14, 165, 233, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  /* Techy sharper corners */
  border: 1px dashed rgba(14, 165, 233, 0.4);
  margin-bottom: 1rem;
}

.hp-text-center .hp-eyebrow-dark {
  margin: auto;
}

.hp-eyebrow-dark {
  background: rgba(14, 165, 233, 0.05);
  color: var(--hp-blue);
  border-color: rgba(14, 165, 233, 0.2);
  display: block;
  width: fit-content;
  padding: 0px 10px;
  border-radius: 50px;
  margin-bottom: 10px !important;
}



/* ─── Section Shared ─── */
.hp-section {
  padding: 80px 0;
}

.hp-section-hero {
  padding: 0 !important;
}

.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-section-header {
  margin-bottom: 3.5rem;
}

.hp-text-center {
  text-align: center;
}

.hp-mb-4 {
  margin-bottom: 2rem;
}

.hp-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hp-color-blue {
  color: var(--cp-primary-color);
}

.hp-bg-light {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
}

/* ─── Typography ─── */
.hp-h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hp-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #020617;
}

.hp-h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #020617;
}

.hp-p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.hp-p-large {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hp-p-sm {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
}

/* Legacy buttons removed, using global hp-btn from top of file */

.hp-btn-cta-primary {
  background: var(--hp-accent);
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px -3px rgba(223, 255, 0, 0.4);
  border-radius: 50px;
}

.hp-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(223, 255, 0, 0.6);
}

.hp-btn-cta-outline {
  background: transparent;
  color: var(--hp-blue);
  border: 1px solid var(--hp-blue);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 50px;
}

.hp-btn-cta-outline:hover {
  background: rgba(49, 126, 254, 0.05);
  box-shadow: 0 4px 15px -3px rgba(49, 126, 254, 0.15);
}

/* ─── Fade In Up Animation ─── */
.hp-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════ */
/* HERO                                        */
/* ═══════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hp-hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 18, 40, 0.92) 0%, rgba(10, 18, 60, 0.75) 50%, rgba(10, 18, 40, 0.5) 100%);
}

.hp-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hp-hero-content {
  max-width: 680px;
}

.hp-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.hp-accent {
  color: var(--cp-accent-color);
}

.hp-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hp-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hp-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hp-trust-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cp-accent-color);
}

.hp-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════ */
/* ABOUT                                       */
/* ═══════════════════════════════════════════ */
.hp-about-flex {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hp-about-text {
  flex: 1;
}

.hp-check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.hp-check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
}

.hp-check-list li::before {
  content: "✓";
  color: var(--cp-primary-color);
  font-weight: 900;
  font-size: 1rem;
}

.hp-about-img-box {
  flex: 0 0 380px;
  position: relative;
}

.hp-about-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12); */
}

.hp-about-main-img {
  width: 100%;
  display: block;
}

.hp-badge-pill {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #fff;
  border: 1px solid var(--hp-border);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 28px rgba(231, 249, 20, 0.35);
}

.hp-badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: #1a202c;
  line-height: 1;
}

.hp-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════ */
/* WHY                                         */
/* ═══════════════════════════════════════════ */
.hp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hp-why-statement {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.hp-why-intro {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 1.25rem;
}

.hp-why-bold {
  font-size: 1.2rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 1.25rem;
}

.hp-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hp-tag {
  background: rgba(49, 126, 254, 0.08);
  color: var(--cp-primary-color);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(49, 126, 254, 0.15);
}

.hp-why-blue-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hp-why-blue-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

/* ═══════════════════════════════════════════ */
/* HIGHLIGHTS                                  */
/* ═══════════════════════════════════════════ */
.hp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hp-high-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(49, 126, 254, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  /* The layout spans */
}

.hp-high-card:nth-child(1),
.hp-high-card:nth-child(2) {
  grid-column: span 6;
}

.hp-high-card:nth-child(3),
.hp-high-card:nth-child(4),
.hp-high-card:nth-child(5) {
  grid-column: span 4;
}

@media (max-width: 992px) {
  .hp-high-card:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .hp-high-card:nth-child(n) {
    grid-column: span 12;
  }
}

.hp-high-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(49, 126, 254, 0.12);
  border-color: rgba(49, 126, 254, 0.4);
}

/* Shine effect */
.hp-high-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: skewX(-25deg);
  transition: 0.7s ease-in-out;
  z-index: 10;
  pointer-events: none;
}

.hp-high-card:hover::before {
  left: 150%;
}

.hp-high-icon {
  position: absolute;
  top: -25px;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(49, 126, 254, 0.25);
  z-index: 2;
  transition: transform 0.3s ease;
}

.hp-high-card:hover .hp-high-icon {
  transform: scale(1.1) rotate(5deg);
}

.hp-high-icon svg {
  width: 24px;
  height: 24px;
}

.hp-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(49, 126, 254, 0.1);
  color: var(--hp-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--hp-blue);
}

/* ═══════════════════════════════════════════ */
/* ROADMAP / LEARNING                          */
/* ═══════════════════════════════════════════ */
.hp-roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hp-roadmap-col {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e8edf5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hp-roadmap-col-blue {
  border-top: 4px solid var(--cp-primary-color);
}

.hp-roadmap-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-roadmap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: #f8fafc;
}

.hp-list-red li::before {
  content: "✕";
  color: #ef4444;
  font-weight: 900;
}

.hp-list-green li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 900;
}

/* ═══════════════════════════════════════════ */
/* BUILD                                       */
/* ═══════════════════════════════════════════ */
.hp-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-build-card {
  position: relative;
  background: radial-gradient(circle at 100% 100%, rgba(65, 195, 133, 0.05) 0%, transparent 50%), radial-gradient(circle at 0% 0%, rgba(49, 126, 254, 0.05) 0%, transparent 50%), #fff;
  border: 1px solid rgba(49, 126, 254, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.hp-build-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(49, 126, 254, 0.1);
  border-color: rgba(49, 126, 254, 0.3);
}

.hp-build-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(49, 126, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.hp-build-card:hover .hp-build-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-green));
  color: #fff;
  border-color: transparent;
}

/* ═══════════════════════════════════════════ */
/* TOOLS                                       */
/* ═══════════════════════════════════════════ */
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.hp-tool-card {
  background: #fff;
  padding: 1.25rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8edf5;
  transition: all 0.2s ease;
}

.hp-tool-card:hover {
  border-color: var(--cp-primary-color);
  color: var(--cp-primary-color);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════ */
/* SALARY                                      */
/* ═══════════════════════════════════════════ */
.hp-salary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-salary-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.hp-salary-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.hp-salary-range {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cp-primary-color);
  margin-bottom: 1rem;
}

.hp-salary-bar {
  background: #e8edf5;
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}

.hp-salary-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cp-primary-color), var(--cp-secondary-color));
  border-radius: 50px;
  width: 0;
  transition: width 1.2s ease 0.3s;
}

.hp-salary-card.hp-visible .hp-salary-fill {
  /* animated via JS */
}

/* ═══════════════════════════════════════════ */
/* WHO IS THIS FOR                             */
/* ═══════════════════════════════════════════ */
.hp-pink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hp-pink-card {
  background: rgba(49, 126, 254, 0.05);
  border: 1px solid rgba(49, 126, 254, 0.15);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
  transition: all 0.3s ease;
}

.hp-pink-card:hover {
  background: #fff;
  border-color: var(--hp-blue);
  box-shadow: 0 4px 12px rgba(49, 126, 254, 0.1);
  transform: translateY(-2px);
}

.hp-not-ideal {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.hp-not-title {
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.25rem;
}

.hp-not-desc {
  font-size: 0.95rem;
  color: #78350f;
}

/* ═══════════════════════════════════════════ */
/* CAREER SUPPORT                              */
/* ═══════════════════════════════════════════ */
.hp-support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: start;
}

.hp-support-card {
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  height: 260px;
  border: none;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.hp-support-card:hover {
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.4);
}

.hp-support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 10px;
  /* background: linear-gradient(-45deg, var(--hp-blue) 0%, #00f2fe 100%); */
  background: linear-gradient(-45deg, var(--hp-accent) 0%, var(--hp-green) 100%);
  z-index: -2;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hp-support-card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: #0f172a;
  border-radius: 8px;
  pointer-events: none;
}

.hp-support-card:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}

.hp-support-card .hp-h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin: 0;
}

.hp-support-card .hp-p-sm {
  font-size: 0.85rem;
  color: #cbd5e1;
  position: relative;
  text-align: center;
  margin: 0;
}

.hp-support-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.hp-support-icon svg {
  width: 48px;
  height: 48px;
  color: #fff;
  stroke-width: 1.5;
}

/* ═══════════════════════════════════════════ */
/* WHY CHOOSE (green checklist)                */
/* ═══════════════════════════════════════════ */
.hp-compare-box {
  background: #fff;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8edf5;
}

.hp-green-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 3rem;
}

.hp-green-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.hp-green-checklist li::before {
  content: "✔";
  color: #22c55e;
  font-weight: 900;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════ */
/* REVIEWS                                     */
/* ═══════════════════════════════════════════ */
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-review-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
}

.hp-review-card:hover {
  transform: translateY(-4px);
}

.hp-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hp-review-text {
  font-size: 0.98rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hp-reviewer-info {
  display: flex;
  flex-direction: column;
}

.hp-reviewer-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #020617;
}

.hp-reviewer-role {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════ */
/* CTA SECTION                                 */
/* ═══════════════════════════════════════════ */
.hp-cta-section {
  background: linear-gradient(135deg, #0a1228 0%, #0f1f50 50%, #0a1228 100%);
  padding: 80px 0;
}

.hp-cta-inner {
  text-align: center;
}

.hp-cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hp-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.hp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════ */
/* MEDIA QUERIES                               */
/* ═══════════════════════════════════════════ */

/* ── 1024px (Tablets Landscape) ── */
@media (max-width: 1024px) {
  .hp-hero-title {
    font-size: 2.6rem;
  }

  .hp-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-salary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-support-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-about-img-box {
    flex: 0 0 320px;
  }

  .hp-about-flex {
    gap: 3rem;
  }

  .hp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 768px (Tablets Portrait) ── */
@media (max-width: 768px) {
  .hp-section {
    padding: 60px 0;
  }

  .hp-h2 {
    font-size: 1.9rem;
  }

  .hp-hero-title {
    font-size: 2rem;
  }

  .hp-hero-inner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hp-about-flex {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hp-about-img-box {
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hp-badge-pill {
    bottom: -12px;
    left: 0;
  }

  .hp-why-grid {
    grid-template-columns: 1fr;
  }

  .hp-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .hp-build-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-salary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-pink-grid {
    grid-template-columns: 1fr;
  }

  .hp-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .hp-feature-grid {
    grid-template-columns: 1fr;
  }

  .hp-why-tags-grid {
    grid-template-columns: 1fr;
  }

  .hp-check-list {
    grid-template-columns: 1fr;
  }

  .hp-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hp-trust-divider {
    width: 40px;
    height: 1px;
  }

  .hp-feature-card {
    padding: 20px;
  }

  .hp-cta-title {
    font-size: 1.9rem;
  }
}

/* ── 480px (Mobile) ── */
@media (max-width: 480px) {
  .hp-section {
    padding: 50px 0;
  }

  .hp-h2 {
    font-size: 1.65rem;
  }

  .hp-hero-title {
    font-size: 1.7rem;
  }

  .hp-hero-subtitle {
    font-size: 1rem;
  }

  .hp-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-btn {
    width: 100%;
    justify-content: center;
  }

  .hp-highlights-grid {
    grid-template-columns: 1fr;
  }

  .hp-build-grid {
    grid-template-columns: 1fr;
  }

  .hp-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-salary-grid {
    grid-template-columns: 1fr;
  }

  .hp-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .hp-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-btn-cta-primary,
  .hp-btn-cta-outline {
    width: 100%;
    justify-content: center;
  }

  .hp-cta-title {
    font-size: 1.6rem;
  }

  .hp-feature-grid {
    gap: 15px;
  }

  .hp-section-header {
    margin-bottom: 2rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
  color: #FFF;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* FAQ Accordion Styles */
.hp-faq-container {
  margin-top: 2rem;
}

.hp-faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}

.hp-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: inherit;
}

.hp-faq-question:hover {
  color: #317EFE;
}

.hp-faq-icon {
  transition: transform 0.3s ease;
  color: #64748b;
}

.hp-faq-question.active .hp-faq-icon {
  transform: rotate(180deg);
  color: #317EFE;
}

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.hp-faq-answer p {
  padding-bottom: 1.5rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========================================================================= */
/* PREMIUM UI OVERHAUL CLASSES                                                */
/* ========================================================================= */

/* Statistics Section */
.hp-statistics {
  background-color: #f8fafc;
  padding: 4rem 0;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.hp-stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #317EFE, #54bc91);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hp-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hp-stat-card:hover::before {
  opacity: 1;
}

.hp-stat-number {
  font-size: 3.5rem;
  color: #317EFE;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #317EFE, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hp-stat-label {
  font-size: 1.1rem;
  color: #475569;
  font-weight: 500;
}

/* Courses & Blogs Common Grid */
.hp-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Premium Cards (Magazine Style) */
.hp-premium-card {
  position: relative;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.hp-premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(49, 126, 254, 0.3);
  border-color: rgba(49, 126, 254, 0.5);
}

.hp-premium-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
  opacity: 0.7;
}

.hp-premium-card:hover img {
  transform: scale(1.15) rotate(2deg);
  opacity: 0.3;
}

.hp-premium-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 5%, rgba(0, 0, 0, 0.4) 50%, transparent);
  pointer-events: none;
}

.hp-premium-card .hp-premium-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  z-index: 2;
  color: #fff;
  transition: transform 0.4s ease;
  transform: translateY(30px);
}

.hp-premium-card:hover .hp-premium-content {
  transform: translateY(0);
}

.hp-premium-card .hp-h3 {
  color: #fff;
  font-size: 1.5rem !important;
}

.hp-premium-card .hp-p-sm {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hp-premium-card .hp-btn {
  opacity: 0;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  transform: translateY(10px);
}

.hp-premium-card:hover .hp-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism Lead Gen Form */
.hp-contact-section {
  background-color: var(--hp-dark);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hp-contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

.hp-contact-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

.hp-contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-lead-form-box {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hp-lead-form-box:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.4);
}

.hp-form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hp-form-input:focus {
  outline: none;
  border-color: var(--hp-blue);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

/* FAQ Enhancements */
.hp-faq-item {
  border-bottom: 1px solid var(--hp-border);
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hp-faq-question {
  padding: 1.2rem 1rem;
}

.hp-faq-question.active {
  background-color: rgba(14, 165, 233, 0.05);
  border-radius: 8px 8px 0 0;
}

.hp-faq-answer {
  padding: 0 1rem;
}

.hp-faq-answer p {
  padding-bottom: 1.5rem;
}

/* Button Micro-interactions */
.hp-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.hp-btn:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

.hp-btn:hover {
  transform: translateY(-2px);
  /* The shadow is handled by specific button classes */
}

/* ═══════════════════════════════════════════ */
/* CONTACT PAGE SPECIFIC                       */
/* ═══════════════════════════════════════════ */

/* Contact Hero */
.hp-contact-hero {
  position: relative;
  background-color: var(--hp-dark);
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}

.hp-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(0, 242, 254, 0.25) 0%, rgba(15, 23, 42, 0) 60%);
  pointer-events: none;
}

.hp-contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Contact Grid Layout */
.hp-contact-main {
  background-color: var(--hp-gray-light);
  padding: 5rem 0;
}

.hp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .hp-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Contact Info Cards (Left Side) */
.hp-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hp-contact-info-card {
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 8px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.hp-contact-info-card:hover {
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.4);
}

.hp-contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -2px;
  margin: auto;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
  background: linear-gradient(-45deg, var(--hp-blue) 0%, #00f2fe 100%);
  z-index: -2;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hp-contact-info-card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: #0f172a;
  border-radius: 8px;
  pointer-events: none;
}

.hp-contact-info-card:hover::before {
  /* No rotation here for info cards since they are wide rectangles, just glow */
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
  filter: brightness(1.2);
}

.hp-contact-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 8px;
}

.hp-contact-icon svg {
  width: 32px;
  height: 32px;
  color: #00f2fe;
  stroke-width: 1.5;
}

.hp-contact-info-card .hp-h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin: 0;
  z-index: 2;
}

.hp-contact-info-card .hp-p-sm {
  font-size: 0.9rem;
  color: #cbd5e1;
  position: relative;
  text-align: center;
  margin: 0;
  z-index: 2;
}

.hp-contact-info-card a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.hp-contact-info-card a:hover {
  color: #00f2fe;
}

/* Contact Form (Right Side) */
.hp-contact-form-container {
  background: #fff;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8edf5;
}

.hp-contact-form .hp-form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.hp-contact-form label {
  display: block;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hp-contact-form input,
.hp-contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background-color: #f8fafc;
  font-size: 1rem;
  color: #1e293b;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
  outline: none;
  border-color: var(--hp-blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(49, 126, 254, 0.1);
}

.hp-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* MERGED WOW-UI.CSS */
/* ==========================================================================
   PREMIUM "WOW" TECH UI UPGRADES (BENTO GRID & AMBIENT GLOWS)
   ========================================================================== */

/* ─── Ambient Glows (Depth) ─── */
.wow-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  animation: wowPulseGlow 8s infinite alternate ease-in-out;
}
.wow-glow-blue {
  background: var(--hp-blue);
}
.wow-glow-violet {
  background: var(--hp-green);
}

/* ─── Bento Box Grid (Modern Layout) ─── */
.wow-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Bento Tile - Glassmorphic Base */
.wow-bento-tile {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 2px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Hover Interaction on Bento Tile */
.wow-bento-tile:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(49, 126, 254, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(49, 126, 254, 0.3);
}

.wow-bento-tile::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 1;
  pointer-events: none;
}
.wow-bento-tile:hover::before {
  left: 200%;
}

/* Bento Tile Icon Wrapper */
.wow-bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(49, 126, 254, 0.1), rgba(65, 195, 133, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-blue);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(49, 126, 254, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.wow-bento-tile:hover .wow-bento-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-green));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(49, 126, 254, 0.3);
}

/* Typography inside Bento */
.wow-bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hp-text-main);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.wow-bento-desc {
  font-size: 0.95rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

/* ─── Grid Spans ─── */
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

@media (max-width: 992px) {
  .span-4, .span-6, .span-8 { grid-column: span 6; }
}
@media (max-width: 768px) {
  .span-4, .span-6, .span-8 { grid-column: span 12; }
}

/* ─── Iridescent Text ─── */
.wow-text-gradient {
  background: linear-gradient(to right, var(--hp-blue), var(--hp-green), var(--hp-accent), var(--hp-blue));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wowTextShine 4s linear infinite;
  display: inline-block;
}

/* ─── Continuous Floating Animation ─── */
.wow-float {
  animation: wowFloat 6s ease-in-out infinite;
}
.wow-float-delayed {
  animation: wowFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}

/* ─── Keyframes ─── */
@keyframes wowFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes wowPulseGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes wowTextShine {
  to { background-position: 200% center; }
}
.span-3 { grid-column: span 3; }
@media (max-width: 992px) { .span-3 { grid-column: span 6; } }
@media (max-width: 768px) { .span-3 { grid-column: span 12; } }

/* ─── Scroll Reveal (IntersectionObserver) ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Spotlight Card Tracking ─── */
.spotlight-card {
  position: relative;
}
.spotlight-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle 250px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(49, 126, 254, 0.08), transparent 80%);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.spotlight-card:hover::after {
  opacity: 1;
}

/* ─── Magnetic Button ─── */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}


/* ─── Dropdown Menu ─── */
.cp-dropdown {
    position: relative;
    display: inline-block;
}

.cp-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border-radius: 12px;
    padding: 8px 0;
    top: calc(100% + 20px);
    left: -20px;
    transform: none;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Invisible bridge so mouse doesn't lose hover state when moving down */
.cp-dropdown-content::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.hp-body.dark-mode .cp-dropdown-content {
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cp-dropdown-content a {
    color: var(--hp-text-main);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.cp-dropdown-content a:hover {
    background-color: rgba(49, 126, 254, 0.1);
    color: var(--hp-blue);
}

.hp-body.dark-mode .cp-dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cp-dropdown:hover .cp-dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cp-dropdown:hover > a svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.cp-dropdown > a svg {
    transition: transform 0.3s ease;
}

/* Mobile responsive dropdowns */
@media (max-width: 992px) {
    .cp-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
        display: none;
    }
    .cp-dropdown:hover .cp-dropdown-content {
        display: block;
    }
    .hp-body.dark-mode .cp-dropdown-content {
        background: transparent;
        border: none;
        box-shadow: none;
    }
}
