/* ===================================
   TECHPULSE CSS - GRADIENT MODERN STYLE
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1F36;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #1A1F36;
  font-size: 16px;
}

a {
  color: #2D5BFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00D9FF;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.95) 0%, rgba(0, 217, 255, 0.95) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.2);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(45, 91, 255, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(45, 91, 255, 0.98) 0%, rgba(0, 217, 255, 0.98) 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 56px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero .tagline {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero .subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: #ffffff;
  color: #2D5BFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #f5f7fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat {
  color: #ffffff;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 48px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.premium-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2D5BFF 0%, #00D9FF 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.25);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-weight: 700;
  color: #2D5BFF;
  font-size: 16px;
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
  padding: 60px 20px;
  border-radius: 24px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2D3748;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid rgba(45, 91, 255, 0.1);
}

.testimonial-card .author strong {
  color: #1A1F36;
  font-size: 16px;
}

.testimonial-card .author span {
  color: #718096;
  font-size: 14px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
}

.cta-banner h2 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* REVIEWS SECTION */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.review-card, .software-review-card, .tool-card, .report-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card:hover, .software-review-card:hover, .tool-card:hover, .report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.rating {
  color: #FFB800;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.specs, .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(45, 91, 255, 0.05);
  border-radius: 8px;
}

.specs li, .features li {
  color: #4A5568;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.specs li::before, .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5BFF;
  font-weight: 700;
}

/* CATEGORY GRID */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.category-card img {
  width: 64px;
  height: 64px;
}

/* PLATFORMS & TAGS */
.platforms, .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.platform-tag, .tag {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
  color: #2D5BFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* TABS */
.content-tabs {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.tab-btn {
  padding: 12px 24px;
  background: #ffffff;
  color: #2D5BFF;
  border: 2px solid rgba(45, 91, 255, 0.2);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* PREMIUM LABELS */
.premium-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.report-card.premium, .insight-card.premium {
  border: 2px solid rgba(255, 184, 0, 0.3);
  position: relative;
}

/* TRENDS */
.trends-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trend-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trend-indicator {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
}

.trend-indicator.high {
  background: linear-gradient(135deg, #00D9FF 0%, #2D5BFF 100%);
  color: #ffffff;
}

.trend-indicator.medium {
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  color: #ffffff;
}

/* STARTUP CARDS */
.startups-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.startup-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.startup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.startup-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #718096;
  font-size: 14px;
  padding-top: 12px;
  border-top: 2px solid rgba(45, 91, 255, 0.1);
}

/* FEATURED STARTUP */
.featured-banner {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.3);
}

.featured-banner .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.featured-banner h2 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 40px;
}

.featured-banner .tagline {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.startup-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item strong {
  font-size: 14px;
  opacity: 0.9;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-select {
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid rgba(45, 91, 255, 0.2);
  background: #ffffff;
  color: #2D5BFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.filter-select:hover {
  border-color: #2D5BFF;
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.15);
}

/* PRICING PLANS */
.pricing-plans {
  padding: 60px 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.featured {
  border: 3px solid #2D5BFF;
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.25);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.pricing-card h3 {
  font-size: 24px;
  text-align: center;
}

.price {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 18px;
  color: #718096;
  -webkit-text-fill-color: #718096;
}

.guarantee {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-top: 16px;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.benefit-card img {
  width: 64px;
  height: 64px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #4A5568;
  line-height: 1.7;
}

/* CONTACT OPTIONS */
.options-grid, .info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.option-card, .info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.option-card:hover, .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.option-card img, .info-card img {
  width: 64px;
  height: 64px;
}

/* BOOKING CARD */
.booking-card {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
}

.booking-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 150px;
}

.detail-item strong {
  color: #2D5BFF;
  font-size: 14px;
}

/* EXPECTATIONS GRID */
.expectations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.expectation-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.expectation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

/* LEGAL CONTENT */
.legal-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p, .content-wrapper li {
  color: #2D3748;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-wrapper ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper ul li {
  list-style: disc;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00D98F 0%, #00D9FF 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 217, 143, 0.3);
}

.confirmation-message {
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
}

.steps-grid, .explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card, .explore-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-card:hover, .explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.contact-reminder {
  text-align: center;
  padding: 40px 20px;
}

.contact-info {
  margin-top: 24px;
  padding: 24px;
  background: rgba(45, 91, 255, 0.05);
  border-radius: 12px;
  display: inline-block;
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* GUIDE CONTENT */
.guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.guide-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 400px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  margin-bottom: 20px;
}

.guide-card h3 {
  margin-bottom: 16px;
}

.guide-card ul {
  padding-left: 20px;
}

.guide-card ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4A5568;
}

/* RECOMMENDATIONS GRID */
.recommendations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.recommendation-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.recommendation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(45, 91, 255, 0.2);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A1F36 0%, #2D3748 100%);
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 300px;
  max-width: 400px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 2 1 400px;
}

.footer-column {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 8px;
  font-size: 16px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #00D9FF;
  transform: translateX(4px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 31, 54, 0.98) 0%, rgba(45, 55, 72, 0.98) 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #00D98F 0%, #00D9FF 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 143, 0.4);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #00D9FF;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(45, 91, 255, 0.1);
  color: #2D5BFF;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(45, 91, 255, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.category-info h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.category-info p {
  font-size: 14px;
  color: #4A5568;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CBD5E0;
  border-radius: 28px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #2D5BFF 0%, #00D9FF 100%);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .hero h1 { font-size: 36px; }
  .hero .tagline { font-size: 18px; }
  .hero .subheadline { font-size: 16px; }
  
  /* Hide desktop nav, show mobile toggle */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Header */
  header { padding: 12px 0; }
  .header-content { gap: 16px; }
  
  /* Sections */
  section { padding: 32px 16px; margin-bottom: 40px; }
  .hero { padding: 60px 16px; }
  .page-hero { padding: 48px 16px; }
  
  /* Grids - force single column on mobile */
  .services-grid,
  .testimonials-grid,
  .reviews-grid,
  .category-grid,
  .startups-grid,
  .pricing-grid,
  .benefits-grid,
  .options-grid,
  .info-grid,
  .steps-grid,
  .explore-grid,
  .guide-content,
  .recommendations-grid,
  .tools-grid,
  .reports-grid,
  .insights-grid {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cards */
  .service-card,
  .testimonial-card,
  .review-card,
  .category-card,
  .startup-card,
  .pricing-card,
  .benefit-card,
  .option-card,
  .info-card,
  .step-card,
  .explore-card,
  .guide-card,
  .recommendation-card,
  .software-review-card,
  .tool-card,
  .report-card,
  .insight-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators { gap: 16px; }
  .stat { min-width: 120px; }
  .stat strong { font-size: 24px; }
  
  /* Buttons */
  .cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; min-width: auto; }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-column { flex: 1 1 100%; }
  
  /* Cookie consent */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1 1 auto; }
  
  /* Modal */
  .modal-content { padding: 24px; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn-primary,
  .modal-actions .btn-secondary { width: 100%; }
  
  /* Legal content */
  .content-wrapper { padding: 32px 24px; }
  
  /* Featured banner */
  .featured-banner { padding: 32px 24px; }
  .startup-info { flex-direction: column; gap: 16px; }
  
  /* Tabs */
  .tabs { justify-content: flex-start; overflow-x: auto; }
  .tab-btn { flex-shrink: 0; }
  
  /* Booking card */
  .booking-card { padding: 24px; }
  .booking-details { flex-direction: column; }
}

@media (max-width: 480px) {
  /* Further mobile optimization */
  .container { padding: 0 16px; }
  
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .price { font-size: 36px; }
  
  .service-card,
  .testimonial-card,
  .review-card { padding: 24px; }
  
  .filter-bar { flex-direction: column; }
  .filter-select { width: 100%; min-width: auto; }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus, button:focus {
  outline: 2px solid #2D5BFF;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal { display: none !important; }
}