/* Base styles copied from index.html */
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --soft: #f3f4f6;
  --neonPink: #ff2aa1;
  --neonMagenta: #ff0cb8;
  --neonLime: #b6ff00;
  --neonTeal: #00d2ff;
  --eggplant: #1a0936;
  --btnText: #0b0b0b;
}

.dark {
  --bg: #0b0b0b;
  --text: #f9fafb;
  --muted: #cbd5e1;
  --card: rgba(17, 24, 39, 0.7);
  --card-border: #1f2937;
  --soft: #1f2937;
  --btnText: #0b0b0b;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  transition: background-color 0.25s, color 0.25s;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.center {
  text-align: center;
}
header {
  padding: 1rem 0;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.15s, filter 0.15s, background-color 0.15s,
    color 0.15s, border-color 0.15s;
}
.btn:active {
  transform: translateY(1px);
}
.btn-outline {
  border: 1.5px solid var(--neonPink);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--soft);
}
.text-gradient {
  background: linear-gradient(180deg, var(--neonLime) 0%, var(--neonTeal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}
section {
  scroll-margin-top: 5rem;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
p {
  margin: 0;
}
.muted {
  color: var(--muted);
}
footer {
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page-specific styles for learn-more.html */
.learn-more {
  display: flex;
  flex-direction: row;
}

.learn-more > .container {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: flex-start;
}

/* Sidebar Navigation */
.side-nav {
  position: sticky;
  top: 6rem;
  width: 220px;
  flex-shrink: 0;
}
.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-nav li {
  margin-bottom: 0.5rem;
}
.side-nav a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.side-nav a.active,
.side-nav a:hover {
  color: var(--neonPink);
  background-color: var(--soft);
}

/* Content Area */
.page-content {
  flex: 1;
  line-height: 1.6;
}

.page-content h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.page-content h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Image Styling */
.section-image {
  margin: 1rem 0 2.5rem;
}
.section-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.section.hidden {
  display: none;
}

/* Pricing Table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.plan {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--card-border);
}

/* Responsive */
@media (max-width: 768px) {
  .learn-more > .container {
    flex-direction: column;
  }
  .side-nav {
    position: static;
    width: 100%;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .side-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .side-nav li {
    margin: 0;
  }
}

/* Add this to your learn-more.css file */
.icon-card-content {
  display: flex;
  align-items: stretch; /* This makes both items the same height */
  gap: 1.5rem; /* Space between icon and text */
}

.card-icon-stretch {
  display: block;
  flex-shrink: 0; /* Prevents the icon from shrinking */
  width: 200px; /* Set a fixed width for the icon */
  height: auto; /* Let the height be determined by the container */
  object-fit: contain; /* Ensures the icon scales without distortion */
}

.card-text-content {
  flex-grow: 1; /* Allows the text block to take up the remaining space */
}

/* Optional: Reset top margin on the first heading inside the text block */
.card-text-content > h3:first-child {
  margin-top: 0;
}

/* Add this to the "Page-specific styles" section of your CSS */

/* Update the .plan class to support badge positioning */
/* Update the .plan class and add new highlight styles */
.plan {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid; /* Border color will be set by highlight classes */
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Green highlight for standard plans */
.plan-highlight-standard {
  border-color: var(--neonLime);
  box-shadow: 0 8px 25px rgba(182, 255, 0, 0.15);
}

.dark .plan-highlight-standard {
  box-shadow: 0 0 20px rgba(182, 255, 0, 0.2);
}

/* Pink highlight for the popular plan */
.plan-highlight-popular {
  border-color: var(--neonPink);
  box-shadow: 0 8px 30px rgba(255, 42, 161, 0.2);
  transform: scale(1.05); /* Make it pop */
}

.dark .plan-highlight-popular {
  box-shadow: 0 0 25px rgba(255, 42, 161, 0.3);
}

/* Hover effect for standard plans */
.plan-highlight-standard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(182, 255, 0, 0.2);
}

.dark .plan-highlight-standard:hover {
  box-shadow: 0 0 30px rgba(182, 255, 0, 0.3);
}

/* Badge for the popular plan */
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neonPink); /* Match the highlight color */
  color: #fff; /* White text for contrast */
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}






