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

:root {
  --primary-blue: #2e7897;
  --primary-blue-hover: #0052a3;
  --primary-blue-light: #e6f2ff;
  --secondary-blue: #4a90e2;
  --accent-gradient: #2e7897;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light-grey: #f8fafc;
  --bg-dark: #0f172a;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  --spacing-4xl: 128px;
}



.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}


/* Hero Section */
.hero {
  background: linear-gradient(
    180deg,
    var(--bg-white) 0%,
    var(--bg-light-grey) 100%
  );
  padding: var(--spacing-4xl) 0 var(--spacing-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(../images/prod-bg-image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
    background: #dffaf3;
    color: var(--primary-blue);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease;
    display: flex;
    column-gap: 5px;
    align-items: center;
}
.hero-badge img {
    width: 12px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1.1;
  animation: fadeInUp 0.6s ease 0.1s both;
  margin-top: 0;
}

.hero h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  /* flex-wrap: wrap; */
  animation: fadeInUp 0.6s ease 0.3s both;
  margin-bottom: var(--spacing-2xl);
}

.btn {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-white);
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.trust-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

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

.trust-stat-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.trust-stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Suite Intro Section */
.suite-intro {
  background: var(--bg-light-grey);
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.suite-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.suite-intro-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.2;
}

.suite-intro-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.suite-features-list {
  display: grid;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.suite-feature-item {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 400;
}

.suite-visual {
  background: white;
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.visual-item {
  background: var(--bg-light-grey);
  border-radius: 8px;
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
}

.visual-item:hover {
  background: var(--primary-blue-light);
  transform: translateY(-4px);
}

.visual-item-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-xs);
}

.visual-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Products Section */
.products-section {
  background: var(--bg-white);
  padding: var(--spacing-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  background: #dffaf3;
  color: var(--primary-blue);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

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

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.product-card {
  background: var(--bg-white);
  border: 1px solid #d6d6d6;
  border-radius: 16px;
  padding: var(--spacing-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width:auto;
  padding:30px;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.product-card-header {
  display: flex;
  align-items:center;
  justify-content: flex-start;
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid #eaeaea;
    margin-bottom: 10px;
    padding-bottom: 20px;

    column-gap: 15px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.product-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
  margin-bottom: 0;
  flex-shrink: 0;
}

.product-card:hover .product-icon {
  /* transform: scale(1.1) rotate(5deg); */
}

.product-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  margin-bottom: 0;
}

.product-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
  font-weight: 300;
}

.product-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
  width: 70%;
}

.product-features li {

  color: var(--text-secondary);
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight:400;
  background-color: #dffaf3;
    color: #0f766e;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 300;
    margin-bottom: 10px;
    display: inline-block;
}

.product-features li::before {
  /* content: "✓";
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 16px; */
}

.product-card-footer {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.btn-learn-more {
  flex: 1;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  background: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  transform: translateX(4px);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: var(--primary-blue-light);
}

/* Feature Comparison */
.feature-comparison {
  background: var(--bg-light-grey);
  padding: var(--spacing-3xl) 0;
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--spacing-2xl);
}

.comparison-header {
  background: var(--bg-dark);
  color: white;
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  font-weight: 600;
}

.comparison-row {
  padding: var(--spacing-md) var(--spacing-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.comparison-row:hover {
  background: var(--bg-light-grey);
}

.comparison-feature {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-check {
  text-align: center;
  color: var(--primary-blue);
  font-size: 20px;
}

/* Integration Platform */
.integration-section {
  background: var(--bg-white);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.integration-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.integration-content {
  position: relative;
  z-index: 1;
}

.integration-diagram {
  max-width: 900px;
  margin: var(--spacing-2xl) auto 0;
  position: relative;
  height: 600px;
}

.core-platform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: var(--accent-gradient);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
  z-index: 10;
  animation: pulse 3s ease-in-out infinite;
}

.core-platform-subtitle {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: var(--spacing-xs);
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.connected-product {
  position: absolute;
  width: 160px;
  padding: var(--spacing-md);
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.connected-product:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.connected-product-icon {
  font-size: 28px;
  margin-bottom: var(--spacing-xs);
}

.connected-product-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.connection-line {
  position: absolute;
  background: var(--border-color);
  z-index: 1;
}

/* Position products in circle */
.product-1 {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.product-2 {
  top: 18%;
  right: 10%;
}

.product-3 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.product-4 {
  bottom: 18%;
  right: 10%;
}

.product-5 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.product-6 {
  bottom: 18%;
  left: 10%;
}

.product-7 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.product-8 {
  top: 18%;
  left: 10%;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
258deg, #2e7897 0%, #2e7897 100%);
  padding: var(--spacing-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top:80px;
  padding-bottom:80px;

}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: white;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.cta-feature::before {
  content: "✓";
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
  padding: 18px 40px;
  font-size: 18px;
}

.btn-white:hover {
  background: var(--bg-light-grey);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visual-item-icon img {
  width: auto;
  height: 20px;
}
.product-icon img {
    width: 15px;
    filter: invert(1);
}
footer.section-footer.mt-100.cyan-bg {
    margin-top: 0 !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-intro-grid {
    grid-template-columns: 100%;
  }

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

  .integration-diagram {
    height: 700px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .trust-stats {
    gap: var(--spacing-xl);
  }

  nav ul {
    gap: var(--spacing-md);
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 36px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }

  .comparison-header {
    display: none;
  }

  .integration-diagram {
    height: 800px;
  }

  .product-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }
  .cta-buttons{
    flex-wrap:nowrap;
    margin-bottom:0;
  }
  .btn{
    flex-shrink: 0;
  }
  .suite-visual{
    padding:15px;
  }
  .visual-grid{
    grid-template-columns: repeat(3, 30%);
  }
  .suite-intro{
    padding-bottom:40px;
  }
  .suite-intro-grid{
    gap:60px;
  }
  .products-section{
    padding-top:60px;
  }
  .cta-features {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .btn{
    flex-shrink:1;
  }
  .visual-item{
    padding:10px;
  }
}
