:root {
	--bg: #ffffff;
	--surface: #f8fafc;
	--elev: #eef2f7;
	--card: #ffffff;
	--text: #111827;
	--muted: #6b7280;
	--link: #2563eb;
	--brand: #7ed957; /* green primary */
	--brand-2: #b8ff9f; /* lighter green */
	--accent: #e4a0ff;
	--warning: #ffd166;
	--success: #16a34a;
	--danger: #ef4444;
	--shadow: 0 10px 30px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container { width: min(1100px, 92vw); margin: 0 auto; }
.container.narrow { width: min(900px, 92vw); }
.center { text-align: center; }
.muted { color: var(--muted); }

.section { padding: 72px 0; }
.section .section-head h2 { margin: 0 0 10px; font-size: 32px; }
.section .section-head p { margin: 0; color: var(--muted); }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .3px; color: var(--text); text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 6px; background: #3f444a; color: #ffffff; font-size: 14px; font-weight: 900; }
.brand-name { font-size: 18px; }
.brand-logo { height: auto; transition: opacity 0.3s ease; }
.brand-logo:hover { opacity: 0.8; }
.footer-logo { height: auto; }

.primary-nav { display: flex; align-items: center; gap: 18px; }
.primary-nav ul { display: flex; list-style: none; gap: 28px; margin: 0; padding: 0; }
.primary-nav a { color: #012E9E; text-decoration: none; font-weight: 500; }
.primary-nav a:hover { color: #1d4ed8; }
.link-muted { opacity: .7; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 6px; color: var(--text); }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 16px; border-radius: 10px; border: 1px solid transparent; color: #ffffff; background: var(--brand); font-weight: 700; text-decoration: none; box-shadow: var(--shadow); cursor: pointer; text-transform: uppercase; letter-spacing: .04em; }
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn-small { height: 36px; padding: 0 14px; font-size: 12px; }
.btn-ghost { color: var(--brand); background: transparent; border-color: var(--brand); border-width: 2px; box-shadow: none; }
.btn-ghost:hover { background: rgba(126,217,87,.1); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #ffffff; border: 0; }

/* Hero */
.hero { padding-top: 120px; padding-bottom: 60px; background: #3f444a; color: #ffffff; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 32px; position: relative; z-index: 2; }
.hero h1 { font-size: 64px; line-height: 1.1; margin: 0 0 16px; color: #ffffff; font-weight: 800; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out; }
.hero p { margin: 0 0 28px; color: #e5e7eb; font-size: 18px; max-width: 620px; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out 0.2s both; }
.hero-art { display: none; }
.hero-chart { display: none; }
.hero-ctas { display: flex; gap: 18px; animation: fadeInUp 1s ease-out 0.4s both; }

/* Video Background */
.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden;opacity: .4; }
.hero-video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-video-background iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; transform: translate(-50%, -50%); pointer-events: none; }
.hero-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(63, 68, 74, 0.4); z-index: 1; }

/* Hide video on mobile for performance */
@media (max-width: 768px) {
  .hero-video-background iframe { display: none; }
  .hero-video-background { background-size: cover !important; background-position: center !important; }
}

/* Cards */
.cards { display: grid; gap: 18px; margin-top: 26px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px 18px; box-shadow: var(--shadow); }
.card h3 { margin: 6px 0 6px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.card-icon .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: #e5f7e1; color: #166534; }

/* Enhanced Benefits Section */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.benefit-card { 
  background: #ffffff; 
  border: 1px solid #e5e7eb; 
  border-radius: 16px; 
  padding: 32px 24px; 
  text-align: center; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}
.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
  border-color: var(--brand);
}
.benefit-icon-wrap { margin-bottom: 24px; }
.benefit-icon { 
  width: 64px; 
  height: 64px; 
  margin: 0 auto; 
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: white;
  box-shadow: 0 4px 15px rgba(126,217,87,0.3);
}
.benefit-content { text-align: center; }
.benefit-title { 
  margin: 0 0 16px; 
  font-size: 22px; 
  font-weight: 600; 
  color: var(--text); 
  line-height: 1.3;
}
.benefit-text p { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.6; 
  font-size: 16px;
}

/* Enhanced Problems Section */
.problems { background: #ffffff; padding: 80px 0; }
.problems-header { margin-bottom: 64px; }
.problems-header .section-head h2 { 
  font-size: 36px; 
  font-weight: 700; 
  color: #012E9E; 
  margin-bottom: 16px; 
}
.problems-header .section-head p { 
  font-size: 18px; 
  color: var(--muted); 
  line-height: 1.6; 
  margin: 0; 
}

.problems-content { margin-top: 48px; }
.problems-layout { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.problems-image { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}
.problems-image img { 
  width: 100%; 
  height: auto; 
  border-radius: 16px; 
  box-shadow: 0 8px 40px rgba(0,0,0,0.12); 
  transition: all 0.3s ease;
}
.problems-image img:hover { 
  transform: scale(1.02); 
  box-shadow: 0 12px 50px rgba(0,0,0,0.15); 
}

.problems-boxes { 
  display: flex; 
  flex-direction: column; 
  gap: 24px; 
}
.problem-box { 
  display: flex; 
  align-items: flex-start; 
  gap: 20px; 
  padding: 24px; 
  background: #ffffff; 
  border-radius: 12px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); 
  border: 1px solid #f3f4f6; 
  transition: all 0.3s ease; 
  opacity: 0; 
  animation: slideInRight 0.8s ease forwards;
}
.problem-box:hover { 
  transform: translateX(4px); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); 
  border-color: #e5e7eb;
}
.problem-box[data-animation-delay="0"] { animation-delay: 0s; }
.problem-box[data-animation-delay="200"] { animation-delay: 0.2s; }
.problem-box[data-animation-delay="400"] { animation-delay: 0.4s; }
.problem-box[data-animation-delay="600"] { animation-delay: 0.6s; }

.problem-icon-wrap { 
  flex-shrink: 0; 
}
.problem-icon { 
  width: 48px; 
  height: 48px; 
  background: linear-gradient(135deg, #ef4444, #dc2626); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 20px; 
  color: white; 
  box-shadow: 0 4px 15px rgba(239,68,68,0.3);
}
.problem-content { 
  flex: 1; 
}
.problem-title { 
  margin: 0 0 8px; 
  font-size: 18px; 
  font-weight: 600; 
  color: #012E9E; 
}
.problem-title span { 
  display: block; 
}
.problem-description { 
  margin: 0; 
  font-size: 15px; 
  color: var(--muted); 
  line-height: 1.5; 
}

/* Enhanced How It Works Section */
.how-it-works { background: var(--surface); position: relative; }
.how-it-works-header { margin-bottom: 48px; }
.how-it-works-header .sub-heading { 
  margin: 24px 0 0; 
  font-size: 20px; 
  font-weight: 600; 
  color: var(--text); 
}

.steps-container { margin-top: 40px; }
.steps-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  max-width: 1000px; 
  margin: 0 auto; 
}

.step-column { 
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease-out forwards;
}
.step-column:nth-child(1) { animation-delay: 0s; }
.step-column:nth-child(2) { animation-delay: 0.2s; }
.step-column:nth-child(3) { animation-delay: 0.4s; }

.step-number { 
  text-align: center; 
  margin-bottom: 24px; 
}
.step-number h2 { 
  font-size: 48px; 
  font-weight: 900; 
  color: var(--brand); 
  margin: 0; 
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.step-content { 
  background: #ffffff; 
  border-radius: 16px; 
  padding: 32px 24px; 
  text-align: center; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.step-content:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
  border-color: var(--brand);
}

.step-icon-wrap { margin-bottom: 24px; }
.step-icon { 
  width: 64px; 
  height: 64px; 
  margin: 0 auto; 
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: white;
  box-shadow: 0 4px 15px rgba(126,217,87,0.3);
}

.step-info { flex: 1; display: flex; flex-direction: column; }
.step-title { 
  margin: 0 0 16px; 
  font-size: 18px; 
  font-weight: 600; 
  color: var(--text); 
  line-height: 1.4;
}
.step-separator { 
  width: 40px; 
  height: 2px; 
  background: var(--brand); 
  margin: 0 auto 16px; 
  border-radius: 1px;
}
.step-description { 
  flex: 1; 
  display: flex; 
  align-items: center;
}
.step-description p { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.6; 
  font-size: 15px;
}

/* Solutions Help Section */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.solution-item h4 { font-size: 18px; font-weight: 600; margin: 0 0 12px; color: var(--text); }
.solution-item p { margin: 0; line-height: 1.6; color: var(--muted); }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pricing-card { background: var(--card); border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px; box-shadow: var(--shadow); position: relative; text-align: center; }
.pricing-card.popular { border-color: var(--brand); }
.popular-badge { position: absolute; top: -10px; right: 24px; background: var(--warning); color: #0b1020; font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 20px; }
.pricing-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.pricing-subtitle { color: var(--muted); margin: 0 0 16px; font-size: 14px; }
.price-display { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin: 16px 0; }
.price-display .currency { font-size: 20px; font-weight: 800; }
.price-display .amount { font-size: 48px; font-weight: 900; }
.price-display .cents { font-size: 20px; opacity: 0.8; }
.price-addon { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pricing-feature-item { padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
.pricing-feature-item:last-child { border-bottom: none; }
.feature-inner { display: flex; align-items: center; gap: 12px; }
.feature-inner i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.feature-inner span { color: var(--muted); line-height: 1.4; }
.pricing-footer { margin-top: 24px; }
.pricing-footnote { text-align: center; color: var(--muted); font-size: 14px; margin-top: 24px; }

/* Data Analysis Section */
.testimonial-navigation { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.nav-btn { background: var(--surface); border: 1px solid #e5e7eb; border-radius: 8px; padding: 8px 16px; color: var(--text); cursor: pointer; font-weight: 500; }
.nav-btn:hover { background: var(--elev); }

/* Final CTA Section */
.cta-content { max-width: 600px; margin: 32px auto 0; text-align: center; }
.cta-content p { margin: 16px 0; color: var(--muted); line-height: 1.6; }

/* About Page Styles */
.about-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.about-section h3 { font-size: 20px; font-weight: 600; margin: 0 0 16px; color: var(--text); }
.about-section p { margin: 0; line-height: 1.6; color: var(--muted); }
.about-list { list-style: none; padding: 0; margin: 0; }
.about-list li { padding: 4px 0; color: var(--muted); position: relative; padding-left: 16px; }
.about-list li:before { content: "•"; color: var(--brand); font-weight: bold; position: absolute; left: 0; }

/* Pillars Section */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px; }
.pillar-item { text-align: center; }
.pillar-number { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.pillar-item h4 { font-size: 18px; font-weight: 600; margin: 8px 0 12px; color: var(--text); }
.pillar-item p { margin: 0; line-height: 1.6; color: var(--muted); font-size: 14px; }

/* Founder Section */
.founder-content { max-width: 700px; margin: 32px auto 0; text-align: center; }
.founder-content h3 { font-size: 24px; font-weight: 600; margin: 0 0 20px; color: var(--text); }
.founder-content p { margin: 16px 0; line-height: 1.6; color: var(--muted); }
.founder-link { color: var(--link); text-decoration: none; font-weight: 500; }
.founder-link:hover { text-decoration: underline; }

/* FAQ Section */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.faq-item h4 { font-size: 16px; font-weight: 600; margin: 0 0 12px; color: var(--text); }
.faq-item p { margin: 0; line-height: 1.6; color: var(--muted); font-size: 14px; }

/* Stats Section */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 48px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--muted); }

/* Booking Page Styles */
.booking-hero { background: var(--surface); padding: 40px 0 80px; }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1000px; margin: 0 auto; }

/* Demo Info Section */
.demo-info { padding: 20px 0; }
.demo-header { display: flex; gap: 16px; margin-bottom: 24px; }
.demo-avatar { flex-shrink: 0; }
.avatar-placeholder { width: 60px; height: 60px; border-radius: 50%; background: var(--brand); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; }
.demo-details h1 { margin: 0; font-size: 24px; font-weight: 600; color: var(--text); }
.demo-details h2 { margin: 4px 0 8px; font-size: 32px; font-weight: 700; color: var(--text); }
.demo-duration { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; }
.demo-description { margin-top: 24px; }
.demo-description p { color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.demo-features h4 { margin: 0 0 12px; font-size: 16px; font-weight: 600; color: var(--text); }
.demo-features ul { margin: 0; padding-left: 20px; }
.demo-features li { margin: 8px 0; color: var(--muted); line-height: 1.5; }

/* Booking Form */
.booking-form-container { background: white; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.booking-form-card { padding: 32px; }
.booking-form-card h3 { margin: 0 0 24px; font-size: 20px; font-weight: 600; color: var(--text); }

/* Calendar Widget */
.calendar-widget { margin-bottom: 24px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.calendar-nav { background: transparent; border: 1px solid #e5e7eb; border-radius: 6px; padding: 8px 12px; cursor: pointer; font-weight: 500; }
.calendar-nav:hover { background: var(--surface); }
.calendar-month { font-weight: 600; color: var(--text); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.calendar-day-header { padding: 8px; text-align: center; font-size: 12px; font-weight: 600; color: var(--muted); }
.calendar-day { padding: 12px; text-align: center; border: 1px solid transparent; border-radius: 6px; background: transparent; cursor: pointer; font-weight: 500; }
.calendar-day:hover:not(.disabled):not(.weekend) { background: var(--surface); }
.calendar-day.selected { background: var(--brand); color: white; }
.calendar-day.today { border-color: var(--brand); }
.calendar-day.disabled, .calendar-day.weekend { color: #d1d5db; cursor: not-allowed; }

/* Time Slots */
.time-slots { margin-bottom: 24px; }
.time-slots h4 { margin: 0 0 16px; font-size: 16px; font-weight: 600; color: var(--text); }
.time-slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.time-slot { padding: 12px; border: 1px solid #e5e7eb; border-radius: 6px; background: white; cursor: pointer; font-weight: 500; text-align: center; }
.time-slot:hover { background: var(--surface); }
.time-slot.selected { background: var(--brand); color: white; border-color: var(--brand); }

/* Booking Details */
.selected-datetime { background: var(--surface); padding: 16px; border-radius: 8px; margin-bottom: 20px; text-align: center; }
.selected-datetime strong { color: var(--text); }
.selected-datetime span { color: var(--muted); font-size: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--text); font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #e5e7eb; border-radius: 6px; font: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-actions { display: flex; gap: 12px; margin-top: 24px; }

/* Login Page Styles */
.login-section { background: var(--surface); padding: 40px 0 80px; }
.login-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; max-width: 1200px; margin: 0 auto; }

/* Privacy Policy Content */
.privacy-content { background: white; border-radius: 12px; padding: 32px; box-shadow: var(--shadow); max-height: 70vh; overflow-y: auto; }
.privacy-content h2 { margin: 0 0 24px; font-size: 24px; font-weight: 700; color: var(--text); }
.privacy-section { margin-bottom: 24px; }
.privacy-section h3 { margin: 0 0 12px; font-size: 16px; font-weight: 600; color: var(--text); }
.privacy-section p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* Login Form */
.login-form-container { background: white; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.login-form-card { padding: 32px; }
.login-form-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; color: var(--text); }
.login-form-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.login-form { display: grid; gap: 16px; }
.login-btn { width: 100%; justify-self: stretch; }
.login-links { display: flex; justify-content: space-between; margin-top: 16px; }
.login-links a { color: var(--link); text-decoration: none; font-size: 14px; }
.login-links a:hover { text-decoration: underline; }

/* Login Footer */
.login-footer { background: var(--text); color: white; padding: 24px 0; margin-top: 0; }
.footer-links { text-align: center; }
.footer-links h4 { margin: 0 0 8px; font-size: 14px; font-weight: 400; }
.footer-links h5 { margin: 0 0 8px; font-size: 12px; font-weight: 400; }
.footer-links h6 { margin: 0; font-size: 11px; font-weight: 400; opacity: 0.8; }

/* Enhanced Client Logos Carousel */
.client-logos-enhanced { 
  background: var(--surface); 
  padding: 60px 0; 
  overflow: hidden; 
}
.logos-carousel-wrapper { 
  position: relative; 
  max-width: 1200px; 
  margin: 0 auto;
  height: 120px;
  overflow: hidden;
}
.logos-carousel-track { 
  display: flex; 
  transition: transform 0.5s ease; 
  animation: logosAutoSlide 25s linear infinite; 
}
.logo-slide { 
  min-width: 200px; 
  flex: 0 0 200px; 
  height: 120px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
}
.logo-slide-inner { 
  margin: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 100%; 
  height: 100%; 
}
.logo-slide img { 
  max-width: 160px; 
  max-height: 80px; 
  opacity: 0.6; 
  transition: all 0.3s ease; 
  filter: grayscale(100%); 
  object-fit: contain;
}
.logo-slide:hover img { 
  opacity: 1; 
  filter: grayscale(0%); 
  transform: scale(1.05);
}

/* Logo Navigation */
.logos-nav { 
  position: absolute; 
  top: 50%; 
  left: -20px; 
  right: -20px; 
  display: flex; 
  justify-content: space-between; 
  transform: translateY(-50%); 
  pointer-events: none; 
  z-index: 10;
}
.logos-nav-btn { 
  width: 40px; 
  height: 40px; 
  background: rgba(255,255,255,0.9); 
  border: 1px solid #e5e7eb; 
  border-radius: 50%; 
  color: var(--text); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease; 
  pointer-events: all; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 14px;
}
.logos-nav-btn:hover { 
  background: var(--brand); 
  color: white; 
  border-color: var(--brand); 
  transform: scale(1.1); 
}

/* Logo Pagination */
.logos-pagination { 
  display: flex; 
  justify-content: center; 
  gap: 8px; 
  margin-top: 30px; 
}
.logos-pagination .pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}
.logos-pagination .pagination-dot.active {
  background: var(--brand);
  transform: scale(1.2);
}

@keyframes logosAutoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 9)); }
}

/* Client Logos Responsive */
@media (max-width: 768px) {
  .client-logos-enhanced {
    padding: 40px 0;
  }
  .logo-slide {
    min-width: 150px;
    flex: 0 0 150px;
    height: 100px;
    padding: 15px;
  }
  .logo-slide img {
    max-width: 120px;
    max-height: 60px;
  }
  .logos-nav {
    left: -10px;
    right: -10px;
  }
  .logos-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  @keyframes logosAutoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 9)); }
  }
}

/* Enhanced Testimonials */
.testimonials-enhanced { background: #ffffff; padding: 80px 0; }
.testimonials-enhanced .section-head h3 { 
  font-size: 32px; 
  font-weight: 700; 
  margin-bottom: 48px; 
}

.testimonials-carousel { 
  position: relative; 
  max-width: 800px; 
  margin: 0 auto;
  min-height: 300px;
}
.testimonial-track { 
  display: flex; 
  transition: transform 0.5s ease; 
  position: relative;
}
.testimonial-slide { 
  min-width: 100%; 
  flex: 0 0 100%;
  opacity: 0; 
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.testimonial-slide.active { 
  opacity: 1; 
  position: relative;
}

.testimonial-card { 
  background: #ffffff; 
  border-radius: 16px; 
  padding: 40px; 
  box-shadow: 0 4px 30px rgba(0,0,0,0.1); 
  text-align: center; 
  border: 1px solid #e5e7eb;
}
.testimonial-content { 
  margin-bottom: 32px; 
}
.testimonial-text { 
  font-size: 18px; 
  line-height: 1.6; 
  color: var(--text); 
  font-style: italic; 
  margin: 0;
}
.testimonial-footer { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 20px; 
}
.testimonial-avatar { 
  flex-shrink: 0; 
  position: relative;
  width: 80px;
  height: 80px;
}
.testimonial-avatar img { 
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  border: 3px solid var(--brand); 
  object-fit: cover;
}

/* Fallback gray circle for missing/broken testimonial images */
.testimonial-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #9ca3af;
  border-radius: 50%;
  border: 3px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Show gray circle with initials when needed */
.testimonial-avatar[data-initials]::before {
  content: attr(data-initials);
  opacity: 1;
}

.testimonial-avatar[data-initials] img {
  opacity: 0;
}
.testimonial-author { 
  text-align: left; 
}
.author-name { 
  font-size: 18px; 
  font-weight: 600; 
  color: var(--text); 
  margin-bottom: 4px; 
}
.author-title { 
  font-size: 14px; 
  color: var(--muted); 
  line-height: 1.4;
}

/* Testimonial Navigation */
.testimonial-nav { 
  display: flex; 
  justify-content: center; 
  gap: 16px; 
  margin-top: 32px; 
}
.testimonial-nav-btn { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  border: 1px solid #e5e7eb; 
  background: #ffffff; 
  color: var(--text); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-nav-btn:hover,
.testimonial-nav-btn:focus { 
  border-color: var(--brand); 
  color: var(--brand); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  outline: none;
}

.testimonial-nav-btn:active {
  transform: translateY(0);
  background: var(--brand);
  color: white;
}

/* Testimonial Pagination */
.testimonial-pagination { 
  display: flex; 
  justify-content: center; 
  gap: 8px; 
  margin-top: 24px; 
}
.pagination-dot { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  background: #d1d5db; 
  cursor: pointer; 
  transition: all 0.3s ease;
}
.pagination-dot.active { 
  background: var(--brand); 
  transform: scale(1.2);
}
.pagination-dot:hover { 
  background: var(--brand); 
}

/* Enhanced Promise Section */
.promise { background: #1e3a8a; color: #ffffff; }
.promise-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 32px; 
  margin-top: 40px; 
  max-width: 1000px; 
  margin-left: auto; 
  margin-right: auto;
}
.promise-card { 
  background: #ffffff; 
  border-radius: 16px; 
  padding: 32px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.promise-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
  border-color: var(--brand);
}
.promise-icon-box { 
  display: flex; 
  align-items: flex-start; 
  gap: 20px; 
}
.promise-icon { 
  width: 48px; 
  height: 48px; 
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 20px; 
  color: white; 
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(126,217,87,0.3);
}
.promise-content h4 { 
  margin: 0 0 12px; 
  font-size: 18px; 
  font-weight: 600; 
  color: var(--text); 
}
.promise-content p { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.6; 
  font-size: 15px;
}

/* Elementor-style blue background text colors */
.promise h2 {
  color: #ffffff;
}
.promise .section-head p {
  color: #e5e7eb;
}

/* Elementor heading styles */
.elementor-heading-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}
.elementor-heading-title.elementor-size-default {
  font-size: 2rem;
}
.promise .elementor-heading-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.promise .elementor-widget-container {
  text-align: center;
  width: 100%;
}

/* Elementor text editor styles */
.promise .elementor-widget-text-editor {
  text-align: center;
  width: 100%;
}

.promise .elementor-widget-text-editor p {
  color: #ffffff;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 600px;
  line-height: 1.6;
}

/* Elementor Trusted Partners Section */
.elementor-element.elementor-element-4671196:not(.elementor-motion-effects-element-type-background) {
  background-color: var(--e-global-color-secondary, #6b7280);
  padding: 60px 0;
}

/* Elementor container for trusted partners */
.elementor-element-4671196 .elementor-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Trusted Partners Heading */
.elementor-element-4671196 .elementor-heading-title {
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Partner logos layout - using flexbox for better control */
.elementor-element-7279cf6 .elementor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.elementor-element-7279cf6 .elementor-column {
  flex: 0 1 auto;
}

.elementor-element-7279cf6 .elementor-widget-image {
  text-align: center;
}

.elementor-element-7279cf6 .elementor-widget-image img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1); /* Makes images white */
}

.elementor-element-7279cf6 .elementor-widget-image:hover img {
  opacity: 1;
}

/* Remove float and add clearfix */
.elementor-element-4671196::after {
  content: "";
  display: table;
  clear: both;
}

/* Testimonials (Legacy) */
.quote p { font-size: 16px; }
.quote cite { color: var(--muted); font-style: normal; font-size: 14px; }

/* Contact Page Specific Styles */
.contact-hero { background: #f8fafc; padding: 60px 0; }
.contact-hero h1 { font-size: 48px; margin-bottom: 16px; color: var(--text); }
.contact-hero p { font-size: 18px; color: var(--muted); max-width: 600px; }

.contact { background: #ffffff; padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.contact-card { padding: 32px; }
.contact-info { padding: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.field-label { font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field-input, .field-textarea { 
  padding: 12px; 
  border: 1px solid #d1d5db; 
  border-radius: 6px; 
  font-family: inherit; 
  font-size: 14px;
}
.field-input:focus, .field-textarea:focus { 
  outline: none; 
  border-color: var(--brand); 
  box-shadow: 0 0 0 3px rgba(126,217,87,0.1); 
}

.info-section { margin-bottom: 32px; }
.info-section h6 { 
  font-size: 14px; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  color: var(--muted); 
  margin-bottom: 16px; 
}

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  margin-bottom: 16px; 
}
.contact-item a { color: var(--link); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-icon { 
  width: 20px; 
  height: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--brand); 
  margin-top: 2px;
}

.social-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 16px; 
}
.social-icon { 
  width: 36px; 
  height: 36px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: var(--brand); 
  color: white; 
  border-radius: 50%; 
  transition: all 0.3s ease;
}
.social-icon:hover { transform: translateY(-2px); }

.contact-cta { 
  background: var(--surface); 
  border-radius: 12px; 
  padding: 40px; 
  text-align: center; 
}
.cta-content { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 24px; 
}
.cta-text h3 { 
  margin: 0; 
  font-size: 24px; 
  color: var(--text); 
}

.contact-additional { 
  background: var(--surface); 
  padding: 40px 0; 
  text-align: center; 
}
.additional-content p { 
  font-size: 16px; 
  color: var(--muted); 
  margin: 0; 
  max-width: 600px; 
  margin: 0 auto; 
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-hero h1 { font-size: 36px; }
  .cta-content { flex-direction: column; text-align: center; }
  .social-list { justify-content: center; }
}

/* Enhanced Media Analysis Section */
.media-analysis { background: #ffffff; padding: 80px 0; }
.media-analysis-layout { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
}
.media-content h3 { 
  font-size: 32px; 
  font-weight: 700; 
  color: var(--text); 
  line-height: 1.3; 
  margin-bottom: 24px; 
}
.media-content p { 
  font-size: 16px; 
  color: var(--muted); 
  line-height: 1.6; 
  margin: 0; 
}

.media-carousel-container { 
  position: relative;
  min-height: 300px;
}
.media-carousel { 
  position: relative; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  min-height: 300px;
}
.media-track { 
  display: flex; 
  transition: transform 0.5s ease;
  position: relative;
}
.media-slide { 
  min-width: 100%; 
  flex: 0 0 100%;
  opacity: 0; 
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.media-slide.active { 
  opacity: 1;
  position: relative;
}

.media-video-tile { 
  position: relative; 
  cursor: pointer; 
  display: block; 
}
.media-thumbnail { 
  width: 100%; 
  height: 300px; 
  background-size: cover; 
  background-position: center; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
}
.media-play-button { 
  width: 80px; 
  height: 80px; 
  background: rgba(126,217,87,0.9); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: white; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px);
}
.media-video-tile:hover .media-play-button { 
  transform: scale(1.1); 
  background: var(--brand); 
}

.media-nav { 
  position: absolute; 
  top: 50%; 
  left: 0; 
  right: 0; 
  display: flex; 
  justify-content: space-between; 
  padding: 0 20px; 
  transform: translateY(-50%); 
  pointer-events: none; 
}
.media-nav-btn { 
  width: 48px; 
  height: 48px; 
  background: rgba(255,255,255,0.9); 
  border: none; 
  border-radius: 50%; 
  color: var(--text); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease; 
  pointer-events: all; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.media-nav-btn:hover { 
  background: var(--brand); 
  color: white; 
  transform: scale(1.1); 
}

.media-thumbnails { 
  display: flex; 
  gap: 12px; 
  margin-top: 20px; 
  justify-content: center; 
}
.thumbnail-item { 
  cursor: pointer; 
  border-radius: 8px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  opacity: 0.6; 
}
.thumbnail-item.active { 
  opacity: 1; 
  transform: scale(1.05); 
}
.thumbnail-image { 
  width: 80px; 
  height: 60px; 
  background-size: cover; 
  background-position: center; 
}

/* Trusted Partners */
.trusted-partners { background: var(--surface); padding: 60px 0; }
.trusted-partners .section-head h3 { 
  font-size: 24px; 
  font-weight: 600; 
  margin-bottom: 40px; 
}
.partners-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  align-items: center; 
  max-width: 800px; 
  margin: 0 auto; 
}
.partner-item { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
}
.partner-item img { 
  max-width: 100%; 
  height: auto; 
  opacity: 0.7; 
  transition: opacity 0.3s ease; 
  filter: grayscale(100%);
}
.partner-item:hover img { 
  opacity: 1; 
  filter: grayscale(0%);
}

/* Video Placeholder Styles */
.video-placeholder {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.video-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  z-index: 1;
  position: relative;
  margin-bottom: 20px;
}

.thumbnail-placeholder {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-title {
  color: white;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Single Video Display */
.media-video-single {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.media-video-single .media-video-tile {
  width: 100%;
  max-width: 500px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.media-video-single .media-video-tile:hover,
.media-video-single .media-video-tile:focus {
  outline: 2px solid #7ed957;
  outline-offset: 4px;
}

.media-video-single .media-thumbnail {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Video Screenshot Styles */
.video-screenshot {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 20px;
  color: white;
}

.video-info h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}

.video-info p {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #7ed957;
}

.video-info span {
  font-size: 14px;
  color: #e5e7eb;
  font-weight: 400;
}

/* Video Play Button Positioning */
.video-screenshot .media-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

/* Video tile hover effects */
.media-video-tile:hover .media-play-button {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.media-video-tile:hover .video-screenshot-img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.video-screenshot .media-play-button i {
  font-size: 24px;
  color: white;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.media-video-tile:hover .media-play-button i {
  color: #7ed957;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.video-modal-close:hover {
  opacity: 0.7;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

/* Responsive video modal */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .video-modal-close {
    top: -35px;
    font-size: 25px;
  }
}

/* Partner Text Logos */
.partner-logo-text {
  display: block;
  text-decoration: none;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin: 0;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.partner-logo-text:hover .partner-name {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Enhanced Pricing Tables */
.pricing-enhanced { background: #ffffff; padding: 80px 0; }
.pricing-tables { 
  display: grid; 
  grid-template-columns: 1fr 400px 400px 1fr; 
  gap: 32px; 
  max-width: 1200px; 
  margin: 0 auto; 
  margin-top: 60px; 
  align-items: start;
}
.pricing-spacer { /* Empty space columns for centering */ }
.pricing-table { 
  background: #ffffff; 
  border: 1px solid #e5e7eb; 
  border-radius: 16px; 
  padding: 0; 
  position: relative; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
  overflow: hidden; 
  transition: all 0.3s ease;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
.pricing-table:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 
}

.pricing-ribbon { 
  position: absolute; 
  top: 20px; 
  right: -30px; 
  background: var(--brand); 
  color: white; 
  padding: 8px 40px; 
  font-size: 12px; 
  font-weight: 600; 
  text-transform: uppercase; 
  transform: rotate(45deg); 
  box-shadow: 0 2px 8px rgba(126,217,87,0.3);
}
.ribbon-inner { 
  position: relative; 
  z-index: 1; 
}

.pricing-header { 
  padding: 32px 24px 24px; 
  text-align: center; 
  border-bottom: 1px solid #f3f4f6; 
}
.pricing-header h3 { 
  margin: 0 0 8px; 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--text); 
}
.pricing-subtitle { 
  font-size: 14px; 
  color: var(--muted); 
  line-height: 1.4; 
}

.pricing-price { 
  padding: 24px; 
  text-align: center; 
  display: flex; 
  align-items: baseline; 
  justify-content: center; 
  gap: 4px; 
  flex-wrap: wrap;
  border-bottom: 1px solid #f3f4f6; 
}
.currency { 
  font-size: 20px; 
  font-weight: 600; 
  color: var(--text); 
}
.amount { 
  font-size: 48px; 
  font-weight: 700; 
  color: var(--text); 
  line-height: 1; 
}
.price-after { 
  display: flex; 
  align-items: flex-start; 
}
.cents { 
  font-size: 20px; 
  font-weight: 600; 
  color: var(--text); 
}
.pricing-period { 
  font-size: 14px; 
  color: var(--muted); 
  width: 100%; 
  text-align: center; 
  margin-top: 8px; 
}
.lane-price { 
  font-weight: 600; 
  color: var(--text); 
  margin: 4px 0 0; 
}

.pricing-features { 
  padding: 24px; 
  margin: 0; 
  list-style: none; 
  flex: 1;
}
.feature-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  padding: 8px 0; 
  border-bottom: 1px solid #f9fafb; 
}
.feature-item:last-child { border-bottom: none; }
.feature-item i { 
  color: var(--brand); 
  font-size: 16px; 
  margin-top: 2px; 
  flex-shrink: 0; 
}
.feature-item span { 
  font-size: 14px; 
  color: var(--text); 
  line-height: 1.5; 
}

.pricing-footer { 
  padding: 24px; 
  text-align: center; 
  margin-top: auto;
}
.pricing-button { 
  width: 100%; 
  justify-content: center; 
}

.pricing-footnote { 
  margin-top: 32px; 
  font-size: 14px; 
  color: var(--muted); 
}

/* Pricing Responsive */
@media (max-width: 968px) {
  .pricing-tables {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 24px;
  }
  .pricing-spacer {
    display: none;
  }
  .pricing-table {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing-enhanced {
    padding: 60px 0;
  }
  .pricing-tables {
    margin-top: 40px;
  }
  .pricing-header {
    padding: 24px 20px 20px;
  }
  .pricing-price {
    padding: 20px;
  }
  .pricing-features {
    padding: 20px;
  }
  .pricing-footer {
    padding: 20px;
  }
}

/* Association Logos */
.association-logos { background: var(--surface); padding: 60px 0; }
.associations-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  align-items: center; 
  max-width: 800px; 
  margin: 0 auto; 
}
.association-item { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
  background: #ffffff; 
  border-radius: 12px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
  transition: all 0.3s ease;
}
.association-item:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); 
}
.association-item img { 
  max-width: 100%; 
  height: auto; 
  opacity: 0.8; 
  transition: opacity 0.3s ease; 
}
.association-item:hover img { opacity: 1; }

/* Association Text Logos */
.association-logo-text {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
  width: 100%;
}

.association-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.association-full-name {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.association-item:hover .association-name {
  color: #7ed957;
  transform: scale(1.05);
}

.association-item:hover .association-full-name {
  color: #374151;
}

/* Enhanced Compare Section */
.compare-enhanced { background: #ffffff; padding: 80px 0; }
.compare-container { 
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  gap: 40px; 
  max-width: 1000px; 
  margin: 0 auto; 
  margin-top: 60px; 
}
.compare-spacer { /* Empty space columns */ }
.compare-column { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}
.compare-icon-box { 
  text-align: center; 
  margin-bottom: 32px; 
}
.compare-icon { 
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 32px; 
  color: white; 
  margin: 0 auto 24px; 
  transition: all 0.3s ease;
}
.compare-icon.positive { 
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); 
  box-shadow: 0 8px 24px rgba(126,217,87,0.3);
}
.compare-icon.negative { 
  background: linear-gradient(135deg, #ef4444, #dc2626); 
  box-shadow: 0 8px 24px rgba(239,68,68,0.3);
}
.compare-content h3 { 
  font-size: 24px; 
  font-weight: 700; 
  color: var(--text); 
  margin: 0; 
}
.compare-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  width: 100%; 
  max-width: 300px; 
}
.compare-list-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  padding: 12px 0; 
  border-bottom: 1px solid #f3f4f6; 
}
.compare-list-item:last-child { 
  border-bottom: none; 
}
.compare-icon-small { 
  width: 20px; 
  height: 20px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 12px; 
  color: white; 
  flex-shrink: 0; 
  margin-top: 2px;
}
.compare-list.positive .compare-icon-small { 
  background: var(--brand); 
}
.compare-list.negative .compare-icon-small { 
  background: #ef4444; 
}
.compare-text { 
  font-size: 16px; 
  color: var(--text); 
  line-height: 1.5; 
}
.compare-cta { 
  text-align: center; 
  margin-top: 48px; 
}

/* Media (Legacy) */
.media-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 18px; }
.media-tile { aspect-ratio: 16/10; border-radius: 12px; background: #f3f4f6; border: 1px solid #e5e7eb; color: var(--text); font-size: 22px; cursor: pointer; }

/* Pricing */
.price-card { position: relative; }
.price-card .badge { position: absolute; top: 12px; right: 12px; font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 20px; color: #0b1020; background: var(--warning); }
.price-card .price { display: flex; align-items: baseline; gap: 3px; margin: 8px 0; }
.price-card .currency { font-weight: 800; }
.price-card .amount { font-size: 36px; font-weight: 900; }
.price-card .cents { opacity: .8; }
.price-card .addon { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.price-card .features { padding-left: 18px; margin: 10px 0 14px; color: var(--muted); }
.price-card.highlighted { outline: 2px solid rgba(106,161,255,.5); }

.footnote { color: var(--muted); font-size: 12px; margin-top: 6px; }

/* Compare */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.compare-grid h3 { margin: 4px 0 6px; }
.compare-grid ul { margin: 0; padding-left: 18px; color: var(--muted); }

/* Case Study */
.case-form .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.case-form .grid .full { grid-column: 1 / -1; }
.case-form label { display: grid; gap: 6px; }
.case-form input { height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); padding: 0 12px; background: rgba(255,255,255,.02); color: var(--text); }

/* Contact */
.contact { background: var(--surface); padding: 80px 0; }
.contact-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr; 
  gap: 60px; 
  align-items: start; 
  margin-bottom: 60px;
}

/* Contact Form Column */
.contact-form-column { }
.contact-card { 
  padding: 0; 
  border-radius: 0; 
  box-shadow: none; 
  background: transparent;
  border: none !important;
}
.contact-card h3 { 
  margin: 0 0 40px; 
  font-size: 28px; 
  color: #1e40af; 
  font-weight: 600;
}

/* Form Styling */
.contact-form { display: grid; gap: 24px; }
.form-field { display: grid; gap: 8px; }
.field-label { 
  font-weight: 400; 
  color: #374151; 
  font-size: 14px;
  position: relative;
}
.field-label::after {
  content: " *";
  color: #ef4444;
  font-weight: 600;
}
.field-input, .field-textarea { 
  padding: 12px 16px; 
  border: 1px solid #d1d5db; 
  border-radius: 6px; 
  font-size: 16px; 
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #ffffff;
}
.field-input:focus, .field-textarea:focus { 
  outline: none; 
  border-color: #3b82f6; 
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.field-textarea { 
  resize: vertical; 
  min-height: 120px; 
  font-family: inherit;
}
.form-submit { margin-top: 16px; }
.btn-large { 
  padding: 14px 32px; 
  font-size: 14px; 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--brand);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Contact Info Column */
.contact-info-column { }
.contact-info { 
  padding: 0; 
  border-radius: 0; 
  box-shadow: none; 
  background: transparent;
  border: none !important;
}
.contact-info h3 { 
  margin: 0 0 40px; 
  font-size: 28px; 
  color: #1e40af; 
  font-weight: 600;
}

/* Info Sections */
.info-section { margin-bottom: 40px; }
.info-section:last-child { margin-bottom: 0; }
.info-section h6 { 
  margin: 0 0 20px; 
  font-size: 18px; 
  font-weight: 600;
  color: #1e40af; 
}

/* Contact List */
.contact-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}
.contact-item, .elementor-icon-list-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; 
  margin-bottom: 20px; 
}
.contact-item:last-child, .elementor-icon-list-item:last-child { margin-bottom: 0; }
.contact-item a { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--brand); }
.contact-icon, .elementor-icon-list-icon { 
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-text, .elementor-icon-list-text { 
  color: #6b7280; 
  line-height: 1.6; 
  font-size: 15px;
  font-weight: 400;
}

/* Social List */
.social-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 12px; 
}
.social-item a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 36px; 
  height: 36px; 
  background: var(--brand); 
  border-radius: 6px; 
  color: white; 
  transition: all 0.3s;
}
.social-item a:hover { 
  background: #5cb85c; 
  transform: translateY(-2px);
}
.social-icon { font-size: 16px; }

/* Call to Action Section */
.contact-cta { 
  background: #f8fafc; 
  padding: 80px 40px; 
  margin-top: 0;
}
.cta-content { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 60px; 
  align-items: center; 
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
}
.cta-text h3 { 
  margin: 0 0 16px; 
  font-size: 32px; 
  color: #7ed957; 
  font-weight: 600;
  line-height: 1.2;
}
.cta-text p {
  margin: 0;
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
}
.cta-button { }
.cta-button .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Case Study Green Section */
.case-study-green {
  background: var(--brand);
  padding: 80px 0;
}

.case-study-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-study-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.case-study-form-section {
  color: white;
}

.case-study-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  line-height: 1.2;
}

.case-study-header p {
  font-size: 18px;
  color: #1e40af;
  margin: 0 0 40px;
  line-height: 1.6;
  font-weight: 500;
}

.case-study-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field.half {
  display: contents;
}

.form-field.full {
  grid-column: 1 / -1;
}

.case-study-form input {
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: #374151;
}

.case-study-form input::placeholder {
  color: #9ca3af;
}

.case-study-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-download {
  background: #1e40af;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn-download:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
  .case-study-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Pre-Footer Section (identical to footer styling) */
.pre-footer-section {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0;
}

/* Modern Dark Footer - Simplified */
.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer-social-only {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-social-only a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333333;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-only a:hover {
  background: #555555;
  transform: translateY(-2px);
}

.footer-social-only i {
  font-size: 18px;
}

.footer-copyright p {
  color: #999999;
  margin: 0;
  font-size: 14px;
}

.pre-footer-section .footer-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.pre-footer-section .footer-brand-section,
.footer-brand-section {
  max-width: 400px;
}

.pre-footer-section .footer-brand,
.footer-brand {
  margin-bottom: 24px;
}

.pre-footer-section .footer-logo,
.footer-logo {
  filter: brightness(0) invert(1);
}

.pre-footer-section .footer-description,
.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin: 0 0 32px;
  font-size: 15px;
}

.pre-footer-section .footer-social,
.footer-social {
  display: flex;
  gap: 16px;
}

.pre-footer-section .footer-social a,
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333333;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pre-footer-section .footer-social a:hover,
.footer-social a:hover {
  background: #555555;
  transform: translateY(-2px);
}

.pre-footer-section .footer-social i,
.footer-social i {
  font-size: 18px;
}

.pre-footer-section .footer-nav h4,
.footer-nav h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 24px;
}

.pre-footer-section .footer-nav ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pre-footer-section .footer-nav li,
.footer-nav li {
  margin-bottom: 12px;
}

.pre-footer-section .footer-nav a,
.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.pre-footer-section .footer-nav a:hover,
.footer-nav a:hover {
  color: #ffffff;
}

.pre-footer-section .footer-contact h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 24px;
}

.pre-footer-section .contact-info p,
.contact-info p {
  color: #cccccc;
  margin: 0 0 16px;
  line-height: 1.6;
  font-size: 15px;
}

.pre-footer-section .contact-info a,
.contact-info a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pre-footer-section .contact-info a:hover,
.contact-info a:hover {
  color: #ffffff;
}

.pre-footer-section .footer-bottom,
.footer-bottom {
  border-top: 1px solid #333333;
  padding: 24px 0;
  text-align: center;
}

.pre-footer-section .footer-bottom p,
.footer-bottom p {
  color: #999999;
  margin: 0;
  font-size: 14px;
}

/* Final CTA Section for Solutions Page */
.final-cta {
  background: #4a5568;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-content-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.final-cta h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #ffffff;
  text-align: center;
}

.final-cta p {
  font-size: 20px;
  color: #e2e8f0;
  margin: 0 0 40px;
  line-height: 1.6;
  text-align: center;
}

.cta-button-center {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.final-cta .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Solutions Help Section */
.solutions-help {
  background: #f8fafc;
  padding: 80px 0;
}

.solutions-help .section-head h2 {
  color: #1e40af;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.solutions-help .section-head p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solution-icon {
  margin-bottom: 24px;
}

.solution-icon i {
  font-size: 32px;
  color: #7ed957;
  display: block;
}

.solution-item h4 {
  color: #1e40af;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.solution-item p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* RFP Pricing Section */
.pricing {
  background: #ffffff;
  padding: 80px 0;
}

.pricing .section-head h2 {
  color: #012e9e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing .section-head p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* New Pricing Grid */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card-new {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

/* Popular Ribbon */
.popular-ribbon {
  position: absolute;
  top: 20px;
  left: -30px;
  background: var(--brand);
  color: white;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  z-index: 10;
}

/* Pricing Header (Dark Section) */
.pricing-header {
  background: #4a5568;
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: white;
}

.pricing-header p {
  font-size: 16px;
  color: #cbd5e0;
  margin: 0;
  line-height: 1.4;
}

/* Pricing Body (White Section) */
.pricing-body {
  background: white;
  padding: 40px 30px;
  text-align: center;
}

.price-display-new {
  margin-bottom: 16px;
}

.price-display-new .currency {
  font-size: 24px;
  color: #012e9e;
  font-weight: 600;
  vertical-align: top;
}

.price-display-new .amount {
  font-size: 64px;
  color: #012e9e;
  font-weight: 700;
  line-height: 1;
}

.price-display-new .cents {
  font-size: 24px;
  color: #012e9e;
  font-weight: 600;
  vertical-align: top;
}

.price-addon-new {
  font-size: 16px;
  color: #374151;
}

.price-per-lane {
  color: #012e9e;
  font-weight: 600;
}

/* Pricing Features */
.pricing-features-new {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.pricing-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-feature-item-new:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing-feature-item-new i {
  font-size: 18px;
  color: #7ed957;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-item-new span:last-child {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
}

/* Pricing Footer */
.pricing-footer-new {
  margin-top: 32px;
  text-align: center;
}

.order-btn-new {
  background: var(--brand);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.order-btn-new:hover {
  background: #6bc949;
  transform: translateY(-2px);
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .price-display-new .amount {
    font-size: 48px;
  }
}

/* Responsive for Solutions */
@media (max-width: 968px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Responsive for Final CTA */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 0;
  }
  
  .final-cta h1 {
    font-size: 36px;
  }
  
  .final-cta p {
    font-size: 18px;
  }
}

/* Footer Responsive */
@media (max-width: 968px) {
  .pre-footer-section .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .pre-footer-section .footer-brand-section,
  .footer-brand-section {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 568px) {
  .pre-footer-section .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pre-footer-section,
  .site-footer {
    padding: 40px 0 0;
  }
}

/* Contact Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-cta {
    padding: 60px 20px;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 32px;
    border-radius: 16px;
  }
  
  .cta-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .contact { padding: 60px 0; }
  .contact-card, .contact-info { padding: 32px; }
  .contact-cta { padding: 32px; }
  .social-list { justify-content: center; }
}

/* Case Study */
.case-study { background: #ffffff; padding: 80px 0; }

.case-study-intro { 
  text-align: center; 
  margin-bottom: 60px; 
}
.case-study-intro p { 
  font-size: 18px; 
  color: var(--muted); 
  max-width: 600px; 
  margin: 0 auto; 
  line-height: 1.6;
}

.case-study-content { }
.case-study-layout { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
  max-width: 1000px; 
  margin: 0 auto; 
}

/* Case Study Image */
.case-study-image { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}
.case-study-image img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 12px; 
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); 
  transition: transform 0.3s ease;
}
.case-study-image img:hover { 
  transform: translateY(-5px); 
}

/* Case Study Placeholder */
.case-study-placeholder {
  width: 350px;
  height: 453px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  text-align: center;
}

.case-study-placeholder:hover {
  transform: translateY(-5px);
}

.case-study-logo {
  margin-bottom: 20px;
}

.case-study-logo img {
  max-width: 200px;
  height: auto;
  opacity: 0.9;
}

.case-study-icon {
  font-size: 48px;
  color: #7ed957;
  margin-bottom: 20px;
}

.case-study-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.case-study-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}

.case-study-description {
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Case Study Form Section */
.case-study-form-section { }
.case-study-header { 
  margin-bottom: 32px; 
}
.case-study-header h4 { 
  margin: 0 0 16px; 
  font-size: 28px; 
  font-weight: 700; 
  color: var(--text); 
  line-height: 1.3;
}
.case-study-header h5 { 
  margin: 0; 
  font-size: 18px; 
  font-weight: 500; 
  color: var(--muted); 
  line-height: 1.5;
}

/* Case Study Form */
.case-study-form { display: grid; gap: 20px; }
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}
.form-field { display: grid; }
.form-field.full { grid-column: 1 / -1; }
.form-field.half { }

.case-study-form input { 
  padding: 16px; 
  border: 1px solid #e5e7eb; 
  border-radius: 8px; 
  font-size: 16px; 
  font-family: inherit;
  transition: border-color 0.3s;
  background: #ffffff;
}
.case-study-form input:focus { 
  outline: none; 
  border-color: var(--brand); 
  box-shadow: 0 0 0 3px rgba(126,217,87,0.1);
}
.case-study-form input::placeholder { 
  color: var(--muted); 
}

.case-study-form .form-submit { 
  margin-top: 8px; 
}
.case-study-form button { 
  width: 100%; 
  padding: 16px; 
  font-size: 16px; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  white-space: nowrap; 
  border: 0; 
}

/* Case Study Responsive */
@media (max-width: 968px) {
  .case-study-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-study-image {
    order: 2;
  }
  .case-study-form-section {
    order: 1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .case-study { padding: 60px 0; }
  .case-study-intro { margin-bottom: 40px; }
  .case-study-header h4 { font-size: 24px; }
  .case-study-header h5 { font-size: 16px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Final CTA */
.final-cta { 
  background: #f8fafc; 
  padding: 80px 40px; 
}

.cta-card-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
  gap: 40px;
}

.cta-text-section {
  flex: 1;
  text-align: left;
}

.cta-text-section h3 {
  margin: 0 0 16px;
  font-size: 32px;
  color: #7ed957;
  font-weight: 600;
  line-height: 1.2;
}

.cta-text-section p {
  margin: 0;
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
}

.cta-button-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.btn-cta-green {
  background: var(--brand);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-green:hover {
  background: #6bc949;
  transform: translateY(-2px);
}

/* Final CTA Responsive */
@media (max-width: 968px) {
  .final-cta {
    padding: 60px 20px;
  }
  
  .cta-card-layout {
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px;
    text-align: center;
  }
  
  .cta-text-section {
    text-align: center;
  }
  
  .cta-text-section h3 {
    font-size: 28px;
  }
  
  .cta-text-section p {
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .cta-card-layout {
    padding: 30px 20px;
  }
  
  .cta-text-section h3 {
    font-size: 24px;
  }
}

/* About Us Hero Section */
.about-hero {
  background: #4a5568;
  padding: 80px 0;
  color: white;
}

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

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  text-align: center;
}

.about-hero > div > p {
  font-size: 20px;
  color: #e2e8f0;
  margin: 0 0 60px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

/* Elementor Container for About Cards */
.about-hero .elementor-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Elementor Column Styling (White Cards) */
.about-hero .elementor-column {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Elementor Divider (Green Line) */
.about-hero .elementor-divider {
  margin-bottom: 24px;
}

.about-hero .elementor-divider-separator {
  display: block;
  width: 60px;
  height: 4px;
  background: #7ed957;
  border: none;
}

/* Elementor Headings */
.about-hero .elementor-heading-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 20px;
  line-height: 1.2;
}

/* Elementor Text Editor */
.about-hero .elementor-widget-text-editor p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Elementor Icon List */
.about-hero .elementor-icon-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-hero .elementor-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.about-hero .elementor-icon-list-item:last-child {
  margin-bottom: 0;
}

.about-hero .elementor-icon-list-icon {
  color: #7ed957;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-hero .elementor-icon-list-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
}

/* Responsive About Cards */
@media (max-width: 968px) {
  .about-hero .elementor-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-hero h1 {
    font-size: 36px;
  }
  
  .about-hero > div > p {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .about-hero {
    padding: 60px 0;
  }
  
  .about-card {
    padding: 30px 20px;
  }
  
  .about-hero h1 {
    font-size: 32px;
  }
  
  .about-hero > div > p {
    font-size: 16px;
  }
}

/* New Pillars Section */
.pillars-new {
  background: #f8fafc;
  padding: 80px 0;
}

.pillars-new .section-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 60px;
  text-align: center;
}

.pillars-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-item-new {
  position: relative;
  text-align: left;
}

.pillar-number-bg {
  font-size: 120px;
  font-weight: 900;
  color: #e5e7eb;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pillar-item-new h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 16px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.pillar-item-new p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Pillars */
@media (max-width: 968px) {
  .pillars-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pillars-new .section-head h2 {
    font-size: 36px;
  }
  
  .pillar-number-bg {
    font-size: 80px;
  }
}

@media (max-width: 568px) {
  .pillars-new {
    padding: 60px 0;
  }
  
  .pillars-new .section-head h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .pillar-number-bg {
    font-size: 60px;
  }
  
  .pillar-item-new h4 {
    font-size: 20px;
  }
  
  .pillar-item-new p {
    font-size: 14px;
  }
}

/* New Founder Section */
.founder-new {
  background: #ffffff;
  padding: 80px 0;
}

.founder-new .section-head {
  margin-bottom: 60px;
}

.founder-new .section-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
  margin: 0;
  text-align: left;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-content {
  text-align: left;
}

.founder-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: #7ed957;
  margin: 0 0 32px;
  line-height: 1.2;
}

.founder-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 24px;
}

.founder-content p:last-of-type {
  margin-bottom: 40px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0077b5;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.linkedin-btn:hover {
  background: #005885;
  transform: translateY(-2px);
}

.founder-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d1d5db;
  position: relative;
}

/* Founder Photo Styling */
.founder-photo {
  width: 85%;
  height: 450px;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  display: block;
  background: #ffffff;
}

.founder-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #e5e7eb;
  border-radius: 4px;
}

/* Responsive Founder */
@media (max-width: 968px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .founder-new .section-head h2 {
    font-size: 36px;
    text-align: center;
  }
  
  .founder-content {
    text-align: center;
  }
  
  .image-placeholder {
    height: 250px;
  }
}

@media (max-width: 568px) {
  .founder-new {
    padding: 60px 0;
  }
  
  .founder-new .section-head h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .founder-content h3 {
    font-size: 28px;
  }
  
  .founder-content p {
    font-size: 14px;
  }
  
  .image-placeholder {
    height: 200px;
  }
}

/* New FAQ Section */
.faq-new {
  padding: 0;
  background: transparent;
}

.faq-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0;
}

.faq-left {
  background: #6b7280;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stylized Question Mark */
.faq-question-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 280px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  user-select: none;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Subtle animation on hover */
.faq-left:hover .faq-question-mark {
  color: rgba(126, 217, 87, 0.4);
  transform: scale(1.02);
}

.faq-right {
  display: none;
}

.faq-new .section-head {
  margin: 0 0 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.faq-new .section-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 24px;
  text-align: center;
}

.faq-new .section-head p {
  font-size: 18px;
  color: #000000;
  margin: 0;
  text-align: center;
}

/* New Stats Section */
.stats-new {
  background: #f8fafc;
  padding: 80px 0;
}

.stats-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid-inline {
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.stats-intro-inline {
  padding-right: 20px;
}

.stats-intro-inline p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

.stats-label {
  font-size: 18px;
  font-weight: 700;
  color: #1e40af;
  margin-right: 8px;
}

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

.stat-number-new {
  font-size: 72px;
  font-weight: 900;
  color: #7ed957;
  line-height: 0.9;
  flex-shrink: 0;
  margin-top: -5px;
}

.stat-label-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.stat-label-group h6 {
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
  margin: 0;
  line-height: 1.1;
}

/* CTA Card */
.cta-card-new {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 0;
  overflow: hidden;
}

.cta-content-new {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 60px;
}

.cta-text-new h3 {
  font-size: 28px;
  font-weight: 600;
  color: #7ed957;
  margin: 0 0 16px;
  line-height: 1.2;
}

.cta-text-new p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.btn-schedule {
  background: #7ed957;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-schedule:hover {
  background: #6bc949;
  transform: translateY(-2px);
}

/* Responsive Stats */
@media (max-width: 968px) {
  .stats-grid-inline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-intro-inline {
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .cta-content-new {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 30px 40px;
  }
  
  .stat-number-new {
    font-size: 60px;
  }
}

@media (max-width: 568px) {
  .stats-new {
    padding: 60px 0;
  }
  
  .stats-grid-inline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-item-new {
    justify-content: center;
  }
  
  .cta-content-new {
    padding: 20px 30px;
  }
  
  .stat-number-new {
    font-size: 50px;
  }
  
  .cta-text-new h3 {
    font-size: 24px;
  }
}

/* Contact Page Elementor Hero */
.elementor-element-27e672c {
  background: #54595f !important;
  padding: 120px 0;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elementor-element-27e672c .elementor-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.elementor-element-27e672c .elementor-heading-title {
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin: 0 0 32px;
  line-height: 1.1;
  text-align: center;
}

.elementor-element-27e672c .elementor-widget-text-editor p {
  font-size: 20px;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.elementor-element-27e672c .elementor-background-overlay {
  display: none;
}

/* Responsive Contact Hero Elementor */
@media (max-width: 968px) {
  .elementor-element-27e672c {
    padding: 80px 0;
  }
  
  .elementor-element-27e672c .elementor-heading-title {
    font-size: 48px;
  }
  
  .elementor-element-27e672c .elementor-widget-text-editor p {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .elementor-element-27e672c {
    padding: 60px 0;
  }
  
  .elementor-element-27e672c .elementor-heading-title {
    font-size: 36px;
  }
  
  .elementor-element-27e672c .elementor-widget-text-editor p {
    font-size: 16px;
  }
}

/* Contact Form Section */
.contact-form-section {
  background: #f8fafc;
  padding: 80px 0;
}

.contact-info-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-card h2,
.contact-info-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 30px;
  text-align: left;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.field-label::after {
  content: " *";
  color: #ef4444;
}

.field-input,
.field-textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: #f9fafb;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: white;
}

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

.btn-submit {
  background: #7ed957;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #6bc949;
  transform: translateY(-1px);
}

/* Contact Info Styling */
.contact-section {
  margin-bottom: 40px;
}

.contact-section:last-child {
  margin-bottom: 0;
}

.contact-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
}

.icon-box {
  width: 20px;
  height: 20px;
  background: #7ed957;
  border-radius: 2px;
  margin-top: 2px;
}

.contact-details p {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.5;
}

/* Social Media */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #7ed957;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #6bc949;
  transform: translateY(-2px);
}

/* Responsive Contact Info */
@media (max-width: 968px) {
  .contact-info-card {
    padding: 30px;
  }
}

@media (max-width: 568px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact-info-card h2 {
    font-size: 20px;
  }
}

/* Elementor Accordion */
.faq-new .elementor-accordion {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-new .elementor-accordion-item {
  border: 1px solid #9ca3af;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
}

.faq-new .elementor-tab-title {
  background: #ffffff;
  padding: 0;
}

.faq-new .elementor-accordion-title {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.faq-new .elementor-accordion-title:hover {
  color: #1e40af;
}

.faq-new .elementor-accordion-icon {
  color: #6b7280;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-new .elementor-accordion-title[aria-expanded="true"] .elementor-accordion-icon {
  transform: rotate(45deg);
}

.faq-new .elementor-tab-content {
  padding: 0 24px 24px;
  background: #ffffff;
  color: #6b7280;
  line-height: 1.6;
  border-top: 1px solid #e5e7eb;
}

.faq-new .elementor-tab-content p {
  margin: 16px 0 0;
  font-size: 16px;
}

/* Responsive FAQ */
@media (max-width: 968px) {
  .faq-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .faq-left,
  .faq-right {
    padding: 60px 40px;
  }
  
  /* Responsive question mark */
  .faq-question-mark {
    font-size: 200px;
  }
  
  .faq-new .section-head h2 {
    font-size: 36px;
  }
  
  .faq-new .section-head p {
    font-size: 16px;
  }
  
  .faq-new .elementor-accordion-title {
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .faq-new .elementor-tab-content {
    padding: 0 20px 20px;
  }
}

@media (max-width: 568px) {
  .faq-left,
  .faq-right {
    padding: 40px 20px;
  }
  
  /* Mobile question mark */
  .faq-question-mark {
    font-size: 150px;
  }
  
  .faq-new .section-head h2 {
    font-size: 32px;
  }
  
  .faq-new .section-head p {
    font-size: 14px;
  }
  
  .faq-new .elementor-accordion-title {
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .faq-new .elementor-tab-content {
    padding: 0 16px 16px;
  }
  
  .faq-new .elementor-tab-content p {
    font-size: 14px;
  }
}

.elementor-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.elementor-tab-title {
  margin: 0;
}

.elementor-accordion-title {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.elementor-accordion-title:hover {
  background: #f8fafc;
  color: var(--primary);
}

.elementor-accordion-title:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.elementor-accordion-icon {
  margin-right: 16px;
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.elementor-accordion-item.active .elementor-accordion-icon {
  transform: rotate(45deg);
}

.elementor-tab-content {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
  background: #ffffff;
}

.elementor-accordion-item.active .elementor-tab-content {
  display: block;
}

.elementor-tab-content p {
  margin: 0;
  font-size: 14px;
}

/* Accordion Responsive */
@media (max-width: 768px) {
  .elementor-accordion-title {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .elementor-tab-content {
    padding: 0 20px 20px;
  }
  
  .elementor-accordion-icon {
    margin-right: 12px;
  }
}

/* Elementor Text Editor Widget */
.elementor-widget-text-editor {
  margin: 16px 0;
}

.elementor-widget-text-editor .elementor-widget-container {
  color: var(--muted);
  line-height: 1.6;
}

.elementor-widget-text-editor .elementor-widget-container p {
  margin: 0;
  font-size: 15px;
}

.elementor-widget-text-editor .elementor-widget-container span {
  font-weight: 400 !important;
}

/* Contact Page Styles */
.contact-info {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
}

.contact-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.contact-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: var(--primary-hover);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-actions {
  margin-top: 32px;
  text-align: center;
}

/* Contact FAQ */
.contact-faq {
  padding: 80px 0;
  background: #f8fafc;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-info { padding: 60px 0; }
  .contact-form-section { padding: 60px 0; }
  .contact-faq { padding: 60px 0; }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-item {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
}

/* Footer */
.site-footer { 
  background: var(--bg-darker); 
  color: var(--surface); 
  padding: 0; 
  margin-top: 0;
}

.site-primary-footer-wrap {
  padding: 60px 0 40px;
}

.ast-builder-grid-row-container-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ast-builder-footer-grid-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 48px; 
  align-items: start; 
  margin-bottom: 48px; 
  padding: 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  max-width: 119px;
  height: auto;
  filter: brightness(0) invert(1); /* Make logo white */
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link.facebook {
  background-color: #557dbc;
  color: white;
}

.social-link.twitter {
  background-color: #7acdee;
  color: white;
}

.social-link.linkedin {
  background-color: #1c86c6;
  color: white;
}

.social-link.youtube {
  background-color: #e96651;
  color: white;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-nav h4 {
  color: var(--surface);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

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

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

.footer-contact h4 {
  color: var(--surface);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-contact p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom { 
  border-top: 1px solid var(--border-dark); 
  padding-top: 24px; 
  text-align: center; 
}

.footer-bottom small {
  color: var(--text-muted);
}

/* AST Footer Widgets */
.footer-widget-area {
  margin: 0;
}

.textwidget p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.textwidget img {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.widget-title {
  color: var(--surface);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin-bottom: 8px;
}

.menu-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.menu-link:hover {
  color: var(--primary);
}

.current-menu-item .menu-link {
  color: var(--primary);
}

/* AST Social Media */
.ast-footer-social-wrap {
  margin-top: 20px;
}

.footer-social-inner-wrap {
  display: flex;
  gap: 12px;
}

.ast-builder-social-element {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ast-builder-social-element:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.ahfb-svg-iconset svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ast-facebook {
  background-color: #557dbc;
  color: white;
}

.ast-twitter {
  background-color: #7acdee;
  color: white;
}

.ast-linkedin {
  background-color: #1c86c6;
  color: white;
}

.ast-youtube {
  background-color: #e96651;
  color: white;
}

/* Below Footer */
.site-below-footer-wrap {
  background: rgba(0, 0, 0, 0.1);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ast-footer-copyright {
  text-align: center;
}

.ast-footer-copyright p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 920px) {
	.hero-inner { grid-template-columns: 1fr; }
	.media-grid { grid-template-columns: repeat(3, 1fr); }
	.media-analysis-layout { grid-template-columns: 1fr; gap: 40px; }
	.pricing-tables { grid-template-columns: 1fr 1fr; }
	.pricing-spacer { display: none; }
	.partners-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.associations-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.compare-container { grid-template-columns: 1fr 1fr; }
	.compare-spacer { display: none; }
	.cards-3 { grid-template-columns: repeat(2, 1fr); }
	.cards-4 { grid-template-columns: repeat(2, 1fr); }
	.benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.problems-layout { grid-template-columns: 1fr; gap: 40px; }
	.problems-image { order: 2; }
	.problems-boxes { order: 1; gap: 20px; }
	.steps-grid { grid-template-columns: 1fr; gap: 32px; }
	.promise-grid { grid-template-columns: 1fr; gap: 24px; }
	.solutions-grid { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.about-content { grid-template-columns: 1fr; gap: 32px; }
	.pillars-grid { grid-template-columns: repeat(2, 1fr); }
	.faq-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.booking-layout { grid-template-columns: 1fr; gap: 40px; }
	.login-layout { grid-template-columns: 1fr; gap: 32px; }
	.login-form-container { position: static; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-section { grid-column: 1 / -1; }
	.ast-builder-footer-grid-columns { grid-template-columns: 1fr 1fr; }
	.site-footer-primary-section-1 { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.solutions-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
	.primary-nav { position: fixed; inset: 60px 12px auto 12px; background: rgba(15,21,48,.96); padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); display: none; flex-direction: column; gap: 10px; }
	.primary-nav.open { display: flex; }
	.primary-nav ul { flex-direction: column; gap: 10px; }
	.nav-toggle { display: inline-block; }
	.cards-2 { grid-template-columns: 1fr; }
	.media-analysis-layout { gap: 32px; }
	.media-content h3 { font-size: 28px; }
	.media-thumbnail { height: 250px; }
	.media-play-button { width: 60px; height: 60px; font-size: 20px; }
	.thumbnail-image { width: 60px; height: 45px; }
	.pricing-tables { grid-template-columns: 1fr; gap: 24px; }
	.partners-grid { grid-template-columns: 1fr; gap: 20px; }
	.associations-grid { grid-template-columns: 1fr; gap: 20px; }
	.compare-container { grid-template-columns: 1fr; gap: 30px; }
	.benefits-grid { grid-template-columns: 1fr; gap: 20px; }
	.benefit-card { padding: 24px 20px; }
	.benefit-icon { width: 56px; height: 56px; font-size: 20px; }
	.benefit-title { font-size: 20px; }
	.problem-box { padding: 20px; gap: 16px; }
	.problem-icon { width: 44px; height: 44px; font-size: 18px; }
	.problem-title { font-size: 16px; }
	.problem-description { font-size: 14px; }
	.steps-grid { gap: 24px; }
	.step-content { padding: 24px 20px; }
	.step-number h2 { font-size: 36px; }
	.step-icon { width: 56px; height: 56px; font-size: 20px; }
	.step-title { font-size: 16px; }
	.testimonial-card { padding: 32px 24px; }
	.testimonial-footer { flex-direction: column; gap: 16px; text-align: center; }
	.testimonial-author { text-align: center; }
	.promise-card { padding: 24px 20px; }
	.promise-icon-box { flex-direction: column; text-align: center; gap: 16px; }
	.promise-content { text-align: center; }
	.media-grid { grid-template-columns: repeat(2, 1fr); }
	.pillars-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
	.footer-social { justify-content: center; }
	.ast-builder-footer-grid-columns { grid-template-columns: 1fr; gap: 32px; }
	.footer-social-inner-wrap { justify-content: center; }
	.site-primary-footer-wrap { padding: 40px 0 24px; }
}

/* Utilities */
label span { font-size: 13px; color: var(--muted); }
input, textarea { font: inherit; }
button { font: inherit; }

/* Links focus */
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; border-radius: 6px; }

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

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

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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