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

:root {
  --primary: #0066CC;
  --primary-dark: #0052A3;
  --secondary: #0080FF;
  --accent: #00AAFF;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light-gray: #f1f5f9;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0066CC 0%, #0080FF 100%);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-logo a {
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.nav-btn {
  background: var(--gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 80px 20px 60px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stats .stat-label {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--light-gray);
}

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Problem Section */
.problem-section {
  background: white;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: var(--shadow-lg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.problem-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--danger);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.problem-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  background: var(--gradient);
  color: white;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: var(--shadow-lg);
}

.solution-section .section-header h2,
.solution-section .section-header p {
  color: white;
}

.solution-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: white;
  color: var(--primary);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  display: block;
  margin: 10px 0 15px;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: white;
}

.step-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: white;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: var(--shadow-lg);
  padding: 50px 40px;
}

.benefits-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--light-gray);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tab-btn.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.tab-btn:hover:not(.active) {
  background: white;
  border-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-check {
  background: var(--gradient);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.benefit-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Mockups */
.mockup-phone {
  background: var(--dark);
  border-radius: 30px;
  padding: 15px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  margin: 0 auto;
}

.phone-screen {
  background: white;
  border-radius: 20px;
  padding: 20px;
  min-height: 400px;
}

.screen-header {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.screen-item {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.screen-footer {
  margin-top: 20px;
  text-align: center;
  color: var(--success);
  font-weight: 600;
}

.mockup-browser {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.browser-header {
  background: var(--light-gray);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-dots::before {
  content: "● ● ●";
  color: var(--gray-light);
  font-size: 0.8rem;
}

.browser-url {
  background: white;
  padding: 5px 15px;
  border-radius: 5px;
  flex: 1;
  color: var(--gray);
  font-size: 0.9rem;
}

.browser-content {
  padding: 60px 30px;
  text-align: center;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.badge-icon {
  font-size: 1.5rem;
}

/* How It Works Section */
.video-demo-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--dark);
}

.demo-video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.demo-flow h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 25px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.flow-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.flow-icon {
  background: var(--gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.flow-content h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.flow-content p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.use-case-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.use-case-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.use-case-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.use-case-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.use-case-benefit {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 3px solid var(--primary);
}

/* Comparison Table */
.comparison-section {
  background: white;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: var(--shadow-lg);
}

.comparison-table-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: var(--light-gray);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-table tbody tr:hover {
  background: var(--light-gray);
}

.compare-clientn {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  font-weight: 600;
}

.icon-yes {
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

.icon-no {
  color: var(--danger);
  font-weight: bold;
  font-size: 1.2rem;
}

.icon-maybe {
  color: #f59e0b;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-badge {
  background: var(--light-gray);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.pricing-badge.popular {
  background: var(--gradient);
  color: white;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.pricing-price {
  margin-bottom: 25px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  color: var(--gray);
  font-size: 1.1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features .check {
  color: var(--success);
  font-weight: bold;
}

.pricing-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 12px;
}

.pricing-note p {
  color: var(--dark);
  line-height: 1.6;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
}

.author-role {
  color: var(--gray);
  font-size: 0.9rem;
}

.waitlist-count {
  text-align: center;
}

.count-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  padding: 20px 40px;
  border-radius: 16px;
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.count-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.count-label {
  color: var(--gray);
  font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
  background: var(--gradient);
  color: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content > p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  max-width: 600px;
  margin: 0 auto 30px;
}

.form-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
}

.form-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 10px;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-icon {
  font-size: 1.5rem;
}

/* Card & Forms */
.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.card p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.idea-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.idea-form textarea,
.idea-form input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.idea-form textarea:focus,
.idea-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
}

/* Partner Badge Page */
.badge-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.badge-card:hover {
  box-shadow: var(--shadow-lg);
}

.badge-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--light-gray);
}

.badge-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.badge-size-label {
  font-size: 0.85rem;
  color: var(--gray);
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-card-body {
  padding: 30px;
}

.badge-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  min-height: 80px;
}

.badge-code-section {
  position: relative;
}

.badge-code-section label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.badge-code {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--dark);
  background: #f8fafc;
  resize: vertical;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}

.badge-code:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-copy {
  margin-top: 12px;
  padding: 10px 24px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-copy.copied {
  background: var(--success);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-split {
    grid-template-columns: 1fr;
  }
  
  .video-demo-container {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    gap: 15px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-stats {
    gap: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .solution-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .badge-card-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .badge-preview {
    padding: 20px 15px;
    overflow-x: auto;
  }

  .badge-code {
    font-size: 0.75rem;
  }
}