/* ========================================
   SEO/GEO Platform - Static Export Styles
   ======================================== */

/* CSS Variables */
:root {
  --background: hsl(220, 20%, 4%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 18%, 8%);
  --card-foreground: hsl(210, 40%, 98%);
  --popover: hsl(220, 18%, 8%);
  --popover-foreground: hsl(210, 40%, 98%);
  --primary: hsl(195, 77%, 59%);
  --primary-foreground: hsl(220, 20%, 4%);
  --secondary: hsl(220, 15%, 15%);
  --secondary-foreground: hsl(210, 40%, 98%);
  --muted: hsl(220, 15%, 15%);
  --muted-foreground: hsl(215, 20%, 65%);
  --accent: hsl(195, 77%, 59%);
  --accent-foreground: hsl(220, 20%, 4%);
  --destructive: hsl(195, 77%, 59%);
  --destructive-foreground: hsl(220, 20%, 4%);
  --border: hsl(220, 15%, 20%);
  --input: hsl(220, 15%, 20%);
  --ring: hsl(195, 77%, 59%);
  --radius: 0.75rem;

  --gradient-primary: linear-gradient(135deg, hsl(195, 77%, 59%), hsl(195, 90%, 70%));
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -20%, hsla(195, 77%, 59%, 0.3), transparent);
  --gradient-card: linear-gradient(180deg, hsla(195, 77%, 59%, 0.05), transparent);
  --shadow-glow: 0 0 40px hsla(195, 77%, 59%, 0.3);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.875rem;
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Glass Effect */
.glass {
  /* background: hsla(220, 18%, 8%, 0.8); */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);  /* for older Safari / iOS */
}
/* New add it */
.glass-card {
  background: linear-gradient(180deg, hsla(195, 77%, 59%, 0.08), hsla(195, 77%, 59%, 0.02));
  -webkit-backdrop-filter: blur(12px); /* Safari / iOS 17 and earlier */
  backdrop-filter: blur(12px);
}
/* new Add it */
/* The Old on .glass-card {
  background: linear-gradient(180deg, hsla(195, 77%, 59%, 0.08), hsla(195, 77%, 59%, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(220, 15%, 20%, 0.5);
  border-radius: var(--radius);
} */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px hsla(195, 77%, 59%, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(195, 77%, 59%, 0.4);
}

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

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid hsla(220, 15%, 20%, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px hsla(195, 77%, 59%, 0.3);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-foreground);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 2rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
  }
}

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1.5rem 1rem;
  border-top: 1px solid hsla(220, 15%, 20%, 0.5);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
}

/* Main Content */
main {
  padding-top: 64px;
}

@media (min-width: 1024px) {
  main {
    padding-top: 80px;
  }
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-lg {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section-lg {
    padding: 8rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(220, 15%, 20%, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsla(220, 15%, 20%, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(195, 77%, 59%, 0.1);
  border: 1px solid hsla(195, 77%, 59%, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, var(--foreground), var(--muted-foreground));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsla(195, 77%, 59%, 0.5);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: hsla(195, 77%, 59%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Steps / How It Works */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: 3rem;
  }
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: hsla(195, 77%, 59%, 0.1);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--primary);
}

.comparison-table .cross {
  color: var(--muted-foreground);
}

/* FAQ Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: hsla(195, 77%, 59%, 0.05);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Pricing Cards */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(195, 77%, 59%, 0.2);
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 1rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-item input {
  accent-color: var(--primary);
}

/* Footer */
.footer {
  border-top: 1px solid hsla(220, 15%, 20%, 0.5);
  background: hsla(220, 18%, 6%, 0.5);
}

.footer-newsletter {
  padding: 4rem 0;
  border-bottom: 1px solid hsla(220, 15%, 20%, 0.5);
}

.footer-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter h3 {
  margin-bottom: 1rem;
}

.footer-newsletter p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
}

.footer-main {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 1rem 0;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: color 0.2s ease, background 0.2s ease;
}

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

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid hsla(220, 15%, 20%, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.footer-badges span {
  color: var(--muted-foreground);
}

.footer-badges strong {
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Audience Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.audience-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.audience-item:hover {
  border-color: hsla(195, 77%, 59%, 0.5);
  transform: translateY(-4px);
}

.audience-item svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.audience-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Team Section */
.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secondary);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.team-member h4 {
  margin-bottom: 0.25rem;
}

.team-member p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Resources Grid */
.resources-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resource-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: hsla(195, 77%, 59%, 0.5);
  transform: translateY(-4px);
}

.resource-image {
  height: 180px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.resource-content {
  padding: 1.5rem;
}

.resource-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(195, 77%, 59%, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.resource-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.resource-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .roadmap {
    flex-direction: row;
  }
}

.roadmap-item {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.roadmap-quarter {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(195, 77%, 59%, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.roadmap-item h4 {
  margin-bottom: 0.75rem;
}

.roadmap-item ul {
  list-style: none;
}

.roadmap-item li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.roadmap-item li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: hsla(195, 77%, 59%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.text-muted {
  color: var(--muted-foreground);
}

.text-white {
  color: white;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

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

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md:flex {
    display: flex;
  }

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

@media (min-width: 1024px) {
  .lg:flex {
    display: flex;
  }

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

/* Image Placeholders */
.image-placeholder {
  background: var(--secondary);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-glow);
  z-index: 100;
  display: none;
}

.toast.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* AI SEO Importance Section */
.ai-seo-importance {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.ai-seo-importance .ai-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ai-seo-importance .ai-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.ai-seo-importance .ai-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.ai-seo-importance .ai-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ai-seo-importance .ai-features li {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
}

.ai-seo-importance .ai-features strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #111827;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ai-seo-importance {
        padding: 3rem 1.25rem;
    }

    .ai-seo-importance .ai-title {
        font-size: 1.75rem;
    }

    .ai-seo-importance .ai-description {
        font-size: 1.05rem;
    }
}

/* ==============================
   FEATURES – DARK SAAS STYLE
   ============================== */

.platform-features {
    padding: 6rem 1.5rem;
    background: radial-gradient(
        circle at top,
        #0f172a 0%,
        #020617 60%
    );
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Title */
.features-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.features-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* Grid */
.features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Feature Card */
.feature-card {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56,189,248,0.5);
    box-shadow:
        0 0 0 1px rgba(56,189,248,0.15),
        0 20px 40px rgba(0,0,0,0.6);
}

/* Icon container */
.feature-card .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(56,189,248,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card .feature-icon svg,
.feature-card .feature-icon i {
    color: #38bdf8;
    font-size: 20px;
}

/* Card Title */
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Card Text */
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .features-title {
        font-size: 2.1rem;
    }

    .features-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* ===== How It Works – Dark SaaS Style ===== */

.how-it-works {
    padding: 6rem 1.5rem;
    background: #020617;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.how-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.how-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card */
.how-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

/* Step Number */
.how-step {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

/* Card Title */
.how-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Card Text */
.how-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .how-title {
        font-size: 2.1rem;
    }

    .how-description {
        font-size: 1rem;
    }
}

/* ===== Affiliate Best AI Tools – Dark SaaS Style ===== */

.affiliate-tools {
    padding: 6rem 1.5rem;
    background: #020617;
}

.tools-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.tools-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.tools-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.tools-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Tool Card */
.tool-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
    position: relative;
}

/* Badge */
.tool-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38bdf8;
    background: rgba(56,189,248,0.12);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Card Title */
.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Card Text */
.tool-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

/* Link */
.tool-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #38bdf8;
    text-decoration: none;
}

.tool-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-title {
        font-size: 2.1rem;
    }

    .tools-description {
        font-size: 1rem;
    }
}

/* ===== Affiliate Hosting – Dark SaaS Style ===== */

.affiliate-hosting {
    padding: 6rem 1.5rem;
    background: #020617;
}

.hosting-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hosting-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hosting-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.hosting-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card */
.hosting-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

/* Badge */
.hosting-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38bdf8;
    background: rgba(56,189,248,0.12);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Title */
.hosting-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Text */
.hosting-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

/* Link */
.hosting-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #38bdf8;
    text-decoration: none;
}

.hosting-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hosting-title {
        font-size: 2.1rem;
    }

    .hosting-description {
        font-size: 1rem;
    }
}

/* ===== AI-Powered SEO & GEO Platform ===== */

.ai-platform {
    padding: 6rem 1.5rem;
    background: #020617;
}

.platform-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.platform-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.platform-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.platform-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card */
.platform-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

/* Step Number */
.platform-step {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

/* Title */
.platform-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Text */
.platform-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .platform-title {
        font-size: 2.1rem;
    }

    .platform-description {
        font-size: 1rem;
    }
}
/* ===== Final CTA – Dark SaaS ===== */

.final-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(
        180deg,
        #020617 0%,
        #020617 100%
    );
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.03);
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

/* ===== Core Platform Capabilities ===== */

.core-features {
    padding: 6rem 1.5rem;
    background: #020617;
}

.core-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.core-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.core-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.core-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.core-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

.core-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.core-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* ===== AI & GEO Intelligence Layer ===== */

.ai-geo-layer {
    padding: 6rem 1.5rem;
    background: #020617;
}

.ai-geo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ai-geo-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.ai-geo-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.ai-geo-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card */
.ai-geo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

.ai-geo-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ai-geo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}
/* ===== SEO Execution & Optimization Tools ===== */

.seo-execution {
    padding: 6rem 1.5rem;
    background: #020617;
}

.seo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.seo-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.seo-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.seo-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card */
.seo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

.seo-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.seo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}
/* ===== Measurement, Control & Transparency ===== */

.measurement-control {
    padding: 6rem 1.5rem;
    background: #020617;
}

.measurement-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.measurement-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.measurement-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Grid */
.measurement-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card */
.measurement-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

.measurement-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.measurement-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}
/* ===== Features Page CTA ===== */

.features-cta {
    padding: 6rem 1.5rem;
    background: #020617;
}

.features-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4rem 2rem;
}

.features-cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-cta-description {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Actions */
.features-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .features-cta-title {
        font-size: 2rem;
    }

    .features-cta-description {
        font-size: 1rem;
    }
}

/* ===== How It Works – Phases ===== */

.how-phase {
    padding: 6rem 1.5rem;
    background: #020617;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-phase-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.how-phase-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.how-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.how-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: left;
}

.how-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.how-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}
/* ===== How It Works – CTA ===== */

.how-cta {
    padding: 6rem 1.5rem;
    background: #020617;
}

.how-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4rem 2rem;
}

.how-cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.how-cta-description {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .how-cta-title {
        font-size: 2rem;
    }

    .how-cta-description {
        font-size: 1rem;
    }
}
/* ===== Contact – What Happens Next ===== */

.contact-next-steps {
    padding: 5rem 1.5rem;
    background: #020617;
}

.contact-next-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-next-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.next-steps-list li {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.75rem;
}

.next-steps-list strong {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.next-steps-list span {
    font-size: 0.95rem;
    color: #94a3b8;
}
/* ===== Contact – Who this is for ===== */

.contact-audience {
    padding: 5rem 1.5rem;
    background: #020617;
}

.contact-audience-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-audience-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.audience-list li {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem;
    font-size: 0.95rem;
    color: #cbd5f5;
}
/* ===== Contact – Final CTA ===== */

.contact-final-cta {
    padding: 6rem 1.5rem;
    background: #020617;
}

.contact-final-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4rem 2rem;
}

.contact-final-container h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-final-container p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.contact-final-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
/* Category Page Tweaks */
.category .entry-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.category .entry-title a {
    color: inherit;
    text-decoration: none;
}

.category .entry-title a:hover {
    text-decoration: underline;
}

.category time {
    font-size: 0.85rem;
    color: #9ca3af;
    display: block;
    margin-top: 0.75rem;
}

.category .pagination {
    text-align: center;
}

/* Category Hosting Post */
.single-post .entry-content {
	max-width: 820px;
}
.single-post h2 {
    margin-top: 3.5rem;
}
.single-post .entry-content > p:first-of-type {
    font-size: 1.05rem;
    color: #e5e7eb;
}

/* Hide WordPress default meta for all post */
.entry-meta,
.post-author,
.post-date,
.byline,
.posted-on {
    display: none !important;
}

/* Featured image hero */
.post-hero-image img {
    width: 100%;
    border-radius: 18px;
    margin: 2rem 0;
}

/* Reading time */
.reading-time {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
}
/* AI Evaluation Framework Box Post */
.framework-box {
    background: linear-gradient(180deg, rgba(14,165,233,0.08), rgba(14,165,233,0.02));
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin: 2.5rem 0;
    
}

/* Title inside the box */
.framework-box h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e5f2ff;
    margin-bottom: 0.75rem;
}

/* Checklist list */
.framework-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Thumbnails for Blog */
.post-thumb img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.category-description {
    max-width: 800px;
    margin: 1rem auto 2rem auto;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}


/* Each checklist item */
.framework-box li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Custom check icon */
.framework-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}
/* CATEGORY HERO */
.category-hero {
    padding: 90px 0;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: white;
    text-align: center;
}

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-description {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* POSTS GRID */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    padding: 1.8rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.post-card:hover {
    transform: translateY(-6px);
}

.post-title a {
    text-decoration: none;
    color: #111;
    font-size: 1.3rem;
}

.post-excerpt {
    color: #555;
    margin-top: 0.8rem;
}
/* knowledge hub */
.feature-card {
    transition: all .25s ease;
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.content-styled .glass-card {
    margin-bottom: 2rem;
}

.content-styled ul li a {
    color: #38bdf8;
    text-decoration: none;
}

.content-styled ul li a:hover {
    text-decoration: underline;
}
/* Knowledge Hub Category Cards */
.category-card {
    text-align: left;
    padding: 2rem;
    position: relative;
}

.category-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Cornerstone Cards */
.cornerstone-card {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cornerstone-card h3 a {
    color: #fff;
    text-decoration: none;
}

.cornerstone-card h3 a:hover {
    color: #38bdf8;
}

/* Buttons small */
.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
}
.entry-title a {
    color: #fff;
    text-decoration: none;
}

.entry-title a:hover {
    color: #38bdf8;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}
.content-styled ul li a {
    color: #38bdf8;
    text-decoration: none;
}

.content-styled ul li a:hover {
    text-decoration: underline;
}
.auto-link {
    color: #38bdf8;
    font-weight: 500;
    text-decoration: none;
}

.auto-link:hover {
    text-decoration: underline;
}
/* BreadCrumbs */
.breadcrumbs {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.breadcrumbs a {
    color: #38bdf8;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #fff;
}
/* Pillar-Box */
.pillar-box {
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.2);
    padding: 1.5rem;
    border-radius: 14px;
    margin-bottom: 2rem;
}

.pillar-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pillar-box ul {
    margin: 0;
    padding-left: 1.2rem;
}

.pillar-box li {
    margin-bottom: 0.5rem;
}

.pillar-box a {
    color: #38bdf8;
    text-decoration: none;
}

.pillar-box a:hover {
    text-decoration: underline;
}

/* Remove meta data */
.entry-meta .byline, .entry-meta .cat-links { display: none; }

.entry-meta .posted-on { display: none; }

/* Table Of Content TOC */
.toc-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.toc-box h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.toc-box h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.toc-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.toc-box li {
  margin: 0.4rem 0;
}

.toc-box a {
  color: #4cc3ff;
  text-decoration: none;
  font-size: 0.95rem;
}
.toc-box a:hover {
  text-decoration: underline;
}
/* Pillar Box */
.pillar-box {
  background: rgba(56,189,248,0.05);
  border-left: 4px solid #38bdf8;
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  border-radius: 8px;
}

/* Hosting Table */
.hosting-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 16px;
}

.hosting-table th,
.hosting-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.hosting-table th {
  background: #111827;
  color: #ffff;
}

.hosting-table tr:nth-child(even) {
  background: #1F271B;
}
/* Knowledge Hub Sections */
.page .wp-block-heading {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  border-bottom: 2px solid #0b5cff;
  padding-bottom: 6px;
}
/* Start Knowledge Hub Grid */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Knowledge Cards */
.knowledge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.knowledge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.knowledge-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #38bdf8;
}

.knowledge-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.knowledge-card ul {
  list-style: none;
  padding-left: 0;
}

.knowledge-card li {
  margin-bottom: 6px;
}

.knowledge-card a {
  text-decoration: none;
  color: #facc15;
  font-size: 0.95rem;
}

.knowledge-card a:hover {
  text-decoration: underline;
}
/* Force Knowledge Hub Grid Alignment */
.knowledge-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

/* Make all cards same height */
.knowledge-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.knowledge-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}
/* Fix responsive stacking */
@media (max-width: 900px) {
  .knowledge-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .knowledge-grid {
    grid-template-columns: 1fr !important;
  }
}

/* End Knowledge Hub Grid */
/* Start Pillar Nav */
.pillar-nav {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0,255,255,0.2);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 25px;
}

.pillar-nav a {
  color: #4ddcff;
  text-decoration: none;
  font-weight: 600;
}

.pillar-nav a:hover {
  text-decoration: underline;
}
/* End Pillar Nav */
/* Start Pro TOC */
.pro-toc {
  background: linear-gradient(145deg, rgba(0,255,255,0.08), rgba(0,0,0,0.4));
  border: 1px solid rgba(0,255,255,0.2);
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 30px;
  font-size: 15px;
}

.pro-toc strong {
  font-size: 17px;
  display: block;
  margin-bottom: 10px;
}

.pro-toc ul {
  margin: 0;
  padding-left: 18px;
}

.pro-toc li {
  margin-bottom: 6px;
}

.pro-toc a {
  color: #4ddcff;
  font-weight: 600;
  text-decoration: none;
}

.pro-toc a:hover {
  text-decoration: underline;
}
/* End Pro TOC */
/* Start Back To Top */
.back-to-toc {
  margin-top: 20px;
}

.back-to-toc a {
  font-size: 14px;
  color: #4ddcff;
  font-weight: 600;
  text-decoration: none;
}

.back-to-toc a:hover {
  text-decoration: underline;
}
/* End Back To Top */

/* Start TOC Box */
.toc-box {
  position: none;
  top: 100px;
  max-width: 320px;
  background: rgba(20,30,40,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 14px;
  font-size: 14px;
  color: #fff;
}
/* kkkkkkk */
/* 00000 */
.toc-box h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

#toc-toggle {
  background: none;
  border: 1px solid #00d9ff;
  color: #00d9ff;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 10px;
}

#toc-list {
  list-style: none;
  padding-left: 0;
}

#toc-list li {
  margin-bottom: 6px;
}

#toc-list a {
  color: #9adfff;
  text-decoration: none;
}

#toc-list a.active {
  color: #00ffff;
  font-weight: bold;
}
/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* End TOC Box */
/* Start Template TOC Box */
.toc-box ul li a {
  display:block;
  padding:6px 10px;
  border-radius:8px;
  background:rgba(255,255,255,0.04);
  margin-bottom:4px;
}
.toc-box ul li a:hover {
  background:rgba(255,255,255,0.12);
}
/* End Template TOC Box */