/* 2026 Framer-Inspired Modern Design for Home Draft */
:root {
  /* Color Palette - Modern 2026 */
  --primary: #DC2626;
  --primary-hover: #B91C1C;
  --accent: #7C3AED;
  --accent-hover: #6D28D9;
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-muted: #737373;
  --success: #22c55e;
  --gold: #fbbf24;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
  --gradient: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #4F46E5 50%, #3730A3 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #1f1f1f;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text h1 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo-text p {
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: 8rem 2rem 10rem;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  transform: skewX(-15deg);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background: #1a1a1a;
  border-bottom: 1px solid #252525;
  padding: 1.5rem 0;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.trust-item svg {
  color: var(--success);
}

/* ==========================================
   TWINBOT BANNER (Framer 2026 Style)
   ========================================== */
.twinbot-banner {
  background: var(--gradient-purple);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

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

.twinbot-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.twinbot-container {
  max-width: 1400px;
  margin: 0 auto;
}

.twinbot-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.twinbot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.twinbot-text h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.twinbot-text h2 span {
  background: linear-gradient(90deg, #FCD34D, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.twinbot-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.twinbot-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.twinbot-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.twinbot-feature svg {
  color: var(--success);
}

.twinbot-cta {
  background: #fff;
  color: #4F46E5;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.twinbot-cta:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  transform: translateY(-4px);
}

.twinbot-visual {
  position: relative;
}

.twinbot-mockup {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.twinbot-chat {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
}

.chat-header {
  background: #4F46E5;
  color: #fff;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-body {
  padding: 18px;
}

.chat-message {
  background: #2a2a2a;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #e5e5e5;
}

.chat-message.bot {
  background: linear-gradient(135deg, #3730A3, #4338CA);
  border: 1px solid rgba(255,255,255,0.1);
}

.chat-message.bot::before {
  content: '🪞 TwinBot';
  display: block;
  font-size: 11px;
  color: #818CF8;
  font-weight: 700;
  margin-bottom: 6px;
}

.typing {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: #2a2a2a;
  border-radius: 14px;
  margin-top: 12px;
}

.typing span {
  width: 8px;
  height: 8px;
  background: #4F46E5;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing span:nth-child(1) { animation-delay: -0.32s; }
.typing span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ==========================================
   EBOOK BANNER
   ========================================== */
.ebook-section {
  background: linear-gradient(135deg, #2a1a00 0%, #1a1100 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.ebook-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.1), transparent 50%);
}

.ebook-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ebook-content {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ebook-cover {
  width: 160px;
  height: 200px;
  background: var(--gradient);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ebook-cover::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.ebook-cover h4 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.ebook-cover p {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 8px;
}

.ebook-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ebook-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ebook-bonus {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.ebook-bonus strong {
  color: #FCD34D;
  display: block;
  font-size: 13px;
  margin-bottom: 0.25rem;
}

.ebook-cta {
  background: var(--gradient);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.ebook-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.problem-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.problem-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #252525;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.problem-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution-section {
  padding: 6rem 2rem;
  background: #0f0f0f;
}

.solution-container {
  max-width: 1400px;
  margin: 0 auto;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.solution-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.benefit-list svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-text strong {
  color: #fff;
  display: block;
}

.btn-primary-full {
  background: var(--gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.solution-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #252525;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 8px;
}

/* ==========================================
   LEAD MAGNETS
   ========================================== */
.lead-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

.lead-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.lead-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid #252525;
  transition: all 0.3s;
}

.lead-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #3a3a3a;
}

.lead-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.lead-card.free .lead-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.lead-card.paid .lead-icon {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.lead-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lead-info p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.lead-value {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
}

.lead-btn {
  margin-top: 1rem;
  display: inline-block;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid #252525;
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #3a3a3a;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
  transform: scale(1.02);
}

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

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0.5rem 0 2rem;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-features svg {
  color: var(--success);
}

.pricing-cta {
  display: block;
  text-align: center;
  background: #252525;
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing-card.featured .pricing-cta {
  background: var(--gradient);
}

.pricing-cta:hover {
  background: #3a3a3a;
  transform: translateY(-4px);
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--primary-hover);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  padding: 6rem 2rem;
  background: #0f0f0f;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #252525;
  transition: all 0.3s;
}

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

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-secondary);
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #333;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #252525;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #3a3a3a;
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  gap: 8px;
}

.blog-all-link {
  text-align: center;
  margin-top: 2rem;
}

.blog-all-link a {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.blog-all-link a:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 6rem 2rem;
  background: var(--gradient);
  text-align: center;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: #fff;
}

.cta-btn {
  background: #fff;
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-section {
  padding: 4rem 2rem;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #DC2626, #7f1d1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: #050505;
  color: var(--text-secondary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid #1f1f1f;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 2rem;
  text-align: center;
  font-size: 14px;
}

/* ==========================================
   TRUST BAR LOGOS
   ========================================== */
.trust-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.solution-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.solution-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #252525;
  transition: all 0.3s ease;
  cursor: pointer;
}

.solution-gallery img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

/* Removed the huge first image logic to maintain a clean thumbnail grid */

@media (max-width: 768px) {
  .solution-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

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

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .twinbot-content { grid-template-columns: 1fr; }
  .ebook-content { grid-template-columns: 1fr; text-align: center; }
  .ebook-content > *:last-child { justify-content: center; }
  .problem-grid, .services-grid, .pricing-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .solution-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: 4rem 1rem 6rem; }
  .mobile-menu-toggle { display: flex; }
  .mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
  }
  .mobile-overlay.active { display: block; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%; width: 70%; height: 100%;
    background: #111;
    flex-direction: column;
    padding: 80px 30px;
    gap: 0;
    transition: left 0.3s;
    z-index: 998;
  }
  .nav-links.active { left: 0; }
  .nav-links li { padding: 16px 0; border-bottom: 1px solid #252525; }
  .nav-links a { font-size: 16px; display: block; }
  .nav-cta.mobile-active { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); display: block !important; }
  .ebook-content { padding: 2rem; }
  .ebook-cover { width: 120px; height: 160px; }
  .ebook-cover h4 { font-size: 14px; }
  .ebook-cover p { font-size: 10px; }
  .ebook-text h3 { font-size: 1.8rem; }
  .twinbot-banner { padding: 3rem 1rem; }
  .twinbot-text h2 { font-size: 2rem; }
  .testimonials-section, .blog-section, .pricing-section, .services-section, .solution-section, .problem-section { padding: 4rem 1rem; }
  .cta-section h2 { font-size: 2rem; }
  .cta-section { padding: 4rem 1rem; }
}
