/* CSS Variables - Scoped to module */
.warbble-hero,
.warbble-problem,
.warbble-services,
.warbble-roi,
.warbble-process {
  --primary-navy: #01182E;
  --primary-pink: #EE4D7A;
  --secondary-blue: #003366;
  --light-pink: #d63d69;
  --accent-beige: #E4DAC0;
  --white: #FFFFFF;
  --light-gray: #f8f9fa;
  --text-gray: #666;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --section-padding: 4rem 0;
  --container-padding: 1rem;
  --card-padding: 2rem;
}

/* Reset for module elements only */
.warbble-hero *,
.warbble-problem *,
.warbble-services *,
.warbble-roi *,
.warbble-process * {
  box-sizing: border-box;
}

/* Container - HubSpot compatible */
.warbble-hero .container,
.warbble-problem .container,
.warbble-services .container,
.warbble-roi .container,
.warbble-process .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Hero Section */
.warbble-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
}

.warbble-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%23EE4D7A" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
  animation: warbble-float 25s ease-in-out infinite;
}

@keyframes warbble-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.warbble-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.warbble-hero .hero-text h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: white;
}

.warbble-process .final-cta .cta-button {
  background: var(--primary-pink);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.warbble-process .final-cta .cta-button:hover {
  background: var(--light-pink);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 767px) {
  .warbble-problem .problem-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .warbble-problem .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .warbble-services .services-grid {
    grid-template-columns: 1fr;
  }

  .warbble-process .process-steps {
    grid-template-columns: 1fr;
  }

  .warbble-roi .roi-benefits {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .warbble-hero .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .warbble-roi .roi-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .warbble-roi .roi-text {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .warbble-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* HubSpot specific overrides */
.hs-page-width-normal .warbble-hero .container,
.hs-page-width-normal .warbble-problem .container,
.hs-page-width-normal .warbble-services .container,
.hs-page-width-normal .warbble-roi .container,
.hs-page-width-normal .warbble-process .container {
  max-width: 1200px;
}

/* Ensure module works well in HubSpot editor */
.hs-editing-mode .warbble-hero,
.hs-editing-mode .warbble-problem,
.hs-editing-mode .warbble-services,
.hs-editing-mode .warbble-roi,
.hs-editing-mode .warbble-process {
  position: relative;
}

/* Print styles */
@media print {
  .warbble-hero::before,
  .warbble-hero .ai-indicator {
    display: none;
  }
}1.2;
  color: var(--white);
}

.warbble-hero .hero-text .highlight {
  color: var(--primary-pink);
}

.warbble-hero .hero-text p {
  font-size: clamp(1rem, 4vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.warbble-hero .cta-button {
  background: var(--primary-pink);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
  font-family: var(--font-body);
}

.warbble-hero .cta-button:hover {
  background: var(--light-pink);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.warbble-hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.warbble-hero .hubspot-integration {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(238, 77, 122, 0.3);
  max-width: 280px;
  width: 100%;
}

.warbble-hero .hubspot-logo {
  width: 120px;
  height: 40px;
  background: #ff7a59;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.warbble-hero .ai-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.warbble-hero .ai-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-pink);
  border-radius: 50%;
  animation: warbble-pulse 2s ease-in-out infinite;
}

.warbble-hero .ai-dot:nth-child(2) { animation-delay: 0.3s; }
.warbble-hero .ai-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes warbble-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Problem Section */
.warbble-problem {
  padding: var(--section-padding);
  background: var(--light-gray);
  font-family: var(--font-body);
}

.warbble-problem .problem-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.warbble-problem h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2rem;
}

.warbble-problem .problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
}

.warbble-problem .stat-card {
  background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(238, 77, 122, 0.3);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.warbble-problem .stat-number {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.warbble-problem .stat-label {
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.4;
}

.warbble-problem .case-studies {
  margin-top: 3rem;
}

.warbble-problem .case-studies h3 {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  color: var(--primary-navy);
  margin-bottom: 2rem;
}

.warbble-problem .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.warbble-problem .case-study-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 3px solid var(--primary-navy);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

.warbble-problem .case-study-card:hover {
  transform: translateY(-5px);
}

.warbble-problem .case-study-card h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.warbble-problem .case-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 0.5rem 0;
}

.warbble-problem .case-highlight {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.warbble-problem .case-details {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin-top: auto;
}

/* Services Section */
.warbble-services {
  padding: var(--section-padding);
  background: var(--white);
  font-family: var(--font-body);
}

.warbble-services .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.warbble-services .section-header h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.warbble-services .section-header p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: var(--text-gray);
  max-width: 900px;
  margin: 0 auto;
}

.warbble-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.warbble-services .service-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(1, 24, 46, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.warbble-services .service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-pink);
  box-shadow: 0 20px 40px rgba(238, 77, 122, 0.2);
}

.warbble-services .service-card h3 {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-navy);
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warbble-services .service-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.warbble-services .feature-benefit {
  background: rgba(238, 77, 122, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  border: 2px solid var(--primary-pink);
  margin-top: auto;
}

/* ROI Section */
.warbble-roi {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
  color: var(--white);
  padding: var(--section-padding);
  font-family: var(--font-body);
}

.warbble-roi .roi-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.warbble-roi .roi-text h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

.warbble-roi .roi-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.warbble-roi .cta-button-white {
  background: var(--white);
  color: var(--primary-navy);
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
}

.warbble-roi .cta-button-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  color: var(--primary-navy);
  text-decoration: none;
}

.warbble-roi .roi-benefits {
  background: rgba(255,255,255,0.15);
  padding: 3rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.warbble-roi .roi-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--white);
}

.warbble-roi .benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-size: 1rem;
}

.warbble-roi .benefit-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.warbble-roi .checkmark {
  color: var(--white);
  margin-right: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Process Section */
.warbble-process {
  padding: var(--section-padding);
  background: var(--light-gray);
  font-family: var(--font-body);
}

.warbble-process .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.warbble-process .section-header h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.warbble-process .section-header p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: var(--text-gray);
  max-width: 900px;
  margin: 0 auto;
}

.warbble-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.warbble-process .process-step {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.warbble-process .process-step:hover {
  transform: translateY(-5px);
}

.warbble-process .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

.warbble-process .process-step h3 {
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.warbble-process .process-step p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.warbble-process .final-cta {
  background: var(--primary-navy);
  padding: 3rem;
  border-radius: 20px;
  margin-top: 4rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 15px 30px rgba(1, 24, 46, 0.3);
}

.warbble-process .final-cta h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.warbble-process .final-cta p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: