/*
Theme Name: TargetSmarter
Theme URI: https://targetsmarter.com
Author: TargetSmarter Team
Author URI: https://targetsmarter.com
Description: A modern dark-themed B2B SaaS website for identifying companies by their tech stacks
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: targetsmarter
*/

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: rgb(56, 161, 123);
  --primary-hover: rgb(46, 141, 103);
  --primary-dark: rgb(40, 140, 100);
  --primary-light: rgb(70, 200, 150);
  --bg-black: #000000;
  --bg-dark: rgb(10, 10, 10);
  --bg-darker: rgb(20, 20, 20);
  --text-white: #ffffff;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-primary: rgba(56, 161, 123, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-white);
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-gray-300);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-cta {
  display: none;
  gap: 1rem;
  align-items: center;
}

.btn-sign-in {
  padding: 0.5rem 1rem;
  color: var(--text-gray-300);
  background: transparent;
  transition: color 0.3s ease;
}

.btn-sign-in:hover {
  color: var(--text-white);
}

.btn-primary {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  color: var(--text-white);
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-links a,
.mobile-menu-links button {
  color: var(--text-gray-300);
  transition: color 0.3s ease;
  background: transparent;
  text-align: left;
  width: 100%;
  padding: 0.5rem 0;
}

.mobile-menu-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-links .btn-primary {
  text-align: center;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-black);
  padding-top: 64px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 161, 123, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 161, 123, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.hero-orb-1,
.hero-orb-2 {
  position: absolute;
  width: 384px;
  height: 384px;
  background-color: var(--primary-color);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 3s ease-in-out infinite;
}

.hero-orb-1 {
  top: 25%;
  left: 25%;
  opacity: 0.2;
}

.hero-orb-2 {
  bottom: 25%;
  right: 25%;
  opacity: 0.1;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(56, 161, 123, 0.1);
  border: 1px solid rgba(56, 161, 123, 0.2);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--primary-color);
}

.hero-heading {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: 1.25rem;
  color: var(--text-gray-400);
  margin-bottom: 3rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.2);
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-secondary {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 896px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray-400);
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.75rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

/* Platform Preview Section */
.platform-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-black), var(--bg-dark));
  position: relative;
  overflow: hidden;
}

.platform-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 161, 123, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 161, 123, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.platform-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: var(--primary-color);
  opacity: 0.05;
  filter: blur(150px);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(56, 161, 123, 0.1);
  border: 1px solid rgba(56, 161, 123, 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.section-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.section-badge span {
  font-size: 0.875rem;
  color: var(--primary-color);
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-title .text-primary {
  color: var(--primary-color);
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-gray-400);
  max-width: 672px;
  margin: 0 auto;
}

.platform-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.platform-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(56, 161, 123, 0.2), transparent);
  filter: blur(75px);
  transform: scale(0.95);
}

.platform-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-primary);
  box-shadow: 0 25px 50px -12px rgba(56, 161, 123, 0.2);
}

.platform-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(56, 161, 123, 0.2), transparent, rgba(56, 161, 123, 0.1));
  pointer-events: none;
}

.platform-image {
  width: 100%;
  height: auto;
  display: block;
}

.platform-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.floating-card {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  display: none;
}

.floating-card-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.floating-card-label {
  font-size: 0.875rem;
  color: var(--text-gray-400);
}

.floating-card-realtime {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.realtime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.realtime-label {
  font-size: 0.875rem;
  color: var(--text-gray-300);
}

@media (min-width: 1024px) {
  .floating-card {
    display: block;
  }
  
  .floating-card-1 {
    left: -1rem;
    top: 25%;
  }
  
  .floating-card-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .floating-card-3 {
    right: -1rem;
    bottom: 25%;
  }
}

.platform-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .platform-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.features-bg-image {
  position: absolute;
  inset: 0;
}

.features-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.features-overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.features-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(56, 161, 123, 0.5);
  background-color: rgba(0, 0, 0, 0.6);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: rgba(56, 161, 123, 0.1);
  border: 1px solid rgba(56, 161, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.feature-card-description {
  color: var(--text-gray-300);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-black), var(--bg-dark));
  position: relative;
  overflow: hidden;
}

.hiw-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background-color: var(--primary-color);
  opacity: 0.05;
  filter: blur(150px);
  border-radius: 50%;
}

.hiw-container {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hiw-header {
  text-align: center;
  margin-bottom: 8rem;
}

.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
  transition: height 0.5s ease-out;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.7s ease;
  opacity: 0.3;
  transform: translateY(32px);
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.step-circle-wrapper {
  position: absolute;
  left: 2rem;
  transform: translateX(-50%);
  z-index: 10;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background-color: var(--bg-darker);
}

.timeline-step.active .step-circle {
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.3);
}

.step-circle svg {
  width: 28px;
  height: 28px;
  color: #4b5563;
  transition: color 0.5s ease;
}

.timeline-step.active .step-circle svg {
  color: var(--text-white);
}

.step-content {
  margin-left: 6rem;
  width: 100%;
  transition: all 0.7s ease;
}

.step-card {
  display: inline-block;
  padding: 2rem;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  transition: all 0.5s ease;
}

.timeline-step.active .step-card {
  border-color: rgba(56, 161, 123, 0.3);
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
  color: rgba(56, 161, 123, 0.2);
}

.timeline-step.active .step-number {
  color: var(--primary-color);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-gray-400);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-step {
    gap: 4rem;
  }
  
  .timeline-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .step-circle-wrapper {
    left: 50%;
  }
  
  .step-content {
    width: calc(50% - 4rem);
    margin-left: 0;
    text-align: right;
  }
  
  .timeline-step:nth-child(even) .step-content {
    text-align: left;
  }
  
  .timeline-step::after {
    content: '';
    width: calc(50% - 4rem);
    display: block;
  }
}

/* Tech Stack Showcase Section */
.tech-stack-section {
  padding: 6rem 0;
  background-color: var(--bg-black);
  position: relative;
}

.tech-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 161, 123, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 161, 123, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
}

.tech-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tech-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-gray-400);
  border: 1px solid var(--border-color);
}

.tech-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tech-tab.active {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.3);
  border-color: var(--primary-color);
}

.tech-tab svg {
  width: 16px;
  height: 16px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}

.tech-card {
  padding: 1.5rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(56, 161, 123, 0.5);
  background-color: rgba(255, 255, 255, 0.07);
}

.tech-logo-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-logo-wrapper {
  transform: scale(1.1);
}

.tech-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-name {
  font-weight: 500;
  color: var(--text-white);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.tech-card:hover .tech-name {
  color: var(--primary-color);
}

.tech-cta {
  text-align: center;
  margin-top: 4rem;
}

.tech-cta p {
  color: var(--text-gray-400);
  margin-bottom: 1rem;
}

.btn-tech-request {
  padding: 0.75rem 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-tech-request:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, rgb(10, 10, 10), rgb(0, 0, 0));
  overflow: hidden;
}

/* Explore Free Banner */
.explore-free-banner {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.explore-banner-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.explore-banner-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.explore-banner-text {
  position: relative;
  text-align: center;
}

.explore-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.explore-banner-description {
  color: rgb(209, 213, 219);
  font-size: 1rem;
}

.explore-banner-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.explore-banner-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.explore-banner-button svg {
  width: 16px;
  height: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
}

.pricing-card.popular {
  background: linear-gradient(to bottom, rgba(56, 161, 123, 0.2), rgba(56, 161, 123, 0.05));
  border: 2px solid var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.3);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.popular-badge svg {
  width: 12px;
  height: 12px;
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  color: var(--text-gray-400);
  font-size: 1.125rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-white);
}

.price-period {
  color: var(--text-gray-400);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.plan-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features span {
  color: var(--text-gray-300);
}

.btn-plan {
  width: 100%;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-plan-popular {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.3);
}

.btn-plan-popular:hover {
  background-color: var(--primary-hover);
}

.btn-plan-standard {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-plan-standard:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.pricing-trust {
  margin-top: 5rem;
  text-align: center;
}

.pricing-trust p {
  color: var(--text-gray-400);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.4;
}

.trust-logos div {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .explore-banner-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .explore-banner-text {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--bg-black);
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(56, 161, 123, 0.1), transparent, rgba(56, 161, 123, 0.05));
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 161, 123, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 161, 123, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-color: rgba(56, 161, 123, 0.1);
  border: 1px solid rgba(56, 161, 123, 0.2);
  margin-bottom: 2rem;
}

.cta-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.cta-heading {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.cta-heading .text-primary {
  color: var(--primary-color);
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-gray-400);
  margin-bottom: 2.5rem;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(56, 161, 123, 0.3);
}

.btn-cta-primary:hover {
  background-color: var(--primary-hover);
}

.btn-cta-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
  transform: translateX(4px);
}

.btn-cta-secondary {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--text-gray-400);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
  
  .cta-heading {
    font-size: 3rem;
  }
}

/* Footer */
.site-footer {
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-email {
  font-size: 0.875rem;
}

.footer-email span {
  color: var(--text-gray-400);
}

.footer-email a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: var(--primary-hover);
}

.footer-links h3 {
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: var(--text-gray-400);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

/* Utility Classes */
.relative {
  position: relative;
}

.hidden {
  display: none;
}

@media (min-width: 640px) {
  .sm\:text-6xl {
    font-size: 3.75rem;
  }
}