/* css/styles.css - Premium Bento Grid Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-color: #030407;
  --bg-secondary: #080b12;
  --text-main: #f0f2f5;
  --text-muted: #8b92a5;
  --primary-accent: #3b82f6;
  --secondary-accent: #6366f1;
  --green-accent: #10b981;
  --cyan-accent: #06b6d4;
  --bento-bg: rgba(255, 255, 255, 0.02);
  --bento-border: rgba(255, 255, 255, 0.05);
  --glow-color: rgba(99, 102, 241, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Glows */
body::before {
  content: '';
  position: fixed;
  top: -10%; right: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-green { color: var(--green-accent); }
.text-cyan { color: var(--cyan-accent); }
.text-highlight { color: #fff; font-weight: 500; }
.mt-2 { margin-top: 1rem; }
.w-100 { width: 100%; }
.active { color: var(--text-main) !important; font-weight: 600; border-bottom: 2px solid var(--primary-accent); }

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Base Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
  border-color: rgba(255,255,255,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid var(--bento-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(3, 4, 7, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--bento-border);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--secondary-accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  background: rgba(255,255,255,0.02);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--bento-border);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #fff;
}

.header-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 14rem 0 8rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero .badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}


/* BENTO GRID (Universal Application) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: minmax(280px, auto);
}

.bento-item {
  background: var(--bento-bg);
  border: 1px solid var(--bento-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item.span-2 { grid-column: span 2; }
.bento-item.span-3 { grid-column: span 3; }

/* Home Services overriding Bento specifically */
.services-section {
  padding: 6rem 0;
}
.services-section h2 { font-size: 3.5rem; text-align: center; margin-bottom: 4rem; }
.services-subtitle { font-size: 2rem; font-weight: 300; display: block; color: var(--text-muted); }

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

.card-landing-page {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-landing-page h3 { font-size: 3rem; margin-bottom: 1.5rem; }
.card-landing-page p { font-size: 1.2rem; }
.card-landing-page ul li { font-size: 1.15rem; margin-bottom: 1rem; }

.card-support-bot {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.card-lead-gen {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.service-card {
  background: var(--bento-bg);
  border: 1px solid var(--bento-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}
.service-card p { color: var(--cyan-accent); font-weight: 500; margin-bottom: 1.5rem; }
.service-card ul { list-style: none; margin-top: auto; }
.service-card ul li { margin-bottom: 0.8rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.75rem;}
.service-card ul li::before { content: '✦'; color: var(--primary-accent); }

/* Customers */
.ideal-section { padding: 4rem 0 8rem; }
.ideal-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.ideal-intro h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.ideal-intro p { font-size: 1.1rem; color: var(--text-muted); }

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ideal-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0; 
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ideal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--secondary-accent), var(--cyan-accent));
}
.ideal-card:hover { 
  border-color: rgba(255, 255, 255, 0.1); 
  transform: translateY(-4px); 
}
.ideal-card h4 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}
.ideal-card.centered-card {
  grid-column: 1 / -1;
  width: 100%;
}
.pain { 
  color: var(--text-muted); 
  margin-bottom: 1.5rem; 
  padding-left: 1.5rem; 
  border-left: 2px solid var(--secondary-accent); 
}
.pain strong { 
  color: var(--secondary-accent); 
  display: block; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  margin-bottom: 0.5rem; 
  letter-spacing: 1px;
}
.solution { 
  color: var(--text-main); 
  padding-left: 1.5rem; 
  border-left: 2px solid var(--green-accent); 
}
.solution strong { 
  color: var(--green-accent); 
  display: block; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  margin-bottom: 0.5rem; 
  letter-spacing: 1px;
}

/* Pricing */
.pricing-section { padding: 6rem 0 10rem; }
.pricing-section h2 { font-size: 4rem; text-align: center; margin-bottom: 4rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start;}
.price-card {
  background: var(--bento-bg); border: 1px solid var(--bento-border);
  border-radius: 24px; padding: 2.5rem; transition: all 0.3s ease;
}
.price-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--bento-bg) 100%);
  border-color: var(--secondary-accent);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price-val { font-size: 2.5rem; margin-bottom: 0.5rem; }
.setup-text { font-size: 1rem; color: var(--text-muted); }
.timeline-text { color: var(--primary-accent); margin-bottom: 1.5rem; }
.price-card ul { list-style: none; margin-top: auto; }
.price-card ul li { margin-bottom: 0.8rem; color: var(--text-muted); display: flex; gap: 0.5rem;}
.price-card ul li::before { content: '✓'; color: var(--green-accent); }

/* Trust About Page Styles */
.trust-hero { padding: 12rem 0 6rem; text-align: center; }
.trust-hero .badge {
  display: inline-block; padding: 0.3rem 1rem; background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 50px; font-size: 0.8rem;
  letter-spacing: 1px; color: var(--green-accent); margin-bottom: 2rem; font-weight: 600;
}
.trust-hero h1 { font-size: 4.5rem; margin-bottom: 1.5rem; }
.trust-hero .lead { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.trust-bento { padding-bottom: 8rem; }
.stat-box { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align:center;}
.stat-box.primary-bg { background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent)); border:none;}
.stat-box.secondary-bg { background: linear-gradient(135deg, #10b981, #059669); border:none;}
.stat-number { font-size: 4.5rem; font-weight: 900; font-family: 'Outfit'; line-height: 1; margin-bottom: 0.5rem; color: #fff;}
.stat-text { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.9); }

.founder-block { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.quote-icon { font-size: 2.5rem; color: var(--bento-border); margin-bottom: 1.5rem; }
.quote { font-size: 1.5rem; font-family: 'Outfit'; font-weight: 300; line-height: 1.4; margin-bottom: 2rem; font-style: italic;}
.founder-sig { color: var(--primary-accent); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;}
.list-box h3 { margin-bottom: 1.5rem; font-size: 1.8rem; }
.list-box ul { list-style: none; }
.list-box ul li { font-size: 1.1rem; margin-bottom: 1.2rem; display:flex; align-items:center; gap:1rem;}
.list-box ul li i { color: var(--secondary-accent); font-size: 1.2rem;}

/* Contact Form from earlier */
.contact-section { padding: 8rem 0; position: relative; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-content h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.contact-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.contact-benefits { list-style: none; }
.contact-benefits li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; align-items: center; gap: 1rem; }
.glass-panel { background: rgba(255, 255, 255, 0.02); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid var(--bento-border); padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.glass-panel h3 { margin-bottom: 1.5rem; font-size: 1.8rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select { width: 100%; padding: 0.85rem 1rem; background: rgba(0,0,0,0.3); border: 1px solid var(--bento-border); border-radius: 8px; color: white; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-accent); }

footer { padding: 3rem 0; text-align: center; border-top: 1px solid var(--bento-border); }
footer p { color: var(--text-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
  .bento-grid, .services-grid, .ideal-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bento-item.span-2, .bento-item.span-3 { grid-column: span 1; }
  .contact-container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .nav-links { display: none; }
  .card-landing-page, .card-support-bot, .card-lead-gen { grid-column: span 1; grid-row: auto; }
}