/* 
* The Marketer's Toolkit for Go High Level
* Modern SaaS Website Design
*/

/* ======= Base Styles & Reset ======= */
:root {
  /* Primary colors */
  --primary: #ff6b00;
  --primary-dark: #e05a00;
  --primary-light: #ffa659;
  
  /* Secondary colors */
  --secondary: #ffab66;
  --secondary-light: #fff1e8;
  --accent: #1a8cff;
  
  /* Text colors */
  --text: #333333;
  --text-dark: #2a2a2a;
  --text-light: #666666;
  --text-secondary: #5c5c5c;
  
  /* Background colors */
  --bg-light: #FAF7F2;
  --bg-dark: #333333;
  
  /* Neutral colors */
  --dark: #222222;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
  
  /* Animation */
  --transition: all 0.3s ease;
}

.ai-wrapper {
  font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ai-wrapper {
  font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg-light);
  font-size: 16px;
  overflow-x: hidden;
}

.ai-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ai-wrapper h1, 
.ai-wrapper h2, 
.ai-wrapper h3, 
.ai-wrapper h4 {
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.ai-wrapper h1 {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
}

.ai-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.ai-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.ai-wrapper p {
  margin-bottom: 1.5rem;
}

.ai-wrapper a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

.ai-wrapper img {
  max-width: 100%;
  height: auto;
}

.ai-wrapper .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ai-wrapper .highlight {
  color: var(--primary);
  font-weight: 700;
}

.ai-wrapper section {
  padding: 5rem 0;
  position: relative;
}

.ai-wrapper .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.ai-wrapper .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ======= Buttons ======= */
.ai-wrapper .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  gap: 0.5rem;
}

.ai-wrapper .btn i {
  font-size: 0.9rem;
}

.ai-wrapper .btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.ai-wrapper .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.ai-wrapper .btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid rgba(26, 140, 255, 0.1);
}

.ai-wrapper .btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.ai-wrapper .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.ai-wrapper .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.ai-wrapper .btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ======= Navigation ======= */
.ai-wrapper .header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.ai-wrapper .navbar {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.ai-wrapper .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ai-wrapper .logo {
  height: 50px;
  display: block;
}

.ai-wrapper .nav-links {
  display: flex;
  gap: 2rem;
}

.ai-wrapper .nav-links a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.ai-wrapper .nav-links a:hover {
  color: var(--primary);
}

.ai-wrapper .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.ai-wrapper .nav-links a:hover::after {
  width: 100%;
}

.ai-wrapper .nav-cta {
  margin-left: 1rem;
}

/* ======= Hero Section ======= */
.ai-wrapper .hero {
  background: linear-gradient(120deg, var(--secondary-light) 0%, var(--secondary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ai-wrapper .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.ai-wrapper .hero-text {
  flex: 1;
  min-width: 300px;
}

.ai-wrapper .subheadline {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 540px;
}

.ai-wrapper .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ai-wrapper .hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

/* Add new video container styles while preserving original hero styles */
.ai-wrapper .hero-video {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.ai-wrapper .video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.ai-wrapper .video-container:hover {
  transform: perspective(1000px) rotateY(-2deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ai-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Preserve original mockup styles with new name */
.ai-wrapper .transform-mockup-original {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Keep original transform-mockup class for other uses */
.ai-wrapper .transform-mockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ai-wrapper .mockup-before, .ai-wrapper .mockup-after {
  position: relative;
  transition: var(--transition);
}

.ai-wrapper .mockup {
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.ai-wrapper .mockup-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.ai-wrapper .mockup-before:hover {
  transform: translateX(-10px) rotate(-2deg);
}

.ai-wrapper .mockup-after:hover {
  transform: translateX(10px) rotate(2deg);
}

/* ======= Problem/Solution Section ======= */
.ai-wrapper .problem-solution {
  background-color: var(--white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.ai-wrapper .solutions-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.ai-wrapper .solution-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ai-wrapper .solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Add delay for animations on solution cards */
.ai-wrapper .solution-card:nth-child(2) {
  transition-delay: 0.15s;
}

.ai-wrapper .solution-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Rocket icon animation */
.ai-wrapper .solution-card:nth-child(3) .solution-icon i {
  animation: rocketEffect 3s infinite;
}

@keyframes rocketEffect {
  0% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(-3px) rotate(3deg); }
  40% { transform: translateY(0) rotate(0deg); }
  60% { transform: translateY(-2px) rotate(-3deg); }
  80% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.ai-wrapper .main-solution {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  grid-column: 1 / -1;
}

.ai-wrapper .main-solution h2, .ai-wrapper .main-solution p {
  color: var(--white);
}

.ai-wrapper .solution-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

/* ======= Benefits Section ======= */
.ai-wrapper .benefits {
  background-color: var(--bg-light);
}

.ai-wrapper .benefit-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.ai-wrapper .benefit-card.reversed {
  flex-direction: row-reverse;
}

.ai-wrapper .benefit-content {
  flex: 1;
  min-width: 300px;
}

.ai-wrapper .benefit-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.ai-wrapper .feature-mockup {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.ai-wrapper .feature-mockup:hover {
  transform: scale(1.05) rotate(1deg);
}

.ai-wrapper .feature-list {
  margin-top: 1.5rem;
}

.ai-wrapper .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.ai-wrapper .feature-item i {
  color: var(--primary);
  margin-right: 8px;
}

/* ======= Testimonials Section ======= */
.ai-wrapper .testimonials {
  background-color: var(--secondary-light);
  text-align: center;
}

.ai-wrapper .testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  min-height: 250px;
}

.ai-wrapper .testimonial {
  display: none;
  animation: fadeIn 0.8s ease-out;
}

.ai-wrapper .testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-wrapper .testimonial-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.ai-wrapper .testimonial-content i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  display: block;
}

.ai-wrapper blockquote {
  margin: 0 0 1.5rem 0;
  font-style: italic;
  font-size: 1.1rem;
}

.ai-wrapper .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ai-wrapper .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
}

.ai-wrapper .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.ai-wrapper .author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.ai-wrapper .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 2;
}

.ai-wrapper .carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.ai-wrapper .carousel-btn.prev { left: -20px; }
.ai-wrapper .carousel-btn.next { right: -20px; }

.ai-wrapper .client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.ai-wrapper .client-logo {
  height: 50px;
  opacity: 0.7;
  transition: var(--transition);
}

.ai-wrapper .client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ai-wrapper .logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(26, 53, 94, 0.1);
}

/* ======= How It Works Section ======= */
.ai-wrapper .how-it-works {
  background-color: var(--white);
  text-align: center;
}

.ai-wrapper .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}

.ai-wrapper .step {
  flex: 1;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  max-width: 280px;
}

.ai-wrapper .step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.ai-wrapper .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.ai-wrapper .step-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ai-wrapper .step-connector {
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  flex: 0.5;
  max-width: 80px;
  z-index: 1;
}

/* ======= Pricing Section ======= */
.ai-wrapper .pricing {
  background-color: var(--bg-light);
}

.ai-wrapper .pricing-plans {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ai-wrapper .pricing-plan {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  transition: var(--transition);
}

.ai-wrapper .pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.ai-wrapper .pricing-plan.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.ai-wrapper .pricing-plan.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.ai-wrapper .featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.ai-wrapper .plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ai-wrapper .plan-header p {
  color: var(--text-light);
  margin-bottom: 0;
}

.ai-wrapper .plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.ai-wrapper .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.ai-wrapper .period {
  font-size: 1rem;
  color: var(--text-light);
}

.ai-wrapper .plan-features {
  margin-bottom: 2rem;
}

.ai-wrapper .plan-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.ai-wrapper .plan-feature i {
  color: var(--primary);
  margin-right: 10px;
}

.ai-wrapper .pricing-plan .btn {
  display: block;
  text-align: center;
}

/* ======= FAQ Section ======= */
.ai-wrapper .faq {
  background-color: var(--white);
}

.ai-wrapper .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 53, 94, 0.1);
  padding-bottom: 1rem;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ======= Final CTA Section ======= */
.final-cta {
  background-color: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--primary);
  z-index: 2;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--bg-light);
  transform: skewY(-1.5deg);
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2, .final-cta p {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.final-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(249, 134, 39, 0.3);
}

.final-cta .btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(249, 134, 39, 0.4);
}

/* Add a pulsing effect to CTA buttons */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 134, 39, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249, 134, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 134, 39, 0);
  }
}

.final-cta .btn-large {
  animation: buttonPulse 2s infinite;
}

/* ======= Footer ======= */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .step-connector {
    width: 3px;
    height: 40px;
    max-width: none;
  }
  
  .pricing-plan.featured {
    transform: scale(1);
  }
  
  .pricing-plan.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    margin: 1rem 0;
  }
  
  .benefit-card, .benefit-card.reversed {
    flex-direction: column;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .ai-wrapper section {
    padding: 3rem 0;
  }
  
  .ai-wrapper .nav-links {
    display: none;
    gap: 1rem;
  }
  
  .ai-wrapper .hero {
    padding: 3rem 0;
  }
  
  .ai-wrapper .transform-mockup {
    flex-direction: column;
  }
  
  .ai-wrapper .transform-mockup-original {
    flex-direction: column;
  }
  
  .ai-wrapper .mockup-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .ai-wrapper .carousel-btn.prev {
    left: 0;
  }
  
  .ai-wrapper .carousel-btn.next {
    right: 0;
  }
  
  .ai-wrapper .client-logos {
    gap: 1.5rem;
  }
  
  .ai-wrapper .video-container {
    transform: none;
    max-width: 100%;
  }
  
  .ai-wrapper .video-container:hover {
    transform: translateY(-5px);
  }
  
  .ai-wrapper .hero-video {
    width: 100%;
    margin-top: 2rem;
  }
}

/* Have Questions Section */
.ai-wrapper .have-questions {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.ai-wrapper .have-questions h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.ai-wrapper .have-questions > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.ai-wrapper .contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ai-wrapper .contact-option {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-wrapper .contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ai-wrapper .contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.ai-wrapper .contact-option h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.ai-wrapper .contact-option p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Agency Testimonials Section */
.ai-wrapper .agency-testimonials {
  padding: 80px 0 120px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.ai-wrapper .agency-testimonials::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--dark);
  transform: skewY(-1.5deg);
  z-index: 1;
}

.ai-wrapper .agency-testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ai-wrapper .agency-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.agency-testimonial {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.agency-testimonial:hover {
  transform: translateY(-5px);
}

.agency-testimonial .testimonial-content {
  padding: 2rem;
}

.agency-testimonial .fa-quote-left {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.agency-testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.facebook-group-cta {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.facebook-group-content {
  flex: 1;
  min-width: 300px;
}

.facebook-group-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.facebook-group-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.facebook-group-cta .btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--white);
  color: var(--primary);
  border: none;
}

.ai-wrapper .facebook-group-cta .btn-primary:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.facebook-group-cta .btn-large i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .facebook-group-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .agency-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-option {
    width: 100%;
    max-width: 400px;
  }
}

/* Add subtle hover effects to cards */
.solution-card:hover, 
.benefit-card:hover,
.pricing-plan:hover,
.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover:after {
  left: 100%;
}

/* Add section divider class for slanted transitions */
.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  transform: skewY(-1.5deg);
  z-index: 1;
} 
/* 
* The Marketer's Toolkit for Go High Level
* Orange & Black Theme
*/

/* ======= Override Base Colors ======= */
:root {
  --primary: #ff6b00;
  --primary-dark: #e05a00;
  --secondary: #ffab66;
  --secondary-light: #fff1e8;
  --dark: #222222;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #FAF7F2;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* ======= Background Colors ======= */
.ai-wrapper .hero {
  background: #222222;
  color: white;
  padding: 6rem 0 8rem 0;
  overflow: visible;
  position: relative;
}

.ai-wrapper .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #ffe8d9;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 1;
}

.ai-wrapper .hero-content {
  position: relative;
  z-index: 5;
  gap: 4rem;
}

.ai-wrapper .hero .subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.ai-wrapper .hero-text h1 {
  color: white;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.ai-wrapper .hero-text .highlight {
  color: #ff6b00;
  display: block;
  font-size: 3.2rem;
}

.ai-wrapper .hero em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.ai-wrapper .hero .btn-primary {
  background: #ff6b00;
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-wrapper .hero .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-wrapper .hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.ai-wrapper .solution-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  margin-top: -80px;
}

.ai-wrapper .solution-icon {
  color: #ff6b00;
  font-size: 2.5rem;
}

.ai-wrapper .main-solution {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.ai-wrapper .benefits {
  background-color: var(--bg-light);
}

.ai-wrapper .benefit-card {
  background-color: var(--white);
}

.ai-wrapper .testimonials {
  background-color: var(--secondary-light);
}

.ai-wrapper .how-it-works {
  background-color: #f9f9f9;
  padding: 80px 0;
  position: relative;
  border-bottom: 8px solid var(--dark);
  overflow: visible;
}

.ai-wrapper .how-it-works h2 {
  margin-bottom: 30px;
  color: var(--dark);
  font-size: 2.2rem;
}

.ai-wrapper .step-connector {
  height: 125px;
  background: none;
  width: 80px;
  z-index: 1;
  border-bottom: 2px dashed var(--primary);
  opacity: 0.7;
  display: block;
}

.ai-wrapper .step {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 30px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 18px;
  border: none;
}

.ai-wrapper .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ai-wrapper .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.ai-wrapper .step-number {
  background-color: var(--primary);
  color: white !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
  z-index: 3;
  border: 2px solid white;
}

.ai-wrapper .step-icon {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 10px;
  display: block;
  text-align: center;
}

.ai-wrapper .step-icon i {
  background-color: rgba(255, 107, 0, 0.08);
  padding: 20px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ai-wrapper .step:hover .step-icon i {
  background-color: rgba(255, 107, 0, 0.15);
  transform: scale(1.05);
}

.ai-wrapper .step h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.ai-wrapper .step p {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.ai-wrapper .steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ai-wrapper .pricing {
  background-color: var(--bg-light);
}

.ai-wrapper .pricing-plan {
  background-color: var(--white);
}

.ai-wrapper .pricing-plan.featured {
  border: 2px solid var(--primary);
}

.ai-wrapper .faq {
  background-color: var(--white);
}

.ai-wrapper .final-cta {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.ai-wrapper .footer {
  background-color: var(--dark);
}

/* ======= Element Colors ======= */
.ai-wrapper .nav-links a:hover::after {
  background-color: var(--primary);
}

.ai-wrapper .btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 15px rgba(255, 107, 0, 0.3);
}

.ai-wrapper .btn-secondary {
  border: 2px solid rgba(255, 107, 0, 0.1);
}

.ai-wrapper .btn-secondary:hover {
  background: var(--secondary-light);
  border-color: var(--primary);
}

.ai-wrapper .btn-outline {
  border: 2px solid var(--primary);
}

.ai-wrapper .btn-outline:hover {
  background: var(--primary);
}

.ai-wrapper .feature-item i, 
.ai-wrapper .solution-icon, 
.ai-wrapper .step-icon, 
.ai-wrapper .step-number,
.ai-wrapper .plan-feature i,
.ai-wrapper .faq-question i,
.ai-wrapper .mockup-arrow {
  color: var(--primary);
}

.ai-wrapper .author-image {
  border-color: var(--secondary);
}

.ai-wrapper .featured-badge {
  background-color: var(--primary);
}

/* ======= Custom Gradients for Mockups ======= */
#brandGradient stop:first-child {
  stop-color: #ffab66;
}

#brandGradient stop:last-child {
  stop-color: #fff1e8;
}

#focusGradient stop:first-child {
  stop-color: #fff1e8;
}

#focusGradient stop:last-child {
  stop-color: #ffab66;
}

#customGradient stop:first-child {
  stop-color: #222222;
  opacity: 0.1;
}

#customGradient stop:last-child {
  stop-color: #ff6b00;
  opacity: 0.2;
}

/* ======= SVG Mockup Overrides ======= */
.ai-wrapper .mockup rect[fill="#d1e7f7"] {
  fill: #ffeddf;
}

.ai-wrapper .mockup rect[fill="#b2e5d6"] {
  fill: #ffab66;
}

.ai-wrapper .mockup rect[fill="#e3eefa"],
.ai-wrapper .mockup-after rect:first-child {
  fill: #fff1e8;
}

.ai-wrapper .mockup-before rect:first-child {
  fill: #f5f5f5;
}

.ai-wrapper .mockup-before text {
  fill: #666;
}

.ai-wrapper .mockup-after rect:first-child {
  fill: #fff1e8;
}

.ai-wrapper .mockup text[fill="#1a355e"] {
  fill: #333333;
}

.ai-wrapper .mockup {
  filter: brightness(0.95);
}

.ai-wrapper .mockup-arrow {
  color: #ff6b00;
  font-size: 2rem;
}

/* Add peach/orange background underneath the hero */

/* Add more black section dividers */
.ai-wrapper .pricing {
  position: relative;
}

.ai-wrapper .pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--dark);
}

.ai-wrapper .final-cta {
  background: var(--dark);
  position: relative;
}

.ai-wrapper .final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 5px;
  background-color: var(--primary);
}

.ai-wrapper .final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 5px;
  background-color: var(--primary);
}

.ai-wrapper .faq {
  border-bottom: 3px solid var(--dark);
}

.ai-wrapper .price {
  color: var(--primary);
}

/* Create a split background effect for the footer */
.ai-wrapper .footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--dark);
  z-index: 0;
}

.ai-wrapper .footer-content {
  position: relative;
  z-index: 1;
}

/* ======= Carousel Buttons ======= */
.ai-wrapper .carousel-btn:hover {
  background: var(--primary);
}

/* ======= Dark Mode Header ======= */
.ai-wrapper .header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Logo fix - remove background since we have a white header */
.ai-wrapper .logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  height: 50px;
  max-width: none;
}

.ai-wrapper .nav-links a {
  color: var(--text);
}

.ai-wrapper .nav-links a:hover {
  color: var(--primary);
}

.ai-wrapper .header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(255, 107, 0, 0.15);
}

.ai-wrapper .header .logo {
  filter: none;
}

.ai-wrapper .header.scrolled .logo {
  filter: none;
}

.ai-wrapper .header.scrolled .nav-links a {
  color: var(--text);
}

/* ======= Section Dividers and Pull-out Sections ======= */
.ai-wrapper .problem-solution {
  background-color: #ffe8d9;
  padding-top: 60px;
  position: relative;
}

.ai-wrapper .problem-solution::after {
  display: none;
}

.ai-wrapper .main-solution {
  background: var(--dark);
  color: var(--white);
  border-left: 5px solid var(--primary);
}

.ai-wrapper .main-solution h2, .ai-wrapper .main-solution p {
  color: var(--white);
}

.ai-wrapper .benefit-card {
  border-top: 4px solid var(--dark);
  overflow: hidden;
}

.ai-wrapper .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary);
}

.ai-wrapper .testimonials {
  position: relative;
  z-index: 1;
}

.ai-wrapper .testimonials::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: var(--dark);
  z-index: -1;
}

/* ======= Animations ======= */
.ai-wrapper .solution-card:nth-child(3) .solution-icon i {
  color: #ff6b00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* ======= Responsive Overrides ======= */
@media (max-width: 992px) {
  .ai-wrapper .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .ai-wrapper .hero-text .highlight {
    font-size: 2.7rem;
  }
  
  .ai-wrapper .steps {
    flex-direction: column;
    gap: 50px;
  }
  
  .ai-wrapper .step {
    width: 100%;
    max-width: 320px;
  }
  
  .ai-wrapper .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .ai-wrapper .hero {
    padding: 5rem 0 7rem 0;
  }
  
  .ai-wrapper .hero::after {
    height: 70px;
  }
  
  .ai-wrapper .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .ai-wrapper .hero-text .highlight {
    font-size: 2.4rem;
  }
  
  .ai-wrapper .solution-card {
    margin-top: -50px;
    padding: 2rem 1.5rem;
  }
  
  .ai-wrapper .navbar .container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 576px) {
  .ai-wrapper .hero {
    padding: 4rem 0 6rem 0;
  }
  
  .ai-wrapper .hero::after {
    height: 50px;
  }
  
  .ai-wrapper .hero-text h1 {
    font-size: 2rem;
  }
  
  .ai-wrapper .hero-text .highlight {
    font-size: 2.2rem;
  }
  
  .ai-wrapper .solution-card {
    margin-top: -30px;
    padding: 1.8rem 1.2rem;
  }
  
  .ai-wrapper .transform-mockup {
    flex-direction: column;
    gap: 10px;
  }
  
  .ai-wrapper .mockup-arrow {
    transform: rotate(90deg);
  }
  
  .ai-wrapper .theme-switcher {
    bottom: 10px;
    right: 10px;
  }
}

/* Make "Get Started" button match the image */
.ai-wrapper .nav-cta {
  background: #ff6b00;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ai-wrapper .nav-cta:hover {
  background: #e05a00;
  transform: translateY(-2px);
}

/* Update mockups to match the image */
.ai-wrapper .mockup-before, .ai-wrapper .mockup-after {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.ai-wrapper .transform-mockup {
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.ai-wrapper .steps-wrapper {
  margin: 0 auto;
  max-width: 1050px;
  padding: 20px 0;
  position: relative;
  overflow: visible;
} 
