#a_logo{
  /* width: 100%;
  height: 100%; */
  width: 30%;
}

#img_logo{
  width:167px;
  height: 30%;
  margin-left: 10px;
  margin-top: 5px;
}

#img_logo2{
  width:167px;
  height: 30%;
  margin-left: -120px;
  margin-top: 5px;
}

#img_footer_1{
  width:190px;
  height: 68px;
  margin-left: -100px;
  margin-top: 5px;
}

#img_footer_0{
  width:190px;
  height: 68px;
  margin-left: 20px;
  margin-top: 5px;
}

/* Global styles */
:root {
  --brand-color: #006aff;
  --brand-hover: #08f;
  --text-primary: #172b4d;
  --text-secondary: #42526e;
  --background-light: #f4f5f7;
  --border-color: #dfe1e6;
  font-family: Inter, -apple-system, BlinkMacSystemFont, PingFang SC,
    Hiragino Sans GB, noto sans, Microsoft YaHei, Helvetica Neue, Helvetica,
    Arial, sans-serif;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 30px;
  width: auto;
  margin-left: 10px;
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: -15rem;
  height: 100%;
}

.nav-item {
  height: 100%;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  /* font-size: 18px; */
  font-size: 1.1rem;
}

.nav-link-word-with-arrow {
  margin-right: 0.7rem;
}

.nav-link:hover {
  color: #0066ff;
}

.nav-icon {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
  transform: rotate(-180deg);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  padding: 0.525rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(-50%);
}

.btn-primary {
  background-color: var(--brand-color);
  color: #fff;
  border: none;
}

.btn-outline {
  background-color: white;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-right: -15px;
}

.btn-outline:hover {
  color: white;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  transform: translateX(-50%);
}

.dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 800px;
}

.dropdown-content-inner {
  max-width: var(--container-width);
  margin: 20px auto;
  padding: 0 35px;
  width: 100%;
}

.dropdown-main {
  padding: 0 20px;
}

.dropdown-title {
  color: #0066ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-left: 20px;
}

.products-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.product-item {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  background: #f5f7ff;
}

.product-item h4 {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  padding-right: 20px;
}

.product-item p {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.arrow-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #0066ff;
  font-size: 16px;
  opacity: 1;
  transition: all 0.3s ease;
}

.product-item:hover .arrow-icon {
  opacity: 1;
}

@media (max-width: 1200px) {
  .products-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .dropdown-content-inner {
    padding: 0 16px;
    margin: 14px auto;
  }

  .dropdown-main {
    padding: 0 10px;
  }

  .products-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-item {
    padding: 14px;
  }

  .dropdown-title {
    margin-left: 10px;
  }
}

/* リソースドロップダウン専用のスタイル */
.resource-main {
  display: flex;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.resource-docs {
  flex: 2;
}

.resource-support {
  flex: 3;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.resource-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.resource-link:hover h4 {
  color: #0066ff;
}

.resource-link h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.resource-arrow {
  color: #666;
  transform: rotate(-90deg);
}

.resource-support-content {
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.resource-support-content p {
  margin: 0 0 16px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-primary);
}

.resource-support-button {
  display: inline-block;
  padding: 8px 16px;
  color: var(--brand-color);
  border: 2px solid var(--brand-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.resource-support-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.resource-support-button:hover::before {
  transform: translateX(-50%);
}

.resource-support-button:hover {
  color: white;
}

.resource-docs .dropdown-title {
  color: #0066ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-left: 10px;
}

.resource-support-content .dropdown-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-left: 0;
}

/* Hero Section */
.hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  height: 680px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 680px;
  background: #ffffff;
  will-change: transform;
}

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

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 100%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
  height: 100%;
}

.hero-image {
  max-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* Specific styles for Forrester slide */
.hero-slide-forrester {
  background: #ffffff;
}

.hero-slide-forrester .hero-image {
  margin-right: -40px;
}

/* Specific styles for main product slide */
.hero-slide:not(.hero-slide-forrester) {
  background: #ffffff;
}

.hero-slide:not(.hero-slide-forrester) .hero-image {
  margin-right: -32px;
}

@media (max-width: 1024px) {
  .hero-slide {
    height: auto;
    min-height: 800px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-container {
    height: auto;
    max-height: 500px;
  }

  .hero-image img {
    max-height: 500px;
  }
}

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

  .hero h2 {
    font-size: 32px;
  }

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

  .hero-slide {
    min-height: 700px;
  }

  .hero-container {
    padding: 40px 24px;
  }

  .hero-image-container {
    max-height: 400px;
  }

  .hero-image img {
    max-height: 400px;
  }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  will-change: transform;
}

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

.hero-slide-forrester {
  background: #ffffff;
}

.hero-slide-forrester h1 {
  color: #006aff;
  font-size: 24px;
  margin-bottom: 16px;
}

.hero-slide-forrester h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-slide-forrester .hero-description {
  max-width: 600px;
}

.hero-slide-forrester .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slide-forrester .btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hero Carousel Controls */
.hero-progress {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 100;
}

.progress-button {
  width: 60px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--brand-color);
  transition: none;
}

.progress-button.active::after {
  width: 100%;
  transition: width 5s linear;
}

.hero-controls {
  position: absolute;
  bottom: -24px;
  left: 32px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-control {
  width: 80px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  border: none;
  padding: 0;
  transition: background-color 0.3s;
}

.hero-control::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #006aff;
  transition: width 0.1s linear;
}

.hero-control.active::after {
  width: 0;
}

.hero-control.active.running::after {
  width: 100%;
  transition: width 5s linear;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-controls {
    left: 24px;
    bottom: -20px;
  }

  .hero-control {
    width: 60px;
  }
}

/* Features Grid */
.features {
  padding: 80px 0;
  background: url("../images/home-background.57b7885f.png") no-repeat top center;
  background-size: cover;
}

.features h2 {
  color: var(--text-primary);
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 80px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-item.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.feature-item:nth-child(1).visible {
  transition-delay: 0s;
}

.feature-item:nth-child(2).visible {
  transition-delay: 0.1s;
}

.feature-item:nth-child(3).visible {
  transition-delay: 0.2s;
}

.feature-item > img {
  width: 55%;
  height: auto;
  border-radius: 8px;
}

.feature-item > div {
  width: 45%;
}

.feature-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.feature-item img {
  object-fit: contain;
}

.feature-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-content {
  flex: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../images/check-circle.svg") no-repeat center center;
  background-size: contain;
}

.learn-more {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background: #006aff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.learn-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(-45deg, #006aff, #08f 50%, #006aff);
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.learn-more:hover::before {
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .feature-list li {
    text-align: left;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
  }

  .feature-item img {
    width: 80%;
    max-width: 400px;
  }

  .feature-item > div {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }

  .features h2 {
    font-size: 32px;
    margin: 0 0 60px;
  }
}

/* Solutions Section */
.solutions {
  padding: 80px 0;
  background-color: white;
}

.solutions h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.solutions-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.solution-nav-item {
  font-size: 20px;
  color: var(--text-secondary);
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.solution-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.solution-nav-item:hover {
  color: var(--text-primary);
}

.solution-nav-item.active {
  color: var(--brand-color);
}

.solution-nav-item.active::after {
  transform: scaleX(1);
}

.solutions-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.solutions-slider h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}

.solutions-slider .slide.active h3 {
  color: var(--brand-color);
  background-color: #ebf5ff;
  transform: scale(1.05);
}

.solutions-slider h3:hover {
  color: var(--brand-color);
}

.solutions-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.solution-slide {
  min-width: 100%;
}

.solution-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  padding: 48px;
  background: white;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1200px;
}

.solution-content {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.solution-content h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.solution-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: left;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.solution-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.solution-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../images/check-circle.svg") no-repeat center center;
  background-size: contain;
}

.solution-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .solution-card {
    flex-direction: column;
    gap: 40px;
    padding: 24px;
  }

  .solution-content,
  .solution-image {
    max-width: 100%;
  }
}

/* Pricing Plans Section */
.pricing-plans {
  padding: 80px 0;
  background-color: var(--background);
}

.pricing-plans h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 600;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.plan-content {
  flex: 1;
}

.plan-actions {
  margin-top: auto;
}

.plan h3 {
  font-size: 28px;
  margin: 0 0 10px;
  color: #0066ff;
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.price-container {
  margin: 30px 0;
}

.price-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.price .currency {
  font-size: 24px;
  font-weight: 500;
}

.price .amount {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.price .period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.plan-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-secondary);
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z' fill='%230066FF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.plan-link {
  display: block;
  color: #0066ff;
  text-decoration: none;
  margin: 20px 0;
  font-weight: 500;
}

.plan-link:hover {
  text-decoration: underline;
  color: #0052cc;
}

.plan .btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  display: block;
}

.plan .btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.plan .btn-primary:hover {
  background: var(--primary-dark);
}

.plan.featured {
  border: 2px solid var(--primary);
}

.best-value {
  background: #0066ff;
  color: white;
  padding: 2px 8px;
  border-radius: 8px 2px 8px 2px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .plan {
    max-width: 100%;
  }
}

/* Transform Section */
.transform {
  padding: 80px 0;
  background: white;
}

.transform h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.transform-item {
  text-align: center;
  padding: 32px;
  border-radius: 8px;
  background: var(--background-light);
}

.transform-item h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.transform-item p {
  color: var(--text-secondary);
}

/* Clients Section */
.clients {
  padding: 80px 0;
  background: var(--background-light);
}

.clients h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.client-logos img {
  width: auto;
  height: 52px;
  justify-self: center;
  align-self: center;
  opacity: 1;
  object-fit: contain;
}

@media (max-width: 768px) {
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 10px;
  }

  .client-logos img {
    height: 39px;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: white;
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  flex: 1;
  max-width: 360px;
  padding: 48px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border-color);
}

.pricing-card.featured {
  border: 2px solid var(--brand-color);
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-color);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background-image: url("../images/home-impact-segment-bg.4c2d4de6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.cta-buttons {
  margin-bottom: 60px;
}

.cta-buttons .btn-primary {
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 30px;
  background: #0066ff;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.cta-image {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.cta-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
  }

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

  .cta-buttons .btn-primary {
    font-size: 16px;
    padding: 14px 28px;
  }
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  background: var(--brand-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before {
  transform: translateX(-50%);
}

.start-free,
.start-enterprise {
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.start-free {
  color: var(--brand-color);
  background: transparent;
  border: 2px solid var(--brand-color);
}

.start-free::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.start-free:hover {
  color: white;
  background: var(--brand-color);
}

.start-free:hover::before {
  transform: translateX(-50%);
}

.start-enterprise {
  color: white;
  background: var(--brand-color);
  border: none;
}

.start-enterprise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(0%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.start-enterprise:hover::before {
  transform: translateX(-50%);
}

/* Footer */
.footer {
  background-color: rgb(246 247 251 / 1);
  padding: 80px 0 40px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  width: 190px;
  height: 34px;
  margin-bottom: 36px;
}

.copyright {
  color: #666;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: -10px;
}

.footer-column {
  min-width: 230px;
}

.footer-column h3 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-family: RobotoRegular, sans-serif !important;
}

.footer-column ul li a:hover {
  color: #0066ff;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  margin-right: 8px;
  vertical-align: middle;
  color: #666;
}

.contact-link:hover .contact-icon {
  color: #007bff;
}

.contact-link i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-mail:before {
  content: "✉";
}

.icon-ticket:before {
  content: "🎫";
}

.icon-partner:before {
  content: "🤝";
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

  .footer-column {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-column {
    min-width: 140px;
  }
}

/* Certifications Section */
.certifications {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.certification-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  gap: 16px;
}

.certification-text {
  color: var(--text-primary);
  text-align: left;
}

.certification-item img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.certification-text div:first-child {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 13px;
}

.certification-text div:last-child {
  color: var(--text-secondary);
  font-size: 13px;
}

.certification-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  border-right: 1px dashed #dfe1e6;
}

.certification-item:nth-child(5)::after,
.certification-item:nth-child(10)::after {
  display: none;
}

@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
  }

  .certification-item:nth-child(3)::after,
  .certification-item:nth-child(6)::after,
  .certification-item:nth-child(9)::after {
    display: none;
  }

  .certification-item:nth-child(5)::after {
    display: block;
  }
}

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

  .certification-item:nth-child(2n)::after {
    display: none;
  }

  .certification-item:nth-child(2n-1)::after {
    display: block;
  }

  .certification-item img {
    height: 40px;
  }

  .certification-text div:first-child,
  .certification-text div:last-child {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certification-item img {
    height: 35px;
  }
}

@media (max-width: 1024px) {
  .certification-item {
    flex-direction: row;
    text-align: left;
    gap: 8px;
  }

  .certification-text {
    text-align: left;
  }
}

.feature-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 4rem 0;
  gap: 2rem;
}

.feature-icon-item {
  text-align: center;
  flex: 1;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    -45deg,
    var(--brand-color),
    var(--brand-hover) 50%,
    var(--brand-color)
  );
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 0;
  opacity: 0;
}

.feature-icon-item:hover .icon-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 106, 255, 0.2);
}

.feature-icon-item:hover .icon-wrapper::before {
  transform: translateX(-50%);
  opacity: 1;
}

.icon-wrapper i {
  font-size: 32px;
  color: var(--brand-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-icon-item:hover .icon-wrapper i {
  color: white;
}

.icon-deployment::before {
  content: "⚡";
}

.icon-zerotrust::before {
  content: "🔒";
}

.icon-management::before {
  content: "⚙️";
}

.feature-icon-item h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .feature-icons {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(245 249 255 / var(--tw-bg-opacity)) !important;
}

.social-proof .container {
  position: relative;
}

.social-proof-main {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px;
}

.social-proof-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
}

.social-proof-image {
  width: 50%;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}

.social-proof-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  width: 50%;
}

.social-proof-quote .client-logo {
  height: 50px;
  width: auto;
}

.social-proof-quote blockquote {
  font-size: 28px;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0 40px 0 0;
  font-weight: 500;
}

.social-proof h2 {
  text-align: center;
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 60px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .social-proof {
    padding: 60px 0;
  }

  .social-proof-main {
    padding: 24px;
  }

  .social-proof-content {
    flex-direction: column;
    padding: 24px;
    gap: 32px;
  }

  .social-proof-image {
    width: 100%;
  }

  .social-proof-quote {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .social-proof-quote blockquote {
    font-size: 20px;
  }
}

/* Customize Solution Section */
.customize-solution {
  padding: 120px 0;
  background-color: var(--background);
}

.customize-solution .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.customize-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.customize-text {
  flex: 0 1 500px;
}

.chat-icon {
  width: 60px;
  height: 40px;
  margin-bottom: 32px;
}

.chat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customize-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.customize-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.customize-text .btn {
  padding: 12px 24px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
}

.customize-image {
  flex: 0 1 500px;
}

.customize-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .customize-solution {
    padding: 80px 0;
  }

  .customize-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .customize-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .customize-text,
  .customize-image {
    max-width: 100%;
  }

  .customize-text h2 {
    font-size: 28px;
  }
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 800px;
}

.dropdown-content-inner {
  max-width: var(--container-width);
  margin: 20px auto;
  padding: 0 35px;
  width: 100%;
}

.dropdown-main {
  padding: 0 20px;
}

.dropdown-title {
  color: #0066ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-left: 20px;
}

.products-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.product-item {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  background: #f5f7ff;
}

.product-item h4 {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
  padding-right: 20px;
}

.product-item p {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.arrow-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #0066ff;
  font-size: 16px;
  opacity: 1;
  transition: all 0.3s ease;
}

.product-item:hover .arrow-icon {
  opacity: 1;
}

@media (max-width: 1200px) {
  .products-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .dropdown-content-inner {
    padding: 0 16px;
    margin: 14px auto;
  }

  .dropdown-main {
    padding: 0 10px;
  }

  .products-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-item {
    padding: 14px;
  }

  .dropdown-title {
    margin-left: 10px;
  }
}
