* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}


:root {
    margin-top: 0px !important;
    /* AgentStack Brand Colors - HSL Values */
    --background: hsl(0, 0%, 97.5%); /* #f8f9fa */
    --foreground: hsl(0, 0%, 3.9%); /* #0a0a0a */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 3.9%);
    
    /* Shopify Green as Primary */
    --primary: hsl(81, 54%, 51%); /* #96bf48 */
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(81, 64%, 61%);
    
    --secondary: hsl(220, 14.3%, 95.9%);
    --secondary-foreground: hsl(0, 0%, 3.9%);
    
    --muted: hsl(220, 14.3%, 95.9%);
    --muted-foreground: hsl(220, 8.9%, 46.1%);
    
    --accent: hsl(81, 54%, 51%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 98%);
    
    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(81, 54%, 51%);
    
    /* Custom Design Tokens */
    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 98%);
    
    --warning: hsl(38, 92%, 50%);
    --warning-foreground: hsl(0, 0%, 3.9%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
    --gradient-hero: linear-gradient(135deg, var(--background), hsl(220, 14.3%, 98%));
    --gradient-cta: linear-gradient(135deg, var(--primary), hsl(81, 64%, 45%));
    
    /* Shadows */
    --shadow-soft: 0 2px 10px -2px hsl(220, 13%, 91%, 0.3);
    --shadow-medium: 0 8px 25px -5px hsl(220, 13%, 91%, 0.4);
    --shadow-large: 0 20px 50px -12px hsl(220, 13%, 91%, 0.5);
    --shadow-glow: 0 0 30px hsl(81, 54%, 51%, 0.2);
    
    /* Typography */
    --font-size-hero: clamp(2.5rem, 5vw, 4rem);
    --font-size-heading: clamp(1.75rem, 3vw, 2.5rem);
    --font-size-subheading: clamp(1.125rem, 2vw, 1.375rem);
    
    --radius: 0.5rem;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1rem !important;
}

.btn-hero {
    background: #8b008b !important;
    color: var(--primary-foreground) !important;
    box-shadow: var(--shadow-glow) !important;
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsl(81, 54%, 51%, 0.4);
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-medium);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-large);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-outline {
    background: transparent;
    color: #8b008b;
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.subtitle{
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 20px auto;
}


@media (min-width: 768px) {
    body {
    padding-bottom: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #8b008b;
}

.btn-primary:hover {
    background: #fcd34d;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8b008b;
}

.btn-purple {
    background: #8b008b !important;
    color: white !important;
}

.btn-purple:hover {
    background: #a020a0;
    transform: scale(1.05);
}

.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1.25rem !important;;
    border-radius: 1rem !important;;
}

.btn-xl {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    border-radius: 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-2, .grid-4 {
    grid-template-columns: 1fr;
    }
    
    .grid-mobile-2 {
    grid-template-columns: repeat(2, 1fr);
    }
}

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

.text-white {
    color: white;
}

.text-purple {
    color: #8b008b;
}

.text-yellow {
    color: #fbbf24;
}

.bg-purple {
    background: linear-gradient(135deg, #8b008b 0%, #a020a0 50%, #8b008b 100%);
}

.bg-purple-light {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}

.bg-white {
    background: white;
}

.bg-gray {
    background: linear-gradient(135deg, #f9fafb 0%, white 100%);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.heading-secondary{
    font-size: 36px;
    line-height: 40px;
}

/* Header */
.custom-site-header {
  background-color: #8b008b;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav {
  /*flex-grow: 1;*/
  margin-left: 50px;
  /*flex-grow:unset !important;*/
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
    justify-content: center;

}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}



.header-btn {
  background-color: #fff;
  color: #8b008b;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}



.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    width: 100%;
  }

  .nav.active {
    display: block;
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    background: #f2f2f2;
    padding: 15px;
    border-radius: 8px;
  }

  .header-btn {
    margin-top: 10px;
    display: block;
  }

  .hamburger {
    display: flex;
  }
}




/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
    font-size: var(--font-size-hero);
    font-weight: 700;
    line-height: 1.1;
    color: var(--foreground);
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8b008b;
    margin-bottom:10px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.trust-item svg {
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.mockup-container {
    position: relative;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    padding: 2rem;
    border: 1px solid var(--border);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.browser-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.browser-url {
    flex: 1;
    background: var(--muted);
    border-radius: 9999px;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.product-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-image {
    background: var(--muted);
    border-radius: 0.5rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-line {
    height: 16px;
    background: var(--muted);
    border-radius: 0.25rem;
}

.detail-line.long { width: 100%; }
.detail-line.price { 
    width: 5rem; 
    background: hsl(81, 54%, 51%, 0.2);
}
.detail-line.medium { width: 75%; }
.detail-line.short { width: 50%; }

.chat-bubble {
    position: absolute;
    right: 2rem;
    bottom: -1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-glow);
    max-width: 18rem;
    z-index: 10;
}

.chat-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.agent-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.agent-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.chat-message {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-time {
    font-size: 0.75rem;
    opacity: 0.75;
}

.chat-tail {
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    transform: rotate(45deg);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: var(--shadow-medium);
}

.floating-element.top-left {
    top: -1.5rem;
    left: -1.5rem;
    background: var(--success);
    color: var(--success-foreground);
}

.floating-element.bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--warning);
    color: var(--warning-foreground);
}

.bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-circle.top-left {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsl(81, 54%, 51%, 0.05);
}

.bg-circle.bottom-right {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(81, 54%, 51%, 0.03);
}





/* Why choose agent stack */


#WhyAgentStack{
    padding: 80px 0px;
}
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    border-radius: 1rem;
    border-left: 4px solid #8b008b;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #8b008b;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #374151;
    line-height: 1.6;
}
.conversion-impact{
    font-size: 1.5rem; 
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 2rem;
    color: #fff !important;
}
.revenue{
    font-size: 2rem; 
    font-weight: 700; 
    color: hsl(81, 54%, 51%);
}
.free-tiral{
    margin-top: 4rem;
}

/* Live Customer Support section */


 .live-customer-support {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
      color: #1a1a1a;
      padding: 80px 20px;
      text-align: center;
    }


    .live-customer-support .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      /* gap: 30px; */
    }

    .live-customer-support .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 0 0 1px #e2e8f0;
      padding: 40px 30px;
      width: 320px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .live-customer-support .card:hover {
      transform: translateY(-5px);
    }

    .live-customer-support .card-icon {
      width: 32px;
      height: 32px;
      margin: 0 auto 15px;
    }

    .live-customer-support .card h3 {
      margin: 0;
      font-size: 24px;
      font-weight: 700;
    }

    .live-customer-support .card span {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #8b008b;
      margin-top: 5px;
    }

    .live-customer-support .card p {
      font-size: 13px;
      color: #333;
      margin-top: 8px;
      font-weight: 600;
    }



    /* No More Losing Customers */

    #noMoreLosingCustomers{
        padding: 4rem 0px;
    }
    
    .shopify-support-section {
      display: flex;
      /* flex-wrap: wrap; */
      align-items: center;
      justify-content: space-between;
      /* padding: 80px 5%; */
      gap: 20px;
    }
    .shopify-support-section h2 span {
      color: hsl(300, 100%, 27.3%) !important;
      display: block;
      margin-top: 10px;
    }

    .shopify-support-section p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin: 20px 0;
    }

    .shopify-support-section .price {
      font-size: 20px;
      font-weight: 700;
      margin-top: 30px;
      color: #1a1a1a;
    }

    .shopify-support-section .cta-button {
      margin-top: 20px;
      padding: 14px 24px;
      background-color: #a000c8 !important;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .shopify-support-section .cta-button:hover {
      background-color: #8900a8;
    }



    .shopify-support-section .images img {
      max-width: 650px !important;
      border-radius: 12px;
      object-fit: cover;
      display: block;
      /*padding-left: 100px;*/
    }

    /* Decorative dots */
    .shopify-support-section .dots-top-left,
    .shopify-support-section .dots-bottom-right {
      position: absolute;
      width: 40px;
      height: 80px;
      background-image: radial-gradient(#c400a1 1px, transparent 1px);
      background-size: 6px 6px;
      z-index: -1;
    }

    .shopify-support-section .dots-top-left {
      top: -20px;
      left: -20px;
    }

    .shopify-support-section .dots-bottom-right {
      bottom: -20px;
      right: -20px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .shopify-support-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
      }

      .shopify-support-section .images {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }

      .shopify-support-section .dots-top-left,
      .shopify-support-section .dots-bottom-right {
        display: none;
      }
    }


    @media (max-width: 480px) {
      .live-customer-support h2 {
        font-size: 18px;
      }

      .live-customer-support p.subtitle {
        font-size: 16px;
      }

      .live-customer-support .card h3 {
        font-size: 22px;
      }

      .live-customer-support .card span {
        font-size: 16px;
      }

      .live-customer-support .card p {
        font-size: 14px;
      }
    }





/* Why choose agent stack */
.d-none{
    display: none !important;
}
.why-choose-agentstack{
    padding: 70px 0px;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Benefits Section */
.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.fixed-section{
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    position: sticky;
  top: 10px; /* how far from top to stick */
  flex: 0 0 40%;
  align-self: flex-start;
}  
.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(222.2, 84%, 4.9%);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .section-header h1 {
        font-size: 3.5rem;
    }
}

.section-header p {
    font-size: 18px;
    color: hsl(215.4, 16.3%, 46.9%);
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: hsla(300, 100%, 27.3%, 0.05);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.benefit-card:hover {
    background: hsla(300, 100%, 27.3%, 0.1);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.benefit-content {
    display: flex;
    gap: 1rem;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: hsla(300, 100%, 27.3%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.icon-wrapper .check-icon {
    color: hsl(300, 100%, 27.3%);
    width: 16px;
    height: 16px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: hsl(222.2, 84%, 4.9%);
}

.benefit-text p {
    color: hsl(215.4, 16.3%, 46.9%);
    line-height: 1.5;
    font-size: 16px;
}

.cta-button {
    background: hsl(300, 100%, 27.3%);
    color: hsl(210, 40%, 98%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background: hsla(300, 100%, 27.3%, 0.9);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.cta-button:hover .arrow-icon {
    transform: translateX(0.25rem);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button-secondary{
    border: 1px solid #8b008b;
    padding: 20px;
    width: max-content;
    background-color: #fff;
    color: #8b008b;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
}
.cta-button-secondary:hover{
    background-color: #8900a8;
    color: #fff;
    cursor: pointer;

}


  


/* Apps Section */
.apps-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 30px 40px 50px; 
}

.apps-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .apps-header {
        text-align: left;
    }
}

.apps-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(222.2, 84%, 4.9%);
    text-align: center;
}

.apps-description {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apps-description p {
    color: hsl(215.4, 16.3%, 46.9%);
    text-align: center;
}

.brand-name {
    font-weight: 600;
    color: #8b008b;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(300, 100%, 27.3%, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    align-self: center;
}

.value-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(300, 100%, 27.3%);
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-card {
    border: 1px solid hsl(214.3, 31.8%, 91.4%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #f9f9fa;
}

.app-card:hover {
    /* border-color: hsla(300, 100%, 27.3%, 0.3); */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    background-color: #f3f4f6;
}

.app-card:hover h3 {
    color: hsl(300, 100%, 27.3%);
}

.app-content {
    display: flex;
    gap: 1rem;
}

.app-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.app-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.50rem;
}

.app-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.app-title-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: hsl(222.2, 84%, 4.9%);
    transition: color 0.3s ease;
}

.app-title-section p {
    font-size: 14px;
    color: hsl(215.4, 16.3%, 46.9%);
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: hsl(81, 54%, 51%, 40%);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    width: 160px;
    max-width: max-content;
}

.star-icon {
    color: hsl(81, 54%, 51%);
}

.rating-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(222.2, 84%, 4.9%);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
        font-size: 12px;
    border: 1px solid hsla(300, 100%, 27.3%, 0.1);
    color: hsl(300, 100%, 27.3%);
    padding: 0.25rem 0.50rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.value-tag span {
    background: hsl(300, 100%, 27.3%);
    color: hsl(210, 40%, 98%);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.value-tag span:hover {
    background: hsla(300, 100%, 27.3%, 0.9);
}

/* Comparison section */

.comparison-table {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e9d5ff;
}

.table-header {
    background: linear-gradient(90deg, #8b008b 0%, #a020a0 100%);
    color: white;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
}

.table-cell {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.table-body .table-row:nth-child(odd) {
    background: #f3e8ff;
}

.check-icon {
    color: #8b008b;
    font-size: 2rem;
}

.times-icon {
    color: #ef4444;
    font-size: 2rem;
}

/* YOur Roi Section */

    .sub-section {
      max-width: 45%;
    }
    .your-roi-sec {

        padding: 80px 0px;
    }
    .your-roi-sec .title {
      text-align: center;
    }
    .your-roi-inner{
        display: flex;
        justify-content: space-between;
        padding-top: 40px;
    }
    .info-box {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .info-box h3 {
      margin: 0 0 10px;
      font-size: 18px;
    font-weight: 600;
    color: hsl(222.2, 84%, 4.9%);
    }
    .info-box p {
      margin: 0 0 10px;
      /* color: #666; */
      color: hsl(215.4, 16.3%, 46.9%);
    line-height: 1.5;
    font-size: 16px;

    }
    .info-tag {
      display: inline-block;
      background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
      color: #000;
      padding: 5px 10px;
      font-size: 12px;
      border-radius: 20px;
      margin-top: 10px;
    }
    .roi-box {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      width: 45%;
    }
    .roi-header {
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      font-size: 22px;
    }
    .roi-value {
      background: #8b008b;
      color: #fff;
      padding: 40px 0;
      text-align: center;
      font-size: 24px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .roi-grid {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .roi-grid div {
      width: 48%;
      background: #8b008b;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      font-size: 14px;
      color: #fff;
      font-weight: 600;
    }
    .roi-data {
      font-size: 14px;
      padding: 5px 0;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
    background: #f3e8ff;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0px;
    }
    .net-gain {
      font-weight: bold;
      color: #0a730a;
      margin-top: 10px;
    }
    .footnote {
      text-align: center;
      font-size: 12px;
      color: #aaa;
      margin-top: 20px;
    }


  


.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  width: 30%;
  min-width: 180px;
}

.feature .icon img{
      width: 50px;
    background-color: #f1faec;
    padding: 10px;
    border-radius: 50%;
}

.feature h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature p {
  font-size: 0.9rem;
  color: #6a6a6a;
}

.highlight-box {
  /*background: #6ade4e;*/
  background: #069e35;
  border-radius: 12px;
  padding: 45px 15px;
  /* margin-bottom: 25px; */
  color: white;

}

.highlight-box h2 {
  margin-bottom: 30px;
  font-size: 26px;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}
.highlight-box li{
    align-items: center;
    font-size: 18px;
    display: flex;
}
.highlight-box li img{
    width: 20px;
}

.footer-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 20px;
  text-align: center;
}
.shield{
    text-align: center;
    margin-bottom: 25px;
}
.shield img{
    width: 80px;
    background-color: #e5f7ed;
    padding: 15px;
    border-radius: 50px;
}
.risk-free-buttons{
    display: flex;
    flex-direction: column;
    width: max-content;
    margin: auto;
    margin-top: 40px;
}
.agentstack-trial .box{
    margin: auto;
    width: 800px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
}
.agentstack-trial .box .subtitle{
    font-size: 18px;
    width: 75% ;

}

@media (max-width: 768px) {
    .agentstack-trial .box{
    width: 100%;        
    }
}

    /* Mobile Responsive of Sections */
   @media (max-width: 768px){
    .hamburger{
        display: none;
    }
    .mb-16{
        margin-bottom: 3rem;
    }
    .hero-section{
        padding: 3rem 0px;
    }
    .hero-title{
        font-size: 30px;
        text-align: center;
    }
    .heading-secondary{
        font-size: 28px !important;
        text-align: center;
    }
    .hero-subtitle{
        font-size: 18px;
        text-align: center;
        margin: 10px 0px;
    }
    .hero-description{
        font-size: 16px;
        padding: 0px 5px;
        text-align: center;
    }
    .hero-buttons .btn{
        max-width: max-content;
        margin: auto;
    }
    .subtitle{
        font-size: 16px;
    }
    .feature-card .feature-icon{
        width: 3rem;
        height: 3rem;
    }
    .feature-title{
        font-size: 17px;
    }
    .feature-text{
        font-size: 15px;
    }
    .feature-card{
        gap: 1rem;
        padding: 18px;
    }
    .conversion-impact{
    font-size: 20px;
    margin-bottom: 1.5rem;
    }
    .revenue{
        font-size: 1.5rem;
    }
    #WhyAgentStack, #features, #faqs{
        padding: 40px 0px;

    }
    .free-tiral{
        margin-top: 2rem;
    }
   
    .live-customer-support .cards {
    flex-direction: column;
    gap: 20px;
    }

    .live-customer-support {
    padding: 60px 15px;
    }

    .live-customer-support h2 {
    font-size: 20px;
    }

    .live-customer-support .card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    }
    #noMoreLosingCustomers{
    padding: 3rem 0px;
    }
    .shopify-support-section h2 span{
    margin-top: 0px;
    }
    .shopify-support-section{
    padding: 0px;
    }
    .shopify-support-section .cta-button{
     margin-top: 0px;   
    }
    .shopify-support-section p{
        font-size: 15px;
    }
    .shopify-support-section .images{
        display: none;
    }
    .fixed-section{
        padding: 20px;
        position: unset;
    }
    .why-choose-agentstack{
        padding: 3rem 0px;
    }
    .section-header p{
        font-size: 16px;
        text-align: center;
    }
    .benefit-card{
        padding: 15px;
    }
    .benefit-text{
        gap: 0;
    }
    .benefit-text h3{
        font-size: 16px;
    }
    .benefits-section .cta-button{
        margin: auto;
    }
    .apps-section{
        padding: 30px 20px;
    }
    .app-content{
        flex-direction: column;
        text-align: center;
    }
    .app-header-row{
        flex-direction: column;
        align-items: center;
    }
    .app-title-section p{
        font-size: 15px;
        font-weight: 500;
        margin: 10px 0px;
    }
    .rating-badge{
        margin-bottom: 10px;
    }
    .rating-badge span{
        font-size: 12px;
    }
    .table-cell{
        padding: 20px;
        font-size: 16px;
    }
    .table-body .table-row .table-cell{
        font-size: 14px;
        padding: 15px;
        text-align: left;
    }
    .check-icon, .times-icon{
        font-size: 1.5rem;
    }
    .your-roi-sec{
        padding: 40px 20px;

    }
    .your-roi-sec .subtitle{
        width: 90%;
        margin: auto;

    }
    .your-roi-inner{
        flex-direction: column;
    }
    .your-roi-inner .sub-section, .roi-box{
        width: 100%;
        max-width: 100%;
    }
    .info-box{
        text-align: center;
    }
    .roi-value{
        line-height: 25px;
        padding: 40px 10px;
        font-size: 20px;
    }
    .feature{
        width: 100%;
        margin: 10px;
    }
    .agentstack-trial .box .subtitle{
        width: 100%;
    }
    .highlight-box ul{
        display: flex;
        flex-direction: column;
    }
    .highlight-box ul li{
        font-size: 16px;
    }
    .faq-question{
        font-size: 16px;
        line-height: 20px;
    }
    .faq-answer{
        line-height: 1.3;
        font-size: 15px;
    }
    }



/* Faq item section */

.faq-item {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e9d5ff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0a0a0a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-answer {
    padding: 10px 18px 16px;
    background: rgba(255, 255, 255, 0.5);
    color: #374151;
    line-height: 1.7;
    font-size: 1.125rem;
    display: none;

}

.faq-answer.active {
    display: block;
}

.chevron {
    color: #8b008b;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.chevron.rotated {
    transform: rotate(180deg);
}

.site-footer {
  background-color: #8b008b;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.95rem;
}
