/*
 * Public Pages Stylesheet - DevCRM
 * Contains all styles for public-facing pages (pricing, features, home, etc.)
 */

/* ==========================================================================
   CSS ANIMATIONS
   ========================================================================== */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* ==========================================================================
   HERO SECTIONS - High Specificity to Override Tailwind
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, rgb(17, 24, 39) 0%, rgb(31, 41, 55) 50%, rgb(55, 65, 81) 100%) !important;
  color: white !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 6rem 0 !important;
  min-height: 70vh !important;
}

.hero-section--features {
  background: linear-gradient(135deg, rgb(17, 24, 39) 0%, rgb(31, 41, 55) 50%, rgb(55, 65, 81) 100%) !important;
}

.hero-section__title {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.hero-section__subtitle {
  font-size: 1.25rem !important;
  margin-bottom: 2rem !important;
  color: #f1f5f9 !important;
  font-weight: 500 !important;
}

.hero-section__cta {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-section__cta--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
}

/* Hero floating elements */
.hero-floating-element {
  position: absolute;
  opacity: 0.1;
}

.hero-floating-element--1 {
  top: 10%;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-element--2 {
  top: 20%;
  right: 15%;
  animation: float 4s ease-in-out infinite reverse;
}

.hero-floating-element--3 {
  bottom: 15%;
  left: 20%;
  animation: float 5s ease-in-out infinite;
}

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

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
}

.pricing-cards-container {
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) {
  .pricing-cards-container {
    flex-direction: row;
    gap: 2rem;
  }
  
  .pricing-card {
    flex: 1;
  }
}

@media (max-width: 1023px) {
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    display: block;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

@media (min-width: 1024px) {
  .pricing-card {
    max-width: 400px;
  }
}

.pricing-card--popular {
  border: 3px solid #3b82f6;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .pricing-card--popular {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
}

.pricing-card__badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.pricing-card__description {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
}

.pricing-card__period {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pricing-card__feature-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card__feature-text {
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-card__cta--primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pricing-card__cta--outline {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.pricing-info {
  text-align: center;
  margin-top: 3rem;
}

.pricing-info__text {
  color: #475569;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing-info__subtext {
  color: #64748b;
  font-size: 0.95rem;
}

.pricing-info__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 5rem 0;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.faq-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto;
  border-radius: 2px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.faq-item--blue {
  border-left: 5px solid #3b82f6;
}

.faq-item--green {
  border-left: 5px solid #10b981;
}

.faq-item--purple {
  border-left: 5px solid #8b5cf6;
}

.faq-item__title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.faq-item__text {
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.features-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.features-subtitle {
  font-size: 1.1rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.features-category-title--ai {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-category-title--marketing {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-category-title--automation {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card--ai {
  border-left: 5px solid #3b82f6;
}

.feature-card--marketing {
  border-left: 5px solid #10b981;
}

.feature-card__icon-container {
  animation: pulse-glow 2s infinite;
  margin-bottom: 1rem;
}

.feature-card__icon--ai {
  color: #3b82f6;
}

.feature-card__icon--marketing {
  color: #10b981;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.feature-card__description {
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   AUTOMATION SHOWCASE
   ========================================================================== */

.automation-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.automation-showcase__floating-element {
  position: absolute;
  opacity: 0.2;
}

.automation-showcase__floating-element--1 {
  top: 10%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.automation-showcase__floating-element--2 {
  bottom: 15%;
  left: 10%;
  animation: float 5s ease-in-out infinite reverse;
}

.automation-showcase__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.automation-showcase__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.automation-showcase__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.automation-feature {
  text-align: center;
  padding: 1.5rem;
}

.automation-feature__icon {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.automation-feature__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.automation-feature__description {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* New Automation Feature Cards */
.automation-feature-card {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.automation-feature-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.automation-feature-card__icon-wrapper {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 auto 1rem auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.automation-feature-card:hover .automation-feature-card__icon-wrapper {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
}

.automation-feature-card__content {
  color: white !important;
}

.automation-feature-card__title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin-bottom: 0.5rem !important;
}

.automation-feature-card__description {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.5 !important;
}

/* Automation Features List */
.automation-features-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

.marketing-features-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

.automation-feature-item,
.marketing-feature-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.automation-feature-item:hover,
.marketing-feature-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

.automation-feature-item svg,
.marketing-feature-item svg {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.automation-feature-item div,
.marketing-feature-item div {
  flex: 1 !important;
}

.automation-feature-item span,
.marketing-feature-item span {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 4px !important;
}

.automation-feature-item p,
.marketing-feature-item p {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  .automation-features-list {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   CALL TO ACTION SECTION
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section__background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 50px 50px;
  animation: drift 20s linear infinite;
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #f1f5f9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.cta-button--primary {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-button--outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

/* ==========================================================================
   FOOTER STYLES - Updated to match HTML classes
   ========================================================================== */

.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%) !important;
  color: white !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 4rem 0 2rem 0 !important;
}

.footer__background {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  opacity: 0.05 !important;
}

.footer__content {
  position: relative !important;
  z-index: 2 !important;
}

.footer__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 3rem !important;
  margin-bottom: 3rem !important;
}

.footer__brand {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 1.5rem !important;
}

.footer__brand-icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
  padding: 8px !important;
  border-radius: 12px !important;
  margin-right: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer__brand-name {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: white !important;
}

.footer__description {
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  margin-bottom: 1.5rem !important;
}

.footer__social {
  margin-top: 1.5rem !important;
}

.footer__social-links {
  display: flex !important;
  gap: 12px !important;
}

.footer__social-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px) !important;
}

.footer__section-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  color: white !important;
}

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

.footer__nav-item {
  margin-bottom: 12px !important;
}

.footer__nav-link {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
  padding: 8px 0 !important;
}

.footer__nav-link:hover {
  color: white !important;
  transform: translateX(5px) !important;
}

.footer__nav-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  margin-right: 12px !important;
  display: block !important;
}

.footer__nav-dot--green {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.footer__nav-dot--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.footer__nav-dot--purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

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

.footer__contact-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.footer__contact-icon {
  padding: 8px !important;
  border-radius: 8px !important;
  margin-right: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer__contact-icon--red {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.footer__contact-icon--green {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.footer__contact-icon--orange {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.footer__contact-link {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.footer__contact-link:hover {
  color: white !important;
}

.footer__contact-address {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding-top: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-items: center !important;
  text-align: center !important;
}

.footer__bottom-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  align-items: center !important;
}

.footer__copyright {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.footer__credits {
  color: #94a3b8 !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.footer__credits-link {
  color: #3b82f6 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.footer__credits-link:hover {
  color: #60a5fa !important;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand__icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 8px;
  border-radius: 12px;
  margin-right: 12px;
}

.footer-brand__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 500;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social__links {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-section__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section__item {
  margin-bottom: 12px;
}

.footer-section__link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-section__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 12px;
}

.footer-section__dot--green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.footer-section__dot--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.footer-section__dot--purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.footer-contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-contact__item--address {
  align-items: flex-start;
}

.footer-contact__icon {
  padding: 8px;
  border-radius: 8px;
  margin-right: 12px;
}

.footer-contact__icon--red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.footer-contact__icon--green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.footer-contact__icon--orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  margin-top: 2px;
}

.footer-contact__link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-contact__text {
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom__primary {
  color: #cbd5e1;
  font-weight: 500;
  margin: 0;
}

.footer-bottom__secondary {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom__link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section__title {
    font-size: 2.5rem;
  }
  
  .pricing-card--popular {
    transform: none;
  }
  
  .features-title,
  .faq-title {
    font-size: 2rem;
  }
  
  .cta-section__title {
    font-size: 2rem;
  }
  
  .automation-showcase {
    padding: 2rem;
  }
  
  .automation-showcase__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section__title {
    font-size: 2rem;
  }
  
  .pricing-card__price {
    font-size: 2.5rem;
  }
  
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .pricing-cards-container {
    display: block;
  }
}
/* Fix for duplicate navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Add padding to compensate for fixed header */
main {
  padding-top: 4rem; /* 64px to match navbar height */
}

/* Mobile menu styling */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .pricing-section {
    padding: 2rem 0;
  }
  
  .pricing-section .container {
    padding: 0 1rem;
  }
  
  .pricing-cards-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .pricing-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    display: block;
    margin-bottom: 2rem;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4b5563;
    transition: background-color 0.2s;
  }
  
  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link.active {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }
}

/* Hide any duplicate navigation elements */
body > ul, 
body > div > ul,
body > div.container > ul {
  display: none !important;
}
