/* Home Page Specific Styles */

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg));
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Achievement Stats - Enhanced */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--border);
}

.achievement-stat {
    text-align: center;
    padding: 1rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid.enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.feature i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.service-metrics {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

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

/* Dark theme adjustments */
.dark-theme .service-card {
  background: var(--card-bg);
  border-color: var(--border);
}

.dark-theme .feature i {
  color: var(--primary);
}

.dark-theme .metric-value {
  color: var(--primary);
}

/* Offerings Grid Styles */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.offering-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary);
}

.offering-card:hover::before {
  opacity: 1;
}

.offering-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.offering-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-card li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.offering-card li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Impact Metrics Section */
.impact-metrics {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
  color: white;
}

.impact-metrics h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.impact-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-metrics .metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-metrics p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Dark theme adjustments */
.dark-theme .offering-card {
  background: var(--card-bg);
  border-color: var(--border);
}

.dark-theme .offering-card li {
  color: var(--text-light);
}

.dark-theme .impact-metrics {
  background: linear-gradient(135deg, #8b5cf6, #60a5fa);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .offering-card {
    padding: 1.5rem;
  }
  
  .offering-card h4 {
    font-size: 1.3rem;
  }
  
  .impact-metrics h3 {
    font-size: 1.5rem;
  }
  
  .impact-metrics .metric-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .offering-card {
    padding: 1.25rem;
  }
  
  .offering-card h4 {
    font-size: 1.2rem;
  }
  
  .offering-card li {
    font-size: 0.9rem;
  }
  
  .impact-metrics .metric-number {
    font-size: 2rem;
  }
}

/* =====================================================
   HOME · OUR SERVICES (distinct treatment, shared vibe)
   ===================================================== */
.gf-services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.gf-services-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.06);
}

.gf-services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gf-services-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.gf-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: gfProductFadeIn 0.6s ease-out both;
}

.gf-service-card:nth-child(2) { animation-delay: 0.1s; }
.gf-service-card:nth-child(3) { animation-delay: 0.2s; }

/* Hover lift + accent bar — the shared vibe with products/services */
.gf-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gf-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary);
}

.gf-service-card:hover::after {
  opacity: 1;
}

/* Oversized faint index number — distinct service flourish */
.gf-service-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gf-service-card:hover .gf-service-num {
  opacity: 0.16;
}

/* Soft circular outline icon — contrasts the products' solid gradient square */
.gf-service-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gf-service-icon i {
  font-size: 1.5rem;
}

.gf-service-card:hover .gf-service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateY(-2px);
}

.gf-service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.gf-service-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* Capabilities as pill tags — not a vertical checklist */
.gf-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gf-service-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.gf-service-card:hover .gf-service-tag {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.06);
}

/* Dual-stat strip in a tinted panel with a center divider */
.gf-service-stats {
  display: flex;
  margin-top: auto;
  margin-bottom: 1.5rem;
  padding: 1rem 0.5rem;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.gf-service-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gf-service-stat + .gf-service-stat {
  border-left: 1px solid var(--border);
}

.gf-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}

.gf-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* Text-style CTA with sliding underline — not a solid pill button */
.gf-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.gf-service-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.gf-service-link i {
  transition: transform 0.3s ease;
}

.gf-service-card:hover .gf-service-link::before {
  width: calc(100% - 1.5rem);
}

.gf-service-card:hover .gf-service-link i {
  transform: translateX(4px);
}

.dark-theme .gf-service-card {
  border-color: rgba(255, 255, 255, 0.1);
}

.light-theme .gf-service-card {
  border-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .gf-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gf-services-section {
    padding: 3rem 1rem;
  }
  .gf-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gf-services-header h2 {
    font-size: 2rem;
  }
  .gf-service-card {
    padding: 2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gf-services-header h2 {
    font-size: 1.75rem;
  }
  .gf-services-header p {
    font-size: 1rem;
  }
  .gf-service-title {
    font-size: 1.35rem;
  }
}

/* GrowForge Products Specific Styles with React Theme Support */
.gf-products-container {
  min-height: 100vh;
  padding: 2rem 0;
  background: transparent;
  transition: background-color 0.3s ease;
}

.gf-products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: transparent;
}

.gf-products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gf-products-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.06);
}

.gf-products-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gf-products-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  transition: color 0.3s ease;
}

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

.gf-product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
<<<<<<< HEAD
  animation: gfProductFadeIn 0.6s ease-out both;
}

.gf-product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.gf-product-card:nth-child(3) {
  animation-delay: 0.2s;
}

=======
}

>>>>>>> 10d0b57195332f4c62c27bdb368deefbeb732280
/* Card top accent bar — appears on hover, matching .service-card */
.gf-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gf-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary);
}

.gf-product-card:hover::before {
  opacity: 1;
}

.gf-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.gf-product-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
  transition: transform 0.3s ease;
}

.gf-product-card:hover .gf-product-icon {
  transform: scale(1.05) rotate(-3deg);
}

.gf-product-icon i {
  font-size: 1.75rem;
  color: white;
}

.gf-product-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.gf-product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.gf-product-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.gf-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.gf-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.gf-feature-item:last-child {
  margin-bottom: 0;
}

.gf-feature-item i {
  flex-shrink: 0;
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 0.7rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
}

.gf-feature-item span {
  font-weight: 500;
}

.gf-product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.gf-product-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gf-price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gf-price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.gf-price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.gf-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.gf-product-btn i {
  transition: transform 0.3s ease;
}

.gf-product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.35);
  color: white;
}

.gf-product-btn:hover i {
  transform: translateX(4px);
}

.gf-products-footer {
  text-align: center;
  margin-top: 3rem;
}

.gf-view-all-btn {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.gf-view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.gf-view-all-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.gf-view-all-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

.gf-view-all-btn:hover::before {
  width: 100%;
}

.gf-view-all-btn:hover::after {
  left: 100%;
}

/* Enhanced theme specific adjustments */
.dark-theme .gf-product-card {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .gf-view-all-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}

.light-theme .gf-product-card {
  border-color: rgba(0, 0, 0, 0.08);
<<<<<<< HEAD
}

/* Animation for product cards */
@keyframes gfProductFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
=======
>>>>>>> 10d0b57195332f4c62c27bdb368deefbeb732280
}

/* Theme transition smoothness */
.gf-product-card,
.gf-feature-item,
.gf-product-price,
.gf-view-all-btn {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gf-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gf-products-section {
    padding: 3rem 1rem;
  }

  .gf-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gf-products-header h2 {
    font-size: 2rem;
  }

  .gf-product-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gf-products-header h2 {
    font-size: 1.75rem;
  }

  .gf-products-header p {
    font-size: 1rem;
  }

  .gf-product-title {
    font-size: 1.35rem;
  }

  .gf-product-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gf-product-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  .gf-view-all-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* =====================================================================
   SHARED BRANDED PAGE SCAFFOLD  (gf-page-*)
   Used by the Services & Products listing pages so they feel like one
   family around the gf-product / gf-service card systems.
   ===================================================================== */
.gf-page { position: relative; z-index: 1; }

.gf-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
.gf-page-back:hover { color: var(--primary); }
.gf-page-back i { transition: transform 0.3s ease; }
.gf-page-back:hover i { transform: translateX(-4px); }

/* ---- Branded hero ---------------------------------------------------- */
.gf-page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 2rem 3rem;
  margin-bottom: 3rem;
}
.gf-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(var(--primary-rgb), 0.10), transparent 70%);
  pointer-events: none;
}
.gf-page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.gf-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.06);
}
.gf-page-eyebrow i { color: var(--primary); }
.gf-page-eyebrow .logo-wordmark { letter-spacing: 0.02em; }

.gf-page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.gf-page-hero h1 .grad {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gf-page-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.gf-page-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* brand stat band */
.gf-page-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px var(--shadow);
}
.gf-page-stat {
  flex: 1 1 120px;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}
.gf-page-stat + .gf-page-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border);
}
.gf-page-stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gf-page-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ---- Section heading -------------------------------------------------- */
.gf-page-section-head { text-align: center; margin-bottom: 2.5rem; }
.gf-page-section-head .meta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.gf-page-section-head h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gf-page-section-head p { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.gf-page-section { max-width: 1400px; margin: 0 auto 3.5rem; padding: 0 2rem; }

/* ---- Compact feature card (the "why" grid) --------------------------- */
.gf-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gf-feature-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gf-feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gf-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary);
}
.gf-feature-card:hover::after { opacity: 1; }
.gf-feature-card .gf-feature-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
}
.gf-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.gf-feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Branded CTA band ------------------------------------------------ */
.gf-page-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 24px;
  padding: 3.5rem 2rem;
  margin: 1rem 0 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.gf-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 45%);
  pointer-events: none;
}
.gf-page-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.gf-page-cta .logo-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #fff;
}
.gf-page-cta .logo-wordmark span { color: rgba(255,255,255,0.85); }
.gf-page-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.gf-page-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.gf-page-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gf-page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.gf-page-cta-btn.primary { background: #fff; color: var(--primary); }
.gf-page-cta-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.gf-page-cta-btn.ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.gf-page-cta-btn.ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.gf-page-cta-btn i { transition: transform 0.3s ease; }
.gf-page-cta-btn:hover i { transform: translateX(4px); }

/* ---- Branded marquee strip ------------------------------------------- */
.gf-page-strip {
  position: relative;
  overflow: hidden;
  margin: 0 auto 3.5rem;
  max-width: 1400px;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent 1%, #000 3%, #000 97%, transparent 99%);
  mask-image: linear-gradient(90deg, transparent 1%, #000 3%, #000 97%, transparent 99%);
}
.gf-page-strip-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: gfStripScroll 32s linear infinite;
}
.gf-page-strip:hover .gf-page-strip-track { animation-play-state: paused; }
.gf-page-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.gf-page-strip-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
@keyframes gfStripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gf-page-hero { padding: 3rem 1.25rem 2.5rem; }
  .gf-page-cta { padding: 2.75rem 1.25rem; }
  .gf-page-section { padding: 0 1rem; }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-large {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}




/* Responsive */
@media (max-width: 768px) {
    .expected-results h3 {
        font-size: 2rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .results-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .expected-results {
        padding: 3rem 1rem;
    }
    
    .expected-results h3 {
        font-size: 1.8rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
    
    .result-item p {
        font-size: 1rem;
    }
}

/* Dark Theme Adjustments */
.dark-theme .service-card,
.dark-theme .product-card,
.dark-theme .feature-item {
    background: var(--card-bg);
    border-color: var(--border);
}

.dark-theme .achievement-stats {
    background: var(--card-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}