@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --primary-blue: #4169e1;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
  --section-padding: clamp(2rem, 5vw, 4rem);

  /* Fluid Typography */
  --fluid-min-width: 320;
  --fluid-max-width: 1200;
  --fluid-min-size: 16;
  --fluid-max-size: 18;
  --fluid-min-scale: 1.2;
  --fluid-max-scale: 1.25;
}

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

/* Responsive Typography */
html {
  font-size: calc(
    (var(--fluid-min-size) * 1px) +
      (var(--fluid-max-size) - var(--fluid-min-size)) *
      (100vw - (var(--fluid-min-width) * 1px)) /
      (var(--fluid-max-width) - var(--fluid-min-width))
  );
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

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

/* General header styles */
.header {
  background: #4169e1;
  padding: 0.8rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.85;
}

.get-quote-btn-nav {
  background-color: white !important;
  color: #4169e1 !important;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  font-weight: 500;
}

.get-quote-btn-nav:hover {
  opacity: 0.95;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4169e1;
    flex-direction: column;
    margin-top: 3.7rem;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 101;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .get-quote-btn-nav {
    margin-top: 1rem;
  }
}

/* Large Mobile */
@media (max-width: 576px) {
  .header {
    padding: 0.6rem 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    /* margin-top: 4rem; */
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .get-quote-btn-nav {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
  }

  .mobile-menu-btn {
    padding: 0.4rem;
  }

  .mobile-menu-btn span {
    width: 20px;
    height: 2px;
    margin: 4px 0;
  }

  .container {
    padding: 0 1rem;
  }
}

/* header styles ends */

/* Home styles start */
.home-hero {
  background-color: #f8f7fc;
  padding: 8rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.home-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-hero-content {
  max-width: 540px;
}

.home-hero-content h1 {
  font-size: 3rem;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.home-hero-content p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

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

.home-hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.request-demo-btn {
  display: inline-block;
  background-color: #4169e1;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.request-demo-btn:hover {
  background-color: #3557cc;
}

.home-hero-content .request-demo-btn {
  display: inline-block;
  background-color: #4169e1;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

@media (max-width: 1024px) {
  .home-hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 6rem 1rem 3rem;
    text-align: center;
  }

  .home-hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-hero-content {
    max-width: 100%;
  }

  .home-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .home-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .home-hero-image {
    order: 2;
  }

  .home-hero-image img {
    max-width: 100%;
  }
}

/* home hero section ends */
/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: #fff;
}

.benefits-title {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 3rem;
  font-weight: 600;
  text-align: center;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
  align-self: center;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.benefit-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits {
    padding: 3rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .benefits-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .benefit-card {
    padding: 0 1rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }
}
/* Benefits Section ends */

/* Offer Section */

.offer {
  padding: 5rem 0;
  background-color: #f7fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.offer h2 {
  font-size: 2rem;
  color: #1a202c;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer h3 {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.offer p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.offer strong {
  font-weight: 600;
  color: #1a202c;
}

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

  .offer h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .offer p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}

/* Offer Section ends */

/* Data Security Section */

.data-security {
  padding: 4rem 0;
  background-color: #fff;
}

.data-security h2 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 2rem;
  text-align: center;
}

.data-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.data-security-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.data-security-info p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.data-security-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.data-security .get-quote-btn {
  display: inline-block;
  background-color: #4169e1 ;
  color: #fff ;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.get-quote-btn:hover {
  background-color: #3557cc;
}

@media (max-width: 768px) {
  .data-security {
    padding: 2rem 1rem;
  }

  .data-security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .data-security h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .data-security-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .data-security.get-quote-btn {
    width: 100%;
    text-align: center;
  }
}

/* Data Security Section ends */

/* why privacy compliance matters section */

.why-privacy-compliance {
  padding: 4rem 0;
  background-color: #f8f7fc;
}

.why-privacy-compliance h2 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 3rem;
  font-weight: 600;
}

.privacy-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.privacy-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-card h3 {
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.privacy-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

@media (max-width: 768px) {
  .why-privacy-compliance {
    padding: 2.5rem 1rem;
  }

  .why-privacy-compliance h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .privacy-compliance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-card {
    gap: 0.75rem;
  }

  .privacy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .privacy-card p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
}

/* why privacy compliance matters section ends */

/* next steps section */
.next-steps {
  padding: 4rem 0;
  background-color: #fff;
}

.next-steps h2 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.next-steps > .container > p {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-card a {
  color: #4169e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.step-card a::after {
  content: '→';
  transition: transform 0.2s ease;
}

.step-card a:hover {
  text-decoration: underline;
}

.step-card a:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .next-steps {
    padding: 2.5rem 1rem;
  }

  .next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .next-steps > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    gap: 0.75rem;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    margin-bottom: 0.75rem;
  }
}
/* next steps section ends */
/* home styles end ends */

/* platform/pricing/about hero sections start */

.pricing-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/pricing-hero.png');
}

.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/pricing-hero.png');
}

.platform-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/platforms-hero.png');
}

.hero {
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px; /* Account for fixed header */
  position: relative;
  overflow: hidden;
}

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

.hero .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero p {
  color: #e6e6e6;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-buttons .btn {
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #4169e1;
  color: white;
  border: none;
  box-shadow: 0 0 15px rgba(65, 105, 225, 0.3);
}

.btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn.primary:hover {
  background-color: #3558c4;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
  transform: translateY(-2px);
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding-top: 60px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero p {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
}

/* platform/pricing/about hero sections ends */

/*pricing page styles start */
/* benefits section */
.benefits {
  padding: 5rem 0;
  background-color: #fff;
}

.benefits h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.benefits-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.benefit-card img {
  margin-top: 2rem;
  width: 80px;
  height: 80px;
  color: var(--primary-blue);
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0;
}

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

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

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

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

@media (max-width: 768px) {
  .benefits {
    padding: 3rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .benefits-description {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* benefits section ends */

/* pricing section */

.pricing {
  padding: 5rem 0;
  background-color: #f8f9ff;
}

.pricing h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pricing-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.02);
}

.package-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.features-list img {
  width: 20px;
  height: 20px;
}

.price {
  margin: 2rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price .period {
  color: var(--text-light);
}

.pricing-btn {
  background: white;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

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

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

.pricing-btn.featured:hover {
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
  }

  .pricing-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 3rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .pricing-description {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* pricing section ends */

/* get demo section */
.demo {
  padding: 4rem 0;
  background-color: #fff;
}

.demo h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.demo-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.submit-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #3558c4;
}

@media (max-width: 768px) {
  .demo {
    padding: 3rem 1.5rem;
  }

  .form-group {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}
/* get demo section ends */

/* pricing page styles ends */

/*platform page styles start*/

/* watch data section */
.watch-data {
  padding: 6rem 0;
  background-color: #fff;
}

.watch-data .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.watch-data .text-content {
  max-width: 570px;
}

.watch-data h2 {
  color: #1c1f2e;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.watch-data p {
  color: #4a5568;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.watch-data p:last-of-type {
  margin-bottom: 2rem;
}

.watch-data .btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: #4169e1;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.watch-data .btn:hover {
  background-color: #3558c4;
  transform: translateY(-2px);
}

.watch-data .image-content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.watch-data .image-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .watch-data {
    padding: 4rem 0;
  }

  .watch-data .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .watch-data .text-content {
    max-width: 100%;
    text-align: left;
    padding: 0 1rem;
  }

  .watch-data .image-content {
    order: -1;
    margin: 0 1rem;
  }
}
/* watch data section ends */

/* data discovery section */
.data-discovery {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.data-discovery .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.data-discovery .image-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.data-discovery .image-content img {
  width: 100%;
  height: auto;
  display: block;
}

.data-discovery .text-content {
  padding-left: 2rem;
}

.data-discovery h2 {
  color: #1c1f2e;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.data-discovery p {
  color: #4a5568;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 570px;
}

@media (max-width: 768px) {
  .data-discovery {
    padding: 4rem 0;
  }

  .data-discovery .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .data-discovery .image-content {
    margin: 0 1rem;
    order: -1;
  }

  .data-discovery .text-content {
    padding: 0 1rem;
    text-align: left;
  }
}
/* data discovery section ends */

/* access intelligence section */
.access-intelligence {
  padding: 6rem 0;
  background-color: #fff;
}

.access-intelligence .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.access-intelligence .text-content {
  max-width: 570px;
}

.access-intelligence h2 {
  color: #1c1f2e;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.access-intelligence p {
  color: #4a5568;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.book-demo {
  color: #4169e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.book-demo:hover {
  transform: translateX(4px);
}

.book-demo::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.book-demo:hover::after {
  transform: translateX(4px);
}

.access-intelligence .image-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
}

.access-intelligence .image-content img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .access-intelligence {
    padding: 4rem 0;
  }

  .access-intelligence .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .access-intelligence .text-content {
    padding: 0 1rem;
    max-width: 100%;
  }

  .access-intelligence .image-content {
    margin: 0 1rem;
    order: -1;
  }
}

/* access intelligence section ends */

/* least privilege section */
.least-privilege {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.least-privilege .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.least-privilege .image-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.least-privilege .image-content img {
  width: 100%;
  height: auto;
  display: block;
}

.least-privilege .text-content {
  max-width: 570px;
  padding-left: 2rem;
}

.least-privilege h2 {
  color: #1c1f2e;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.least-privilege p {
  color: #4a5568;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.book-demo {
  color: #4169e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.book-demo:hover {
  transform: translateX(4px);
}

.book-demo::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.book-demo:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .least-privilege {
    padding: 4rem 0;
  }

  .least-privilege .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .least-privilege .text-content {
    padding: 0 1rem;
    max-width: 100%;
  }

  .least-privilege .image-content {
    margin: 0 1rem;
    order: -1;
  }
}

/* least privilege section ends */

/* platform page styles end */

/* about page styles start */

/* Why us section */
.why-us {
  padding: var(--section-padding);
  background-color: var(--white);
  margin-top: 2rem;
}

.why-us h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}

.why-us p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us {
    padding: 2rem 1rem;
    margin-top: 1rem;
  }

  .why-us h2 {
    margin-bottom: 1rem;
    text-align: start;
  }

  .why-us p {
    text-align: start;
  }
}

/* Why us section ends */

/* Who we are section */
.who-we-are {
  padding: var(--section-padding);
  background-color: #f8f9fe;
}

.who-we-are h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}

.who-we-are .content {
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are p {
  color: var(--text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.who-we-are p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 2rem 1rem;
  }

  .who-we-are h2 {
    margin-bottom: 1.5rem;
  }

  .who-we-are p {
    margin-bottom: 1.25rem;
  }
}

/* Who we are section ends */

/* Our team section */
.team {
  padding: var(--section-padding);
  background-color: var(--white);
}

.team h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-member h4 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.team-member p {
  color: var(--text-light);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .member-image {
    width: 180px;
    height: 180px;
  }

  .team-intro {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
/* Our team section ends */

.contact {
  padding: var(--section-padding);
  background-color: #f8f9fe;
}

.contact h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: white;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #3558c4;
}

@media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem;
  }

  .contact-form {
    padding: 0 1rem;
  }
}

/* about page styles end */

/* footer section */
.footer {
  background-color: #1c1f2e;
  padding: 4rem 0 2rem;
  color: #fff;
}

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

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2rem;
  }

  .footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-section h4 {
    padding: 1rem 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .footer-section h4::after {
    content: '>';
    transform: rotate(90deg);
    transition: transform 0.3s;
  }

  .footer-section.active h4::after {
    transform: rotate(-90deg);
  }

  .footer-links {
    display: none;
    padding-bottom: 1rem;
  }

  .footer-section.active .footer-links {
    display: block;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}
/* footer section ends */

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
