@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary Colors */
  --primary-blue: #0047CC;
  --dark-blue: #11243E;
  --bright-orange: #FF6B00;
  
  /* Secondary Colors */
  --light-orange: #FF9966;
  --accent-red: #FF4D4D;
  
  /* Background Colors */
  --bg-gradient-start: #E8F0FF;
  --bg-gradient-end: #FFF0F0;
  
  /* Gradient Definitions */
  --gradient-card-1: linear-gradient(135deg, var(--bright-orange), #FF8533);
  --gradient-card-2: linear-gradient(135deg, var(--light-orange), #FFAD85);
  --gradient-card-3: linear-gradient(135deg, var(--accent-red), #FF7066);
  
  /* Additional Colors */
  --text-primary: #11243E;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --border-light: #E2E8F0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-light);
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bright-orange);
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  padding: 0.875rem 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #0039A6;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 71, 204, 0.25);
}

.btn-secondary {
  background: var(--bright-orange);
  color: var(--white);
}

.btn-secondary:hover {
  background: #E55E00;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--dark-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-guarantee {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-blue);
}

.hero-guarantee h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.hero-guarantee p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.or {
  color: var(--text-light);
  font-weight: 500;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 45vw;
  height: 45vw;
  background: linear-gradient(180deg, rgba(0, 71, 204, 0.05) 0%, rgba(0, 71, 204, 0.02) 100%);
  bottom: -20vw;
  left: -10vw;
}

.shape-2 {
  width: 30vw;
  height: 30vw;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.02) 100%);
  top: -10vw;
  right: -5vw;
}

.shape-3 {
  width: 25vw;
  height: 25vw;
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.05) 0%, rgba(255, 77, 77, 0.02) 100%);
  top: 30%;
  left: 60%;
}

/* Benefits Section */
.benefits-header-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.benefits {
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 4px;
}

.benefits-grid {
  display: grid;
  gap: 2.5rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  border-top: 5px solid var(--primary-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:nth-child(2) {
  border-top-color: var(--bright-orange);
}

.benefit-card:nth-child(3) {
  border-top-color: var(--light-orange);
}

.benefit-card:nth-child(4) {
  border-top-color: var(--accent-red);
}

.benefit-card:nth-child(5) {
  border-top-color: var(--primary-blue);
}

.benefit-number {
  position: absolute;
  top: -20px;
  left: 2.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefit-card:nth-child(2) .benefit-number {
  background: var(--bright-orange);
}

.benefit-card:nth-child(3) .benefit-number {
  background: var(--light-orange);
}

.benefit-card:nth-child(4) .benefit-number {
  background: var(--accent-red);
}

.benefit-card:nth-child(5) .benefit-number {
  background: var(--primary-blue);
}

.benefit-card h3 {
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.benefit-parts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card-title {
  font-size: 1.75rem;
  color: var(--dark-blue);
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
}

.benefit-part {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-part:nth-child(1), .benefit-part:nth-child(3) {
  border-top: 4px solid var(--primary-blue);
}

.benefit-part:nth-child(2), .benefit-part:nth-child(4) {
  border-top: 4px solid var(--bright-orange);
}

.benefit-part:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-part h4 {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.benefit-part h4:before {
  content: attr(data-number);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 1.125rem;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: 700;
}

.benefit-part:nth-child(1) h4:before {
  background: var(--primary-blue);
}

.benefit-part:nth-child(2) h4:before {
  background: var(--bright-orange);
}

.benefit-part:nth-child(3) h4:before {
  background: var(--light-orange);
}

.benefit-part:nth-child(4) h4:before {
  background: var(--accent-red);
}

.benefit-part p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Visual separator line between columns */
.benefit-parts {
  position: relative;
}

.benefit-parts:after {
  content: '';
  position: absolute;
  top: 10%; 
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: var(--border-light);
  transform: translateX(-50%);
}

/* Top colored borders for each row */
.benefit-part:nth-child(1), .benefit-part:nth-child(2) {
  position: relative;
}

.benefit-part:nth-child(1):before, .benefit-part:nth-child(2):before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  border-radius: 0.25rem;
}

.benefit-part:nth-child(1):before {
  background: var(--primary-blue);
}

.benefit-part:nth-child(2):before {
  background: var(--bright-orange);
}

.benefit-part:nth-child(3):before {
  background: var(--light-orange);
}

.benefit-part:nth-child(4):before {
  background: var(--accent-red);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-parts {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefit-parts:after {
    display: none;
  }
  
  .benefit-part {
    padding: 1.5rem;
  }
  
  .benefits-header-image {
    max-width: 500px;
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 576px) {
  .benefits-header-image {
    max-width: 400px;
    margin: 0 auto 1rem;
  }
  
  .case-studies-preview {
    grid-template-columns: 1fr;
  }
}

.case-studies-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.case-study-link a {
  display: block;
  padding: 1rem;
  background: rgba(0, 71, 204, 0.05);
  border-radius: 0.5rem;
  color: var(--primary-blue);
  font-weight: 500;
  transition: all 0.2s ease;
}

.case-study-link a:hover {
  background: rgba(0, 71, 204, 0.1);
  transform: translateX(5px);
}

.case-study-link:nth-child(2) a {
  background: rgba(255, 107, 0, 0.05);
  color: var(--bright-orange);
}

.case-study-link:nth-child(2) a:hover {
  background: rgba(255, 107, 0, 0.1);
}

.case-study-link:nth-child(3) a {
  background: rgba(255, 153, 102, 0.05);
  color: var(--light-orange);
}

.case-study-link:nth-child(3) a:hover {
  background: rgba(255, 153, 102, 0.1);
}

.case-study-link:nth-child(4) a {
  background: rgba(255, 77, 77, 0.05);
  color: var(--accent-red);
}

.case-study-link:nth-child(4) a:hover {
  background: rgba(255, 77, 77, 0.1);
}

.case-studies-more {
  grid-column: 1 / -1;
  margin-top: 1rem;
  font-style: italic;
}

/* Pricing Table Styling */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.pricing-row.pricing-header {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-row.pricing-footer {
  background: var(--bg-light);
  border-radius: 0 0 0.5rem 0.5rem;
  border-bottom: none;
}

.pricing-cell {
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-cell:first-child {
  text-align: left;
  justify-content: center;
  font-weight: 600;
}

.pricing-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.checkmark {
  color: var(--primary-blue);
  font-weight: 700;
}

.pricing-note, .pricing-enterprise {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0.5rem 0;
}

.pricing-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Case Studies Section */
.case-studies {
  background: var(--bg-white);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.case-study-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.case-study-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-study-card:nth-child(2) .case-study-header {
  background: var(--bright-orange);
}

.case-study-card:nth-child(3) .case-study-header {
  background: var(--light-orange);
}

.case-study-card:nth-child(4) .case-study-header {
  background: var(--accent-red);
}

.case-study-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.case-study-revenue {
  display: flex;
  flex-direction: column;
}

.revenue-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.revenue-amount {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.case-study-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.case-study-highlights {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.case-study-highlights li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.case-study-highlights li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.case-study-card:nth-child(2) .case-study-highlights li:before {
  background: var(--bright-orange);
}

.case-study-card:nth-child(3) .case-study-highlights li:before {
  background: var(--light-orange);
}

.case-study-card:nth-child(4) .case-study-highlights li:before {
  background: var(--accent-red);
}

.case-study-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-blue);
  transition: all 0.2s ease;
}

.case-study-card:nth-child(2) .case-study-link {
  color: var(--bright-orange);
}

.case-study-card:nth-child(3) .case-study-link {
  color: var(--light-orange);
}

.case-study-card:nth-child(4) .case-study-link {
  color: var(--accent-red);
}

.case-study-link .arrow {
  transition: transform 0.2s ease;
}

.case-study-link:hover .arrow {
  transform: translateX(5px);
}

.case-studies-more {
  text-align: center;
  margin-top: 3rem;
}

.case-studies-more p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

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

.pricing-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  box-shadow: 0 15px 40px rgba(0, 71, 204, 0.15);
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 71, 204, 0.2);
}

.pricing-header {
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light);
}

.pricing-header h3 {
  font-size: 1.75rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.pricing-assets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.pricing-card:nth-child(2) .price-amount {
  color: var(--bright-orange);
}

.pricing-card:nth-child(3) .price-amount {
  color: var(--accent-red);
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pricing-features {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-group h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-group h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-blue);
}

.pricing-card:nth-child(2) .feature-group h4:after {
  background: var(--bright-orange);
}

.pricing-card:nth-child(3) .feature-group h4:after {
  background: var(--accent-red);
}

.feature-group ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-group li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.feature-group li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.pricing-card:nth-child(2) .feature-group li:before {
  background: var(--bright-orange);
}

.pricing-card:nth-child(3) .feature-group li:before {
  background: var(--accent-red);
}

.pricing-cta {
  padding: 0 2rem 2rem;
}

.pricing-cta .btn {
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pricing-note p {
  margin-bottom: 0.5rem;
}

.pricing-guarantee {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  border-left: 5px solid var(--bright-orange);
}

.guarantee-content h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.guarantee-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.guarantee-content p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  background: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-item {
  background: var(--white);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  border-bottom-color: var(--border-light);
}

.faq-question h3 {
  font-size: 1.125rem;
  color: var(--dark-blue);
  margin: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--primary-blue);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem;
}

.faq-cta {
  text-align: center;
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 1.75rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.faq-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .pricing-header,
  .pricing-features,
  .pricing-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .pricing-guarantee {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-guarantee {
    padding: 1.5rem;
  }
  
  .hero-guarantee h3 {
    font-size: 1.25rem;
  }
  
  .hero-guarantee p {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .or {
    margin: 0.5rem 0;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-header,
  .case-study-content {
    padding: 1.5rem;
  }
  
  .revenue-amount {
    font-size: 1.75rem;
  }
  
  /* Completely revamped pricing table for mobile */
  .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .pricing-row {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--white);
  }
  
  .pricing-row.pricing-header {
    display: flex;
    background: var(--primary-blue);
    padding: 1rem;
    border-bottom: none;
    margin-bottom: 0;
    border-radius: 0.75rem 0.75rem 0 0;
    border: none;
  }
  
  .pricing-row.pricing-header .pricing-cell {
    flex: 1;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
  }
  
  .pricing-row.pricing-header .pricing-cell:first-child {
    display: none;
  }
  
  .pricing-row:not(.pricing-header):not(.pricing-footer) {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .pricing-row:not(.pricing-header):not(.pricing-footer) .pricing-cell:first-child {
    flex: 100%;
    background: var(--bg-light);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.5rem;
  }
  
  .pricing-row:not(.pricing-header):not(.pricing-footer) .pricing-cell:not(:first-child) {
    flex: 1;
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pricing-row.pricing-footer {
    display: flex;
    background: var(--bg-light);
    border-radius: 0 0 0.75rem 0.75rem;
    margin-bottom: 0;
  }
  
  .pricing-row.pricing-footer .pricing-cell:first-child {
    display: none;
  }
  
  .pricing-row.pricing-footer .pricing-cell {
    flex: 1;
    padding: 1rem 0.5rem;
    text-align: center;
  }
  
  .pricing-cell .pricing-price {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-blue);
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .pricing-cell:nth-child(3) .pricing-price {
    background: var(--bright-orange);
  }
  
  .pricing-cell:nth-child(4) .pricing-price {
    background: var(--accent-red);
  }
  
  .pricing-cell .pricing-note {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.5rem;
    line-height: 1.3;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 90%;
    text-align: center;
    text-shadow: none;
    font-weight: 700;
    background-color: transparent;
    padding: 3px 6px;
    border-radius: 4px;
  }
  
  .checkmark {
    font-size: 1.25rem;
    color: var(--primary-blue);
  }
  
  /* Style the prices in the featured middle tier */
  .pricing-note, .pricing-enterprise {
    text-align: center;
    margin: 1rem auto;
    max-width: 90%;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-cta {
    padding: 2rem 1.5rem;
  }
  
  .faq-cta h3 {
    font-size: 1.5rem;
  }
  
  .faq-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .benefit-number {
    left: 1.5rem;
  }
  
  .pricing-header {
    padding: 2rem 1rem;
  }
  
  .pricing-features {
    padding: 1.5rem 1rem;
  }
  
  .pricing-cta {
    padding: 0 1rem 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .pricing-guarantee {
    padding: 1.5rem;
  }
  
  .pricing-row:not(.pricing-header):not(.pricing-footer) .pricing-cell:not(:first-child) {
    padding: 0.5rem 0.25rem;
  }
  
  .pricing-cell .pricing-price {
    font-size: 1.25rem;
    padding: 0.5rem 0.25rem;
  }
  
  .pricing-cell .pricing-note {
    font-size: 0.65rem;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    text-shadow: none;
    font-weight: 700;
    background-color: transparent;
    padding: 2px 5px;
    border-radius: 3px;
  }
}

.pricing-row.pricing-header .pricing-cell {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}

.benefit-part p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-parts {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefit-parts:after, .benefit-parts:before {
    display: none;
  }
  
  .benefit-part {
    padding: 1.5rem;
  }
  
  /* Vertical flow for mobile */
  .benefit-part:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 18px;
    width: 2px;
    height: 22px;
    background: var(--border-light);
    z-index: -1;
  }
  
  .benefit-part:last-child:after {
    display: none;
  }
}

.benefit-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.benefit-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .benefit-part:nth-child(odd) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .benefit-parts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-part {
    padding: 1.5rem;
  }
  
  .benefit-part h4 {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    left: 1rem;
  }
}

/* Consulting Flow Styles - 2x2 grid boxes */
.consulting-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.flow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Item header with number and title */
.flow-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

/* Number badge now in the left position, but smaller */
.number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.flow-item:nth-child(1) .number-badge {
  background: var(--primary-blue);
}

.flow-item:nth-child(2) .number-badge {
  background: var(--bright-orange);
}

.flow-item:nth-child(3) .number-badge {
  background: var(--light-orange);
}

.flow-item:nth-child(4) .number-badge {
  background: var(--accent-red);
}

.flow-item .item-title {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
}

/* Icon positioned in the top right corner, but larger */
.icon-wrapper {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  z-index: 2;
}

.flow-item:nth-child(1) .icon-wrapper {
  background: rgba(0, 71, 204, 0.1);
}

.flow-item:nth-child(2) .icon-wrapper {
  background: rgba(255, 107, 0, 0.1);
}

.flow-item:nth-child(3) .icon-wrapper {
  background: rgba(255, 153, 102, 0.1);
}

.flow-item:nth-child(4) .icon-wrapper {
  background: rgba(255, 77, 77, 0.1);
}

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

.icon {
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.document-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230047CC' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 1.5L18.5 9H13V3.5zM6 20V4h5v7h7v9H6zm2-6v-2h8v2H8zm0 4v-2h8v2H8z'/%3E%3C/svg%3E");
}

.video-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B00' viewBox='0 0 24 24'%3E%3Cpath d='M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z'/%3E%3C/svg%3E");
}

.support-chat-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF9966' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z'/%3E%3C/svg%3E");
}

.chat-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF4D4D' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z'/%3E%3C/svg%3E");
}

.users-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF4D4D' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

/* Mobile Styles */
@media (max-width: 768px) {
  .consulting-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .flow-item {
    padding: 1.25rem;
  }
  
  .flow-item-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .number-badge {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .icon-wrapper {
    width: 40px;
    height: 40px;
    top: 1.25rem;
    right: 1.25rem;
  }
  
  .icon {
    width: 22px;
    height: 22px;
  }
  
  .flow-item .item-title {
    font-size: 1.125rem;
    padding-right: 2rem;
  }
}

/* Benefit Grid Items - 3x4 grid layout */
.benefits-grid-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.benefit-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  overflow: hidden;
  border-top: 3px solid var(--primary-blue);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item:nth-child(4n-3) {
  border-top-color: var(--primary-blue);
}

.benefit-item:nth-child(4n-2) {
  border-top-color: var(--bright-orange);
}

.benefit-item:nth-child(4n-1) {
  border-top-color: var(--light-orange);
}

.benefit-item:nth-child(4n) {
  border-top-color: var(--accent-red);
}

.benefit-item h4 {
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 1rem;
  margin: 2.75rem 0 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

.benefit-item .icon-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  z-index: 2;
}

.benefit-item:nth-child(4n-3) .icon-wrapper {
  background: rgba(0, 71, 204, 0.1);
}

.benefit-item:nth-child(4n-2) .icon-wrapper {
  background: rgba(255, 107, 0, 0.1);
}

.benefit-item:nth-child(4n-1) .icon-wrapper {
  background: rgba(255, 153, 102, 0.1);
}

.benefit-item:nth-child(4n) .icon-wrapper {
  background: rgba(255, 77, 77, 0.1);
}

/* Benefit Icons */
.growth-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230047CC' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
}

.content-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B00' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
}

.viral-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF9966' viewBox='0 0 24 24'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
}

.monetization-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF4D4D' viewBox='0 0 24 24'%3E%3Cpath d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E");
}

.traffic-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230047CC' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/%3E%3C/svg%3E");
}

.video-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B00' viewBox='0 0 24 24'%3E%3Cpath d='M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z'/%3E%3C/svg%3E");
}

.ads-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF9966' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.website-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF4D4D' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z'/%3E%3C/svg%3E");
}

.testing-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230047CC' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z'/%3E%3C/svg%3E");
}

.training-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6B00' viewBox='0 0 24 24'%3E%3Cpath d='M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z'/%3E%3C/svg%3E");
}

.team-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF9966' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.tools-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF4D4D' viewBox='0 0 24 24'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
}

/* Responsive styles for benefit grid */
@media (max-width: 1200px) {
  .benefits-grid-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .benefits-grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid-items {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    padding: 1.25rem;
  }
  
  .benefit-item h4 {
    font-size: 0.95rem;
    margin-top: 2.5rem;
  }
}