/* Landing Page Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Enhanced color palette */
  --primary: #007aff;
  --primary-dark: #0056b3;
  --primary-light: #4da3ff;
  --accent: #ff6b6b;
  --accent-dark: #ff5252;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --surface: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-cta {
  background: var(--primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 120px 0 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.hero-main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-12);
}

.hero-demo-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 2rem;
  align-items: start;
}

.demo-editor {
  background: var(--background-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--border);
  height: fit-content;
}

.demo-preview-right {
  display: flex;
  justify-content: center;
}

.demo-preview-right .preview-container {
  width: 100%;
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
}

.hero-bottom {
  width: 100%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 122, 255, 0.1);
  color: var(--primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(0, 122, 255, 0.2);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin: auto;
  justify-content: center;
}

.hero-note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Demo Section */
.demo-preview-center .preview-container {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
  width: 100%;
}


.editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.editor-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--text-primary);
}

.editor-icon {
  font-size: 1.25rem;
}

.editor-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.editor-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.control-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.control-select {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.control-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.control-color {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.control-color:hover {
  border-color: var(--primary);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: flex;
  align-items: center;

  gap: var(--space-3);
  cursor: pointer;
  user-select: none;
}

.toggle-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.toggle-input:checked ~ .toggle-label .toggle-text.desktop {
  color: var(--text-muted);
}

.toggle-input:checked ~ .toggle-label .toggle-text.mobile {
  color: var(--primary);
  font-weight: 500;
}

.toggle-slider {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  transition: var(--transition-normal);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.toggle-input:checked ~ .toggle-label .toggle-slider {
  background: var(--primary);
}

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

/* Preview Section */
.demo-preview {
  padding: var(--space-6);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.preview-title {
  font-weight: 600;
  color: var(--text-primary);
}

.preview-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--primary);
  color: white;
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.preview-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.preview-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  min-height: 400px;
  transition: var(--transition-normal);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
  background: var(--background-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

.btn-icon {
  font-size: 1.125rem;
}

/* Features Section */
.features {
  background: white;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 122, 255, 0.1);
  color: var(--primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  font-family: var(--font-display);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.feature-demo {
  background: var(--background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-light);
}

/* Feature Demo Components */
.google-connect-demo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.connect-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.google-logo {
  width: 24px;
  height: 24px;
}

.connect-title {
  font-weight: 500;
  color: var(--text-primary);
}

.connect-status {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 500;
}

.theme-showcase {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.theme-option {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.theme-option.active {
  border-color: var(--primary);
  transform: scale(1.1);
}

.theme-option[data-theme="dark"] {
  background: linear-gradient(135deg, #1a202c, #2d3748);
}

.theme-option[data-theme="light"] {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.theme-option[data-theme="blue"] {
  background: linear-gradient(135deg, #3182ce, #63b3ed);
}

.theme-option[data-theme="green"] {
  background: linear-gradient(135deg, #38a169, #68d391);
}

/* Rebrand Demo Styles */
.rebrand-demo {
  padding: var(--space-4);
}

.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.demo-item {
  text-align: center;
}

.demo-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.mini-calendar {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  min-width: 120px;
}

.calendar-header {
  font-weight: 600;
  padding: var(--space-2);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
}

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1);
  border-top: 1px solid var(--border);
  margin-top: var(--space-2);
  font-size: 0.75rem;
}

.dayframe-logo {
  color: var(--text-muted);
}

.custom-logo {
  color: var(--primary);
  font-weight: 600;
}

.arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .arrow {
    transform: rotate(90deg);
  }
}

.embed-demo {
  text-align: center;
}

.code-snippet {
  background: #1a202c;
  color: #e2e8f0;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
}

.embed-platforms {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

.platform {
  background: var(--primary);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Benefits Section */
.benefits {
  padding: var(--space-24) 0;
  background: var(--background-alt);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.benefit-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
  padding: var(--space-24) 0;
  background: white;
}

.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.social-proof-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.testimonial {
  background: var(--background-alt);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.testimonial-content {
  margin-bottom: var(--space-6);
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.author-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  text-align: center;
}

.trust-item {
  padding: var(--space-6);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.trust-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-4);
}

.cta-actions .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-actions .btn-primary:hover {
  background: var(--background-alt);
}

.cta-actions .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-note {
  opacity: 0.8;
  font-size: 0.875rem;
}

/* Growth Promise Section */
.growth-promise {
  padding: var(--space-24) 0;
  background: var(--background-alt);
}

.growth-promise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.growth-promise-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.growth-promise-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.growth-promise-header .section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.growth-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.growth-pillar {
  background: var(--surface);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.growth-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pillar-icon svg {
  width: 48px;
  height: 48px;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.pillar-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  text-align: left;
}

.footer-brand > div:first-child {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: flex-start;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: white;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .editor-controls {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}
/* New Sections Styles */

/* White Label Section */
.white-label {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.white-label-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.white-label-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.white-label-features {
  margin: var(--space-8) 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.feature-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.demo-comparison {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
}

.demo-item {
  text-align: center;
}

.demo-label {
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.demo-calendar {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 200px;
}

.calendar-header {
  font-weight: 600;
  padding: var(--space-3);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-3);
}

.calendar-body {
  margin-bottom: var(--space-4);
}

.event {
  background: var(--primary);
  color: white;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
}

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
}

.calendar-footer.branded {
  color: var(--text-muted);
}

.calendar-footer.custom {
  color: var(--primary);
  font-weight: 600;
}

.calendar-footer img {
  height: 16px;
  width: auto;
}

.custom-logo {
  font-size: 1rem;

/* Custom Branded Calendar Styling */
.demo-calendar.custom-branded {
  border-color: #28a745;
  box-shadow: 0 4px 6px -1px rgba(40, 167, 69, 0.1), 0 2px 4px -1px rgba(40, 167, 69, 0.06);
}

.demo-calendar.custom-branded .calendar-header {
  color: #28a745;
  border-bottom-color: rgba(40, 167, 69, 0.2);
}

.demo-calendar.custom-branded .event {
  background: #28a745;
  color: white;
}

.demo-calendar.custom-branded .calendar-footer.custom {
  color: #28a745;
  border-top-color: rgba(40, 167, 69, 0.2);
}
}

/* Client Cases Section */
.client-cases {
  background: white;
}

.client-cases-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.client-cases-header {
  text-align: center;
  padding: var(--space-24) 0 var(--space-16);
}

.client-cases-scroll-wrapper {
  height: 200vh; /* Reduced from 300vh to make scrolling more responsive */
  position: relative;
  margin: 0 calc(-1 * var(--space-6));
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.client-cases-scroll-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  width: 100vw !important;
  left: 0;
  right: 0;
}

.client-cases-grid {
  display: flex !important;
  flex-direction: row !important;
  width: 2960px !important; /* 3 cards × (900px + 20px margin) + 200px padding = 2960px */
  height: 80vh;
  transition: transform 0.1s ease-out;
  will-change: transform;
  margin: 0;
  padding: 0 100px; /* Add 100px padding on each side to prevent clipping */
  align-items: stretch;
}

.client-case {
  background: var(--background-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--border);
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
    margin: 12px;
}

/* Mobile-specific styling for client cases */
@media (max-width: 768px) {
  .client-cases-scroll-wrapper {
    width: 100vw !important;
    margin: 0 !important;
    left: 0 !important;
    transform: none !important;
    height: 1000px !important; /* Fixed height to prevent overlapping */
  }

  .client-cases-scroll-container {
    position: static; /* Remove sticky positioning */
    width: 100vw !important;
    height: calc(1000px - 120px) !important; /* Reserve space for sticky text */
    overflow-x: auto !important; /* Enable horizontal scrolling */
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    display: flex;
    align-items: stretch;
    padding: 120px 0 var(--space-4) 0; /* Top padding for sticky text space */
  }

  .client-cases-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: calc(3 * (900px + 20px) + 200px) !important; /* Add 200px extra padding to prevent clipping */
    height: 100% !important;
    gap: 0; /* Remove gap, using margin-left instead */
    padding: 0 calc((100vw - 900px) / 2 + 100px) 0 calc((100vw - 900px) / 2 + 100px); /* Extra padding to prevent clipping */
  }

  .client-case,
  .comparison-case {
    flex: 0 0 900px !important; /* Fixed width for consistent sizing */
    width: 900px !important;
    height: auto !important;
    margin-left: 20px !important;
    box-sizing: border-box;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  /* Hide original case descriptions on mobile */
  .case-description {
    display: none !important;
  }

  /* Pinkerton Agency branded calendar - Green theme with orange events */
  .case-calendar.pinkerton-agency {
    background: linear-gradient(135deg, #2d5016 0%, #365314 100%);
    border: 2px solid #4d7c0f;
  }

  .case-calendar.pinkerton-agency .calendar-tip {
    background: rgba(77, 124, 15, 0.9);
    color: white;
  }

  .case-calendar.pinkerton-agency .day-header {
    background: #365314;
    color: white;
    font-weight: 600;
  }

  .case-calendar.pinkerton-agency .date-cell {
    border-color: #4d7c0f;
    color: white;
  }

  .case-calendar.pinkerton-agency .event-item.farmers-market {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    font-size: 0.75rem;
  }

  .case-calendar.pinkerton-agency .event-item.food-trucks {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    font-size: 0.75rem;
  }

  /* Strong Pollo branded calendar - Dark theme with pink events */
  .case-calendar.strong-pollo {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #374151;
  }

  .case-calendar.strong-pollo .calendar-tip {
    background: rgba(55, 65, 81, 0.9);
    color: white;
  }

  .case-calendar.strong-pollo .day-header {
    background: #374151;
    color: #ec4899;
    font-weight: 600;
  }

  .case-calendar.strong-pollo .date-cell {
    border-color: #374151;
    color: white;
  }

  .case-calendar.strong-pollo .event-item.karaoke {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    font-size: 0.75rem;
  }

  .case-calendar.strong-pollo .event-item.bingo {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    font-size: 0.75rem;
  }

  .case-calendar.strong-pollo .event-item.trivia {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    font-size: 0.75rem;
  }

  .case-header {
    display: none;
  }

  /* Nudging animation for horizontal scroll hint */
  .client-cases-grid {
    animation: nudgeHint 3s ease-in-out infinite;
  }

  .client-cases-grid.interacted {
    animation: none;
  }

  @keyframes nudgeHint {
    0%, 70%, 100% {
      transform: translateX(0);
    }
    10%, 30% {
      transform: translateX(-8px);
    }
    20% {
      transform: translateX(8px);
    }
  }
}


.comparison-case {
  background: #fef2f2;
  border: 1px solid #fecaca;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.case-header {
  margin-bottom: var(--space-6);
}

.case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.case-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.case-demo {
  margin-top: var(--space-4);
}

.case-calendar {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.calendar-tip {
  background: #fef3c7;
  color: #92400e;
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
}

.farmers-market {
  border: 2px solid #059669;
}

.entertainment {
  border: 2px solid #dc2626;
}

.calendar-grid {
  padding: var(--space-4);
}

.calendar-header-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.day-header {
  text-align: center;
  font-weight: 600;
  color: var(--text-secondary);
  padding: var(--space-2);
  font-size: 0.875rem;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
}

.date-cell {
  aspect-ratio: 1;
  border: 1px solid var(--border-light);
  padding: var(--space-1);
  font-size: 0.75rem;
  position: relative;
  background: white;
}

.date-cell.today {
  background: #dbeafe;
  border-color: var(--primary);
  font-weight: 600;
}

.event-item {
  background: #f59e0b;
  color: white;
  padding: 1px 3px;
  border-radius: 2px;
  font-size: 0.6rem;
  margin-top: 2px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entertainment .event-item {
  background: #ec4899;
}

.case-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 16px;
}

/* Ugly Calendar Styles */
.ugly-calendar {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  font-family: Arial, sans-serif;
}

.ugly-header {
  background: #e5e7eb;
  padding: var(--space-3);
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #d1d5db;
}

.ugly-nav {
  background: #f9fafb;
  padding: var(--space-2);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  border-bottom: 1px solid #d1d5db;
}

.ugly-calendar-grid {
  padding: var(--space-2);
}

.ugly-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #d1d5db;
}

.ugly-day-header {
  background: #f3f4f6;
  padding: var(--space-1);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.ugly-date {
  background: white;
  padding: var(--space-1);
  min-height: 40px;
  font-size: 0.75rem;
}

.ugly-event {
  background: #10b981;
  color: white;
  padding: 1px 2px;
  font-size: 0.6rem;
  margin-top: 2px;
  border-radius: 2px;
}

.ugly-footer {
  background: #f9fafb;
  padding: var(--space-2);
  font-size: 0.7rem;
  color: #6b7280;
  border-top: 1px solid #d1d5db;
  display: flex;
  justify-content: space-between;
}

.google-branding {
  color: #3b82f6;
  font-weight: 500;
}

/* Fine Details Section */
.fine-details {
  padding: var(--space-24) 0;
  background: var(--background-alt);
}

.fine-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.fine-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.detail-features {
  margin-top: var(--space-8);
}

.detail-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

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

.detail-showcase {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.showcase-item {
  margin-bottom: var(--space-8);
}

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

.showcase-label {
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.time-examples {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.time-example {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--background-alt);
  border-radius: var(--radius-md);
}

.time-emoji {
  font-size: 1.5rem;
}

.time-text {
  font-weight: 500;
}

.color-harmony {
  display: flex;
  gap: var(--space-4);
}

.color-set {
  display: flex;
  gap: var(--space-2);
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Sharing Functionality Section */
.sharing-functionality {
  padding: var(--space-24) 0;
  background: white;
}

.sharing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.sharing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.sharing-benefits {
  margin-top: var(--space-8);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

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

.benefit-content h4 {
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

/* Responsive styles for new hero layout */
@media (max-width: 768px) {
  .hero-content {
    gap: var(--space-8);
  }
  
  .hero-demo-container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .demo-editor {
    padding: var(--space-4);
  }
  
  .demo-preview-right .preview-container {
    padding: var(--space-4);
  }
  
  .editor-controls {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* Reduce whitespace between hero and features on mobile */
  .hero {
    padding: 100px 0 var(--space-12);
    transform: none !important;
  }
  
  .hero * {
    transform: none !important;
  }
  
  .features {
    padding: var(--space-12) 0;
  }
  
  .features-header {
    margin-bottom: var(--space-12);
  }
}

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

.sharing-flow {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.flow-step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto var(--space-3);
}

.step-title {
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
}

.step-visual {
  background: var(--background-alt);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.google-connect,
.share-invite,
.branded-calendar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .white-label-content,
  .fine-details-content,
  .sharing-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  
  
  .demo-comparison {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .sharing-flow {
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
  }
  
  .flow-step {
    max-width: 280px;
    width: 100%;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    font-size: 1.25rem;
    margin: var(--space-2) 0;
    color: var(--primary);
  }
  
  .step-visual {
    margin-top: var(--space-4);
  }
  
  .google-connect,
  .share-invite,
  .branded-calendar {
    justify-content: center;
    padding: var(--space-2);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
  }
  
  .calendar-dates {
    font-size: 0.7rem;
  }
  
  .event-item {
    font-size: 0.55rem;
  }
  html, body {
    overflow-x: hidden !important;
  }
}

@media (max-width: 768px) {

.client-case{
justify-content: flex-end !important; 
    align-items: flex-start !important;

}
}

@media (min-width: 768px) {

.mobile-sticky-text {
  display: none;
}
}

/* Business Story Styles - Optimized for horizontal scroll containers */
.case-business-story {
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.business-overview {
  text-align: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-color);
}

.business-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
}

.business-overview h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.business-overview p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.business-challenge,
.dayframe-solution {
  margin-bottom: var(--space-4);
}

.business-challenge h4,
.dayframe-solution h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.business-challenge p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.dayframe-solution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dayframe-solution li {
  padding: var(--space-1) 0;
  color: var(--text-secondary);
  line-height: 1.4;
  font-size: 0.9rem;
}

.dayframe-solution li strong {
  color: var(--text-primary);
}

.case-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-color);
}

.visit-website-btn,
.try-demo-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.visit-website-btn {
  background: var(--primary);
  color: white;
}

.visit-website-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.try-demo-btn {
  background: var(--background-alt);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.try-demo-btn:hover {
  background: var(--background);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .case-actions {
    flex-direction: column;
  }
  
  .case-business-story {
    padding: var(--space-4);
  }
  
  .business-icon {
    font-size: 2.5rem;
  }
}

/* Pinkerton Agency Branded Styles */
.pinkerton-branded {
  background: linear-gradient(135deg, #F79AC0 0%, #F8A2C4 100%);
  border: 3px solid #E6247A;
}

.pinkerton-story {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFEEF3 100%);
  border: 2px solid #F79AC0;
}

.business-hero {
  text-align: center;
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: linear-gradient(135deg, #F79AC0 0%, #E6247A 100%);
  border-radius: var(--radius-lg);
  color: white;
}

.business-logo {
  font-size: 2.5rem;
  margin-bottom: var(--space-1);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.business-tagline {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.service-item {
  text-align: center;
  padding: var(--space-2);
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid #F79AC0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247, 154, 192, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-1);
}

.service-item h4 {
  color: #E6247A;
  margin-bottom: var(--space-1);
  font-size: 0.9rem;
}

.service-item p {
  font-size: 0.8rem;
  line-height: 1.3;
}

.pinkerton-solution {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
  border: 2px solid #F79AC0;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.pinkerton-solution h4 {
  color: #E6247A;
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
}

.pinkerton-btn {
  background: linear-gradient(135deg, #E6247A 0%, #F79AC0 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pinkerton-btn:hover {
  background: linear-gradient(135deg, #D91A6E 0%, #F58BB4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 36, 122, 0.4);
}

/* Strong Pollo Branded Styles */
.strongpollo-branded {
  background: linear-gradient(135deg, #9ED1C8 0%, #C0DBB0 100%);
  border: 3px solid #629062;
}

.strongpollo-story {
  background: linear-gradient(135deg, #F6F9F6 0%, #F0F6F0 100%);
  border: 2px solid #9ED1C8;
}

.strongpollo-branded .business-hero {
  background: linear-gradient(135deg, #629062 0%, #314F35 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.feature-item {
  text-align: center;
  padding: var(--space-2);
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid #9ED1C8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(158, 209, 200, 0.3);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-1);
}

.feature-item h4 {
  color: #314F35;
  margin-bottom: var(--space-2);
}

.strongpollo-solution {
  background: linear-gradient(135deg, #F0F8F6 0%, #E8F4F0 100%);
  border: 2px solid #9ED1C8;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.strongpollo-solution h4 {
  color: #314F35;
  text-align: center;
  margin-bottom: var(--space-5);
}

.strongpollo-btn {
  background: linear-gradient(135deg, #629062 0%, #9ED1C8 100%);
  color: white;
  font-weight: 600;
}

.strongpollo-btn:hover {
  background: linear-gradient(135deg, #527A52 0%, #8BC4B8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 144, 98, 0.4);
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.solution-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.point-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.solution-point strong {
  color: var(--text-primary);
}

.solution-point div {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Ensure content fits in horizontal scroll containers */
.client-case {
  max-height: 800px;
  overflow: hidden;
}

.case-demo {
  height: 100%;
  max-height: 700px;
}

.case-business-story {
  max-height: 100%;
  box-sizing: border-box;
}

/* Compact feature/service item text */
.feature-item h4,
.service-item h4 {
  line-height: 1.2;
}

.feature-item p,
.service-item p {
  margin: 0;
  line-height: 1.2;
}

/* Optimize Strong Pollo solution section */
.strongpollo-solution {
  background: linear-gradient(135deg, #F0F8F6 0%, #E8F4F0 100%);
  border: 2px solid #9ED1C8;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.strongpollo-solution h4 {
  color: #314F35;
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
}

.strongpollo-btn {
  background: linear-gradient(135deg, #629062 0%, #9ED1C8 100%);
  color: white;
  font-weight: 600;
}

.strongpollo-btn:hover {
  background: linear-gradient(135deg, #527A52 0%, #8BC4B8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 144, 98, 0.4);
}

/* Simplified Case Study Styling */
.client-case {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 900px;
  width: 900px;
  margin-left: 20px;
  flex-shrink: 0;
}

.client-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #3b82f6;
}

.case-screenshot {
  height: 50vh;
  min-height: 300px;
  max-height: 500px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.case-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px;
}

.placeholder-content {
  text-align: center;
  color: #64748b;
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin: 20px;
  border: 2px dashed #e5e7eb;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.placeholder-content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #334155;
}

.placeholder-content p {
  font-size: 1.1rem;
  color: #64748b;
}

.case-content {
  padding: 40px;
}

.case-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.case-content p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.case-link:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .client-cases-grid {
    width: calc(3 * (85vw + 20px)) !important; /* 3 cards × (85vw + 20px margin) */
    padding: 0 calc((100vw - 85vw) / 2) 0 calc((100vw - 85vw) / 2) !important;
  }
  
  .client-case {
    width: 85vw !important;
    max-width: 85vw !important;
    border-radius: 16px;
  }
  
  .case-screenshot {
    height: 40vh;
    min-height: 250px;
  }
  
  .placeholder-content {
    padding: 30px 20px;
    margin: 15px;
  }
  
  .placeholder-content h4 {
    font-size: 1.5rem;
  }
  
  .placeholder-content p {
    font-size: 1rem;
  }
  
  .case-content {
    padding: 30px 25px;
  }
  
  .case-content h3 {
    font-size: 1.5rem;
  }
  
  .case-content p {
    font-size: 1rem;
  }
  
  .case-link {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .client-cases-grid {
    width: calc(3 * (90vw + 20px)) !important; /* 3 cards × (90vw + 20px margin) */
    padding: 0 calc((100vw - 90vw) / 2) 0 calc((100vw - 90vw) / 2) !important;
  }
  
  .client-case {
    width: 90vw !important;
    max-width: 90vw !important;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .business-logo {
    font-size: 2rem;
  }
  
  .business-tagline {
    font-size: 0.9rem;
  }
  
  .service-item,
  .feature-item {
    padding: var(--space-2);
  }
  
  .solution-point {
    flex-direction: column;
    text-align: center;
  }
  
  .client-case {
    max-height: none;
  }
  
  .case-demo {
    max-height: none;
  }
  
  .testimonial-benefits {
    grid-template-columns: 1fr;
  }
  
  .testimonial-actions {
    flex-direction: column;
  }
  
  .submit-testimonial-btn,
  .start-free-btn {
    max-width: none;
  }
  
  .testimonial-icon {
    font-size: 2.5rem;
  }
  
  .testimonial-hero h3 {
    font-size: 1.2rem;
  }
}

