/* Retailers 2 */
/* Spacing Scale */
:root {
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --container-max: 1200px;
  --container-padding: 2rem;
}
.pbold{
	font-weight: 500;
}
/* Header */
.secondary-hero-wrapper {
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.header-container {
  max-width: none;
}

.header .nav-link {
  color: #006995;
}

.header:not(.scrolled) .nav-link:hover {
  color: #006995;
}

.header:not(.scrolled) .nav-link::after {
  background-color: #006995;
}

.hamburger span {
  background: #006995;
}

/* Hero Section */
.secondary-hero-combined {
  position: relative;
  width: calc(100% - 16px);
  height: 75vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 0px auto 0 auto;
  margin-left: 8px;
  margin-right: 8px;
  background-image: url('photos/retailer-large.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.secondary-hero-combined::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.secondary-hero-image-section {
  height: 75vh;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.secondary-hero-card {
  background: #ffffffb5;
  border-radius: 16px;
  border: 1px solid white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 10;
}

.secondary-hero-card-container {
  max-width: 1200px;
  margin: 0 auto;
}

.desktop-title {
  display: none;
}

.mobile-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #006995;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.secondary-hero-text-grid {
  display: grid;
}

.secondary-hero-text-main {
  font-size: 1.625rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.secondary-hero-text-secondary {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.secondary-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #006995 0%, #0093D1 100%);
  color: white;
  border: none;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 105, 149, 0.25);
  position: relative;
}

.secondary-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005580 0%, #0077a8 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: -1;
  border-radius: 8px;
}

.secondary-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 149, 0.3);
}

.secondary-contact-btn:hover .btn-arrow {
  transform: translateX(8px);
}

.secondary-contact-btn:hover::before {
  opacity: 1;
}

.secondary-contact-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s ease-out;
  font-size: 20px;
}

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

/* Chart Section */
.gr-chart-section {
  padding: 1.5rem 0;
}

.gr-chart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gr-satisfaction-container {
  /* display: flex; */ß
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.gr-chart-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
	display:  none;
}

.gr-chart-pill {
  background: #b8dcc9;
  border-radius: 8px;
  border: 1px solid #78b996;
  padding: 24px;
  width: 100%;
  max-width: 450px;
}

.gr-chart-content {
  background-color: transparent;
  position: relative;
}

.gr-chart-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  margin: -24px -24px 0 -24px;
}

.gr-chart-area {
  position: relative;
  background: white;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 20px 10px 5px 10px;
}
/* Mobile/Tablet Styles */
@media (max-width: 767px) {
  .mobile-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    line-height: 1.35;
  }

  .secondary-hero-text-main {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .secondary-hero-text-secondary {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

  .secondary-hero-card {
    margin: -150px 22px 40px 22px;
  }

  .gr-chart-section {
    padding: 1.5rem 1.5rem;
  }
  
  .gr-chart-container {
    padding: 0;
  }
  
  .gr-satisfaction-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .gr-chart-wrapper {
    width: 100%;
    min-width: unset;
  }
  
  .gr-chart-pill {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .gr-chart-title {
    padding: 0.75rem;
    margin: -1.5rem -1.5rem 0 -1.5rem;
  }
  
  .revenue-text-content.retailers {
    width: 100%;
  }
  
  .revenue-text-content.retailers h2 {
    margin-bottom: 1.5rem;
  }
  
  .revenue-content-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}

/* Mobile Only Styles */
@media (max-width: 480px) {
  .mobile-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .secondary-hero-text-main {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.875rem;
  }

  .secondary-hero-text-secondary {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .gr-chart-section {
    padding: 1.5rem 0.5rem;
  }
  
  .gr-chart-container {
    padding: 0;
  }
  
}

.revenue-text-content {
  flex: 1;
  min-width: 300px;
}

.revenue-text-content h2 {
  color: #006995;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.revenue-content-text {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Intelligence Section */
.intelligence-section {
  padding: 1.5rem 2.5rem;
}

.intelligence-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 60px;
  align-items: center;
}

.intelligence-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intelligence-content h2 {
  color: #006995;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.intelligence-text {
  line-height: 1.8;
  color: #555;
}

.intelligence-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.intelligence-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Quote Section */
.quote::before {
  display: none;
}

/* Traffic Generator */
.traffic-section {
  padding: 1.5rem 0;
}

.traffic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.traffic-content {
  text-align: center;
}

.traffic-content h2 {
  color: #006995;
  margin-bottom: 60px;
  font-weight: 500;
  line-height: 1.2;
}

.traffic-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 5vw, 60px);
  margin-bottom: 60px;
}

.traffic-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.icon-circle {
  position: relative;
  width: clamp(60px, 10vw, 128px);
  height: clamp(60px, 10vw, 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #004d6b 0%, #006995 50%, #0891b2 100%);
  border-radius: 50%;
  z-index: 1;
}
/*
.icon-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  z-index: 2;
}
*/
.icon-circle .material-icons {
   font-size: clamp(28px, 4.5vw, 56px) !important;
  width: auto;
  height: auto;
  color: #ffffff;
  position: relative;
  z-index: 3;
  line-height: 1;
}

.traffic-icon-item span {
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  color: #333;
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(360deg);
  }
}

.traffic-icon-item.animate {
  animation: rotateIn 0.8s ease-out forwards;
}

.traffic-icon-item:nth-child(1).animate {
  animation-delay: 0s;
}

.traffic-icon-item:nth-child(2).animate {
  animation-delay: 0.15s;
}

.traffic-icon-item:nth-child(3).animate {
  animation-delay: 0.3s;
}

.traffic-icon-item:nth-child(4).animate {
  animation-delay: 0.45s;
}

.traffic-text {
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile/Tablet Styles - Text Stacked (below 768px) */
@media (max-width: 767px) {
		  .secondary-hero-combined {
    background-position: 80% center !important; /* Changed from "55% right" */
  }
  .gr-chart-container {
    padding: 0 0px;
  }
  
  .gr-satisfaction-container {
    flex-direction: column;
    gap: 40px;
  }
  

  
  .intelligence-section {
    padding: 1.5rem 1.5rem;
  }
  
  .intelligence-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intelligence-visual {
    min-height: 300px;
    order: 2;
  }
  
  .intelligence-content {
    order: 1;
  }
  

  
  .traffic-container {
    padding: 0 0px;
  }
  
  .traffic-content {
    text-align: left;
  }
  
  .traffic-content h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .traffic-icons {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .traffic-text {
    text-align: left;
  }
}

/* Mobile Only Styles - Image Height Reduction */
@media (max-width: 480px) {
  .desktop-title {
    display: none;
  }
  
  .mobile-title {
    display: block;
  }
  
  .secondary-hero-combined {
    margin-top: 0px;
    height: 60vh;
  }
  
  .secondary-hero-image-section {
    height: 50vh;
    padding: 30px 20px;
  }
  
  .secondary-hero-card {
    margin: -120px 22px 40px 22px;
  }
  
  .secondary-hero-combined::after {
    display: none;
  }
  
  .secondary-contact-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  

  
  .intelligence-section {
    padding: 1.5rem 0.5rem;
  }
  
  .intelligence-visual {
    min-height: 250px;
  }
  
  .traffic-section {
    padding: 1.5rem 0.5rem;
  }
  
  .traffic-content h2 {
    margin-bottom: 40px;
  }
  
  .traffic-icons {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .icon-circle::after {
    display: none;
  }
  
  .traffic-icon-item span {
    font-size: 11px;
  }
  
  .traffic-icon-item.animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
	
}

/* Tablet/Desktop Styles 768px+ */
@media (min-width: 768px) {
  .mobile-title {
    display: none;
  }
  
  .desktop-title {
    display: block;
    position: absolute;
    top: 80px;
    left: 60px;
    font-size: 2.188rem;
    font-weight: 600;
	letter-spacing: 0.25px;
    color: white;
    margin-bottom: 0;
    z-index: 3;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
  }
  
  .secondary-hero-image-section {
    position: relative;
  }
  
  .secondary-hero-card {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.3s forwards;
    padding: 3rem;
    margin: -200px 40px 60px 40px;
  }
  
  .secondary-hero-text-main {
    font-size: 1.375rem;
  }

  .secondary-hero-text-secondary {
    font-size: 1rem;
  }

}