/* Content V2 Styles */
.v2-content-section-wrapper {
  background-color: #020617;
  /* Deep dark background */
  color: #fff;
  padding: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  overflow: hidden;
  padding-top: 7rem;
  position: relative;
}

.v2-content-section-wrapper {
  background-color: #020617;
  /* Deep dark background */
  color: #fff;
  padding: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  overflow: hidden;
  padding-top: 7rem;
  position: relative;
}

.v2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Efficiency Stats Section --- */
.efficiency-stats-section {
  padding: 2rem 0;
  text-align: center;
  padding-bottom: 5rem;
}

.efficiency-header {
  margin-bottom: 80px;
}

.efficiency-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.efficiency-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.efficiency-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.efficiency-stat-item {
  flex: 1;
  padding: 80px 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.efficiency-stat-item:last-child {
  border-right: none;
}

.efficiency-stat-value {
  font-size: 52px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -1px;
}

.efficiency-stat-label {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 200px;
}

.efficiency-stat-bar {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 5px;
  background-color: #0050ef;
}

@media (max-width: 900px) {
  .efficiency-title {
    font-size: 2.5rem;
  }

  .efficiency-grid {
    flex-direction: column;
  }

  .efficiency-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
  }

  .efficiency-stat-item:last-child {
    border-bottom: none;
  }

  .efficiency-stat-bar {
    left: 0;
    right: 0;
  }
}


.case-study-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  position: relative;
  margin-top: 80px;
}

.case-study-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 68, 221, 0.3) 0%,
      rgba(0, 68, 221, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

/* --- Left Side: Visuals --- */
.cs-visual-side {
  flex: 1 1 600px;
  /* Slightly larger basis for visual side */
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

/* Logos Banner */
.logos-banner {
  display: flex;
  align-items: stretch;
  height: 200px;
  /* Specific height for the banner */
  width: 100%;
  position: relative;
  margin-bottom: 60px;
  /* Optional: box shadow or glowing effect if desired, but sticking to flat clean look */
}

.logo-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.ib-blue {
  background-color: #0050ef;
  /* Vibrant Blue */
}

.gt-purple {
  background-color: #4F2D7F;
  /* Grant Thornton Purple */
}

.logo-half img {
  width: 250px;
  height: 48px;
  /* Adjusted for consistent visual scale across different aspect ratios */
  max-width: 90%;
  object-fit: contain;
}

/* Divider X */
.logo-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-divider img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Grid */
.cs-stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px;
}

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

.cs-stat-value {
  font-size: 2.2rem;
  font-weight: 400;
  /* Slightly bolder for readability at smaller size */
  line-height: 1.2;
  margin-bottom: 12px;
  display: block;
  color: #ffffff;
}

.cs-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  /* Muted text */
  margin-bottom: 20px;
  display: block;
  min-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-stat-bar {
  width: 100%;
  /* Full width of the column */
  height: 4px;
  background-color: #0050ef;
  /* Match blue brand color */
  margin-top: auto;
  border-radius: 4px;
}

/* --- Right Side: Content --- */
.cs-content-side {
  flex: 1 1 500px;
  /* Allows it to wrap if too narrow */
  display: flex;
  align-items: stretch;
  max-width: 700px;
}

.cs-content-card {
  background-color: #ffffff;
  color: #1e293b;
  padding: 60px 50px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Clean white box that matches neighboring height */
}

.cs-content-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.cs-link {
  color: #0050ef;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.cs-link:hover {
  gap: 12px;
}

.cs-link .arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .case-study-showcase {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .cs-visual-side,
  .cs-content-side {
    width: 100%;
    max-width: 100%;
    flex: auto;
  }

  .cs-stat-value {
    font-size: 2.5rem;
  }
}

/* Industry Highlight Section */
.industry-showcase {
  margin-top: 6rem;
  /* Spacing from the section above */
  position: relative;
  min-height: 500px;
  /* Prevent layout jump */
}

.industry-slides-container {
  position: relative;
}

.industry-content {
  display: none;
  /* Hidden by default */
  align-items: center;
  gap: 60px;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.industry-content.slide {
  /* Ensure slide class is targeted */
  display: none;
}

.industry-content.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visual Side */
.industry-visual {
  flex: 1 1 600px;
  max-width: 700px;
}

.industry-visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  /* Ensure substantial height but not too tall */
  max-height: 450px;
  /* Cap the height */
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Info Side */
.industry-info {
  flex: 1 1 600px;
  max-width: 700px;
  color: #fff;
  padding-left: 20px;
}

.industry-title {
  font-size: 3rem;
  font-weight: 400;
  /* Regular/Thin feel */
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.industry-divider {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.industry-subtitle {
  font-size: 1.5rem;
  color: #00e5ff;
  /* Cyan/Teal color from image */
  margin-bottom: 20px;
  font-weight: 500;
}

.industry-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
  /* Slate gray text */
  margin-bottom: 40px;
  max-width: 90%;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  left: calc(50% + 50px);
  /* Center + Half Gap (30) + Padding (20) */
  z-index: 10;
}

.indicator {
  display: block;
  width: 24px;
  height: 10px;
  background-color: #334155;
  /* Inactive dark gray */
  border-radius: 5px;
  /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.indicator.active {
  background-color: #ffffff;
  width: 60px;
  /* Elongated active state */
}

/* Responsive */
@media (max-width: 900px) {
  .carousel-indicators {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .industry-content {
    flex-direction: column;
    gap: 40px;
    text-align: left;
    /* Keep left alignment as per design, even on mobile usually looks better than center for this layout */
  }

  .industry-visual,
  .industry-info {
    flex: auto;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .industry-title {
    font-size: 2.2rem;
  }
}

/* Get Started Section */
.get-started-section {
  margin-top: 8rem;
  position: relative;
  padding-bottom: 80px;
}

.get-started-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Background Glow behind text */
.get-started-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center,
      rgba(0, 80, 239, 0.15) 0%,
      rgba(0, 80, 239, 0.05) 40%,
      transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.get-started-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.get-started-subtitle {
  font-size: 1.18px;
  color: #A7ADBE;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Steps Grid */
.get-started-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.get-started-card {
  flex: 1;
  background: linear-gradient(90deg, #000D29 0%, #002780 100%);
  border: 1.5px solid rgba(30, 80, 180, 0.4);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow effect */
.get-started-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(0, 80, 239, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.get-started-card>* {
  position: relative;
  z-index: 1;
}

.get-started-card:hover {
  border-color: rgba(0, 80, 239, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 80, 239, 0.15);
}

/* Card Content Area */
.gs-card-content {
  padding: 50px 30px 30px;
  flex: 1;
}

/* Card Footer Section */
.gs-card-footer {
  background: linear-gradient(135deg, #000D29 0%, #002780 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 45px;
  margin-top: auto;
}

.gs-card-title {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.gs-card-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 30px;
  font-weight: 400;
}

.gs-card-highlight {
  font-size: 1.1rem;
  color: #10b981;
  /* Precise Emerald green from image */
  font-weight: 500;
  /* margin-bottom: 50px; */
}

.gs-highlight-val {
  color: inherit;
}

.gs-card-btn {
  display: inline-block;
  background-color: #0050ef;
  /* Matches the vibrant blue in image */
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 80, 239, 0.3);
}

.gs-card-btn:hover {
  background-color: #0044dd;
  box-shadow: 0 6px 16px rgba(0, 80, 239, 0.4);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .get-started-grid {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .get-started-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .get-started-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 45px 35px;
  }

  .get-started-title {
    font-size: 3rem;
  }

  .gs-card-title {
    font-size: 1.9rem;
  }
}


/* Governance Section */
.governance-section {
  margin-top: 7rem;
}

.gov-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.gov-title {
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 400;
  flex: 1 1 400px;
}

.gov-quote {
  flex: 1 1 400px;
  text-align: right;
  color: #94a3b8;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Team Grid */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  flex: 1 1 420px;
  max-width: 420px;
  height: 420px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: #1e293b;
  /* Fallback */
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  /* Black and white photo effect */
  transition: filter 0.3s ease;
  display: block;
}

.team-card:hover .team-img {
  filter: grayscale(0%);
  /* Color on hover if desired, or keep BW */
}

/* Floating Info Badge */
.team-info-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #0044dd4d;
  /* Dark Blue semi-transparent */
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.badge-light-blue {
  background: #0044dd4d;
}

/* Revert middle to match others if better, but screenshot shows lighter blue for Yeahia */

/* Let's unify a bit based on the dark theme but keep middle distinctive if requested. 
   Actually, looking closely at the image provided (Team Section), 
   Left: Dark Blue 
   Middle: Lighter Blue/Periwinkle 
   Right: Dark Blue/Slate 
*/

.team-name {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  color: #ffffff;
  /* Light gray */
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .gov-header {
    flex-direction: column;
    gap: 20px;
  }

  .gov-quote {
    text-align: left;
  }

  .gov-title {
    font-size: 2.2rem;
  }
}

/* Founder Quote Section */
.founder-quote-section {
  position: relative;
  margin-top: 7rem;
  padding: 100px 40px;
  text-align: center;
  background-image: url("../img/gradient-bg-quote.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  overflow: hidden;
  /* Ensure it stands out */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content */
.fq-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.fq-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.fq-subtitle {
  font-size: 1.25rem;
  color: #00e5ff;
  /* Cyan matching other accents */
  margin-bottom: 50px;
  font-weight: 500;
}

.fq-quote {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e2e8f0;
  /* Bright readable text */
  font-style: italic;
  margin: 0 auto 50px;
  border: none;
  padding: 0;
  max-width: 850px;
}

.fq-author {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 800px) {
  .founder-quote-section {
    padding: 60px 20px;
    border-radius: 20px;
  }

  .fq-title {
    font-size: 2.5rem;
  }

  .fq-quote {
    font-size: 1.2rem;
  }
}

/* Career CTA Section */
.career-cta-section {
  margin-top: 7rem;
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background-image: url("../img/career-full-width-2.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
  /* Remove shadow if it spans full width usually */
}

.career-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.career-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.career-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.6;
}

.career-email {
  color: #10b981;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 5px;
  transition: color 0.2s ease;
}

.career-email:hover {
  color: #34d399;
}

@media (max-width: 800px) {
  .career-cta-section {
    padding: 60px 20px;
    margin-top: 80px;
  }

  .career-title {
    font-size: 2.2rem;
  }
}

/* ========================================
   Our Products Section
   ======================================== */
.v2-our-products-section {
  margin-top: 7rem;
}

.v2-products-header {
  text-align: center;
  margin-bottom: 60px;
}

.v2-products-title {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
}

.v2-products-subtitle {
  font-size: 18px;
  color: #a7adbe;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Products Grid */
.v2-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 288px);
  gap: 24px;
  width: 1240px;
  margin: 0 auto;
  justify-content: center;
}

/* Product Card Base Styles */
.v2-product-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #000000;
}

.v2-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Product Card Specific Backgrounds */
.v2-product-card-green {
  background: #c6ff3e1a;
}

.v2-product-card-purple {
  background: #6c4ff733;
}

.v2-product-card-teal {
  background: #34ffc31a;
}

.v2-product-card-blue {
  background: #0044dd33;
}

/* Product Icon Wrapper */
.v2-product-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.v2-product-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Product Name */
.v2-product-name {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Product Description */
.v2-product-description {
  font-size: 16px;
  line-height: 1.5;
  color: #a7adbe;
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 400;
}

/* Product Link */
.v2-product-link {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
  margin-top: auto;
}

.v2-product-link-green {
  color: #b4ff64;
}

.v2-product-link-purple {
  color: #b48cff;
}

.v2-product-link-teal {
  color: #64ffb4;
}

.v2-product-link-blue {
  color: #64b4ff;
}

.v2-product-link:hover {
  gap: 10px;
}

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

@media (max-width: 640px) {
  .v2-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-products-title {
    font-size: 2.2rem;
  }

  .v2-product-card {
    padding: 30px 24px;
  }
}

/* ==== EU AI ACT SECTION ==== */
.v2-ai-act-section {
  padding: 100px 0;
  background-color: transparent;
  /* Removed section-level bg */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.v2-ai-act-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.v2-ai-act-title {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #ffffff;
  /* Explicitly bright white */
}

.v2-ai-act-subtitle {
  font-size: 18px;
  color: #a7adbe;
  /* Muted gray for subtitle only */
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  font-weight: 400;
}

.v2-ai-act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.v2-ai-act-card {
  background: #020617;
  /* Very deep navy blue */
  border: 1px solid rgba(30, 80, 239, 0.15);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.v2-ai-act-card:hover {
  background: #030825;
  border-color: rgba(30, 80, 239, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.v2-ai-act-card:hover {
  background: #121826;
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.v2-ai-act-icon-wrapper {
  margin-bottom: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.v2-ai-act-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.v2-ai-act-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.v2-ai-act-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .v2-ai-act-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .v2-ai-act-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v2-ai-act-section {
    padding: 80px 0;
  }

  .v2-ai-act-title {
    font-size: 36px;
  }

  .v2-ai-act-card {
    padding: 32px 24px;
  }
}

/* ========================================
   Our Products Section
   ======================================== */
.v2-our-products-section {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.v2-products-header {
  text-align: center;
  margin-bottom: 60px;
}

.v2-products-title {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
}

.v2-products-subtitle {
  font-size: 18px;
  color: #a7adbe;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Products Grid */
.v2-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Product Card Base Styles */
.v2-product-card {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Product Card Specific Backgrounds */
.v2-product-card-green {
  background: linear-gradient(135deg, rgba(198, 255, 62, 0.08) 0%, rgba(40, 50, 20, 0.15) 100%);
}

.v2-product-card-purple {
  background: linear-gradient(135deg, rgba(108, 79, 247, 0.12) 0%, rgba(30, 20, 60, 0.2) 100%);
}

.v2-product-card-teal {
  background: linear-gradient(135deg, rgba(52, 255, 195, 0.08) 0%, rgba(20, 50, 45, 0.15) 100%);
}

.v2-product-card-blue {
  background: linear-gradient(135deg, rgba(0, 68, 221, 0.12) 0%, rgba(0, 20, 60, 0.2) 100%);
}

/* Product Icon Wrapper */
.v2-product-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.v2-product-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Product Name */
.v2-product-name {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

/* Product Subtitle */
.v2-product-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Product Description */
.v2-product-description {
  font-size: 15px;
  line-height: 1.6;
  color: #a7adbe;
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 400;
}

/* Product Link */
.v2-product-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
  margin-top: auto;
}

.v2-product-link-green {
  color: #c6ff3e;
}

.v2-product-link-purple {
  color: #b48cff;
}

.v2-product-link-teal {
  color: #34ffc3;
}

.v2-product-link-blue {
  color: #64b4ff;
}

.v2-product-link:hover {
  gap: 10px;
}

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

@media (max-width: 640px) {
  .v2-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-products-title {
    font-size: 2.2rem;
  }

  .v2-product-card {
    padding: 30px 24px;
  }
}