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

:root {
  --primary-color: #8b0451;
  --primary-light: #e491a6;
  --primary-dark: #5a0236;
  --accent-color: #efbf04;
  --dark-bg: #191970;
  --light-bg: #fdfdfd;
  --white: #ffffff;
  --text-dark: #2e2e2e;
  --text-light: #fdfdfd;
  --text-muted: #696969;
  --border-color: #d3d3d3;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Oxygen,
    Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

.body {
  background-color: var(--white);
}

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

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

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===========================
   HEADER / NAVIGATION
=========================== */
.header {
  background-color: var(--white);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--accent-color);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
}

.nav-cta:hover {
  background-color: var(--primary-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Fixed hamburger menu toggle - nav.open affects hamburger inside nav */
.nav.open .hamburger {
  background: transparent;
}

.nav.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ===========================
   HERO SLIDER
=========================== */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 100%;
  min-height: 550px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 5rem;
  gap: 3rem;
}

.slide-content {
  flex: 1;
  max-width: 550px;
}

.slide-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.slide-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Slide backgrounds */
.slide-1 {
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--primary-color) 100%
  );
}

.slide-2 {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--accent-color) 100%
  );
}

.slide-3 {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.prev {
  left: 1.5rem;
}

.next {
  right: 1.5rem;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dots button.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.1);
}

/* ===========================
   PARTNERS SECTION
=========================== */
.partner {
  background: var(--light-bg);
  padding: 2.5rem 1.5rem;
}

.partner .container {
  max-width: 1200px;
  margin: 0 auto;
}

.partner_label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partner_list {
  display: flex;
  gap: 4rem;
  list-style-type: none;
  padding: 0.5rem;
  animation: scroll 20s linear infinite;
}

.partner_list li {
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.7;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.carousel:hover .partner_list {
  animation-play-state: paused;
}

/* ===========================
   FEATURES SLIDER
=========================== */
.slider-f {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
}

.slides-f {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide-f {
  flex-shrink: 0;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--dark-bg);
  padding: 2rem;
}

.slide-f-text {
  width: 350px;
  z-index: 5;
  background: var(--white);
  color: var(--text-dark);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin-left: 3rem;
  margin-right: -100px;
  position: relative;
}

.feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.slide-f-text h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.slide-f-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.slide-f-text a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.slide-f-text a:hover {
  color: var(--primary-color);
}

.img-f-bg {
  flex: 1;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: auto;
}

.img-f-bg img {
  width: 80%;
  height: 100%;
  object-fit: cover;
}

.arrow-f {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  z-index: 10;
  transition: var(--transition);
}

.arrow-f:hover {
  background: rgba(255, 255, 255, 0.25);
}

.prev-f {
  left: 1.5rem;
}

.next-f {
  right: 1.5rem;
}

.dots-f {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dots-f button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dots-f button.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.1);
}

/* ===========================
   BLOG SECTION
=========================== */
.blog-section {
  background: var(--white);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-color);
}

/* ===========================
   LEAP SECTION
=========================== */
.leap-section {
  background: var(--light-bg);
}

.leap-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.leap-text {
  flex: 1;
}

.leap-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.leap-text > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.leap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.leap-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.leap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.leap-list li strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.leap-list li p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.leap-image {
  flex: 1;
}

.leap-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   REVIEWS SECTION
=========================== */
.reviews-section {
  background: var(--white);
}

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

.review-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review-card.featured {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-card:not(.featured) .review-text {
  color: var(--text-dark);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 0.9375rem;
}

.review-author span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.review-card:not(.featured) .review-author span {
  color: var(--text-muted);
}

/* ===========================
   EXPERIENCE SECTION
=========================== */
.experience-section {
  background: var(--light-bg);
}

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

.experience-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.experience-text > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.experience-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.exp-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.exp-feature:hover {
  box-shadow: var(--shadow-md);
}

.exp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.exp-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.exp-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================
   INTEGRATIONS SECTION
=========================== */
.integrations-section {
  background: var(--white);
}

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

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.integration-card:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

.integration-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.integration-card span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.integrations-cta {
  text-align: center;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-bg) 100%
  );
  color: var(--white);
  text-align: center;
}

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

.cta-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-note {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background-color: var(--light-bg);
  color: var(--text-dark);
  padding: 4rem 1.5rem 1.5rem;
}

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

.footer-brand {
  text-align: left;
}

.footer-brand img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 250px;
}

.footer-col h3 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===========================
   ABOUT PAGE STYLES
=========================== */

/* About Hero */
.about-hero {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
}

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

.about-hero-content .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

.about-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* About Story */
.about-story {
  background-color: var(--white);
}

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

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.story-image {
  box-shadow: var(--shadow-md);
}
.story-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* About Numbers */
.about-numbers {
  background-color: var(--light-bg);
}

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

.number-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.number-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.number-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.number-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.number-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* About Team */
.about-team {
  background-color: var(--white);
}

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

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

.team-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.team-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.team-socials a:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* About Investors */
.about-investors {
  background-color: var(--light-bg);
}

.investors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.investor-logo {
  opacity: 0.6;
  transition: var(--transition);
}

.investor-logo:hover {
  opacity: 1;
}

.investor-logo img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.investor-logo:hover img {
  filter: grayscale(0%);
}

/* About Positions */
.about-positions {
  background-color: var(--white);
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.position-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.position-card:hover {
  background-color: var(--white);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.position-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.position-meta span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.position-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  color: var(--text-muted);
}

.position-arrow {
  font-size: 1.25rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.position-card:hover .position-arrow {
  transform: translateX(5px);
}

.positions-cta {
  text-align: center;
  margin-top: 2rem;
}

.positions-cta p {
  color: var(--text-muted);
}

.positions-cta a {
  color: var(--accent-color);
  font-weight: 600;
}

/* About Offices */
.about-offices {
  background-color: var(--light-bg);
}

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

.office-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.office-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.office-info {
  padding: 1.5rem;
}

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

.office-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.office-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background-color: rgba(0, 102, 204, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1024px) {
  .slide {
    padding: 2rem 3rem;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

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

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

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

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* ===========================
   ABOUT PAGE RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .about-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 2.25rem;
  }

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

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

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

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

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .position-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .position-meta span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 3rem 0;
  }

  .about-hero-content h1 {
    font-size: 1.75rem;
  }

  .investors-grid {
    gap: 2rem;
  }
}

/* ===========================
   PRODUCT PAGE STYLES
=========================== */

/* Product Hero */
.product-hero {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-bg) 100%
  );
  color: var(--white);
}

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

.product-hero-content .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

.product-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Companies Section */
.companies {
  background: var(--white);
  padding: 3rem 0;
}

.companies-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.company-logo {
  display: flex;
  justify-content: center;
  opacity: 0.6;
  transition: var(--transition);
}

.company-logo:hover {
  opacity: 1;
}

.company-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.company-logo:hover img {
  filter: grayscale(0%);
}

/* Product Feature Section */
.product-feature {
  background: var(--light-bg);
}

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

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Product Experience Section */
.product-experience {
  background: var(--white);
}

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

.experience-content .section-tag {
  margin-bottom: 0.5rem;
}

.experience-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.experience-content > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience-list li svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.experience-list li span {
  font-size: 1rem;
  color: var(--text-dark);
}

.experience-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Case Studies Section */
.case-studies {
  background: var(--light-bg);
}

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

.case-study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-study-image {
  height: 180px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.case-study-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.case-study-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.case-study-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.case-study-link:hover {
  color: var(--primary-color);
}

.case-study-link span {
  margin-left: 0.25rem;
}

/* Trusted Section */
.trusted {
  background: var(--white);
}

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

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

.trusted-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.trusted-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.trusted-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trusted-testimonial {
  background: var(--primary-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.trusted-testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Connect Apps Section */
.connect-apps {
  background: var(--light-bg);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.app-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.app-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.apps-cta {
  text-align: center;
}

.apps-cta .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.apps-cta .btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Product CTA Section */
.product-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-bg) 100%
  );
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

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

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

.product-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* ===========================
   PRODUCT PAGE RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .product-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-actions {
    justify-content: center;
  }

  .product-hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .experience-wrapper {
    grid-template-columns: 1fr;
  }

  .experience-image {
    order: -1;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .trusted-wrapper {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .product-hero-content h1 {
    font-size: 2rem;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .product-hero-content h1 {
    font-size: 1.75rem;
  }

  .product-hero-actions {
    flex-direction: column;
  }

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

  .trusted-stats {
    grid-template-columns: 1fr;
  }

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

  .product-cta-content h2 {
    font-size: 1.75rem;
  }

  .product-cta-actions {
    flex-direction: column;
  }
}

/* ===========================
   PRICING PAGE STYLES
=========================== */

/* Pricing Hero */
.pricing-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  text-align: center;
}

.pricing-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-badge {
  display: inline-block;
  background: #e8f1ff;
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 16px 0 12px 0;
  color: #0f1419;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.toggle-label {
  font-size: 16px;
  color: #596274;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label.active {
  color: #0f1419;
  font-weight: 600;
}

.toggle-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  display: block;
  width: 50px;
  height: 28px;
  background: #d9e1e9;
  border-radius: 14px;
  position: relative;
  transition: background 0.3s ease;
}

.toggle-slider::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked ~ .toggle-slider {
  background: var(--primary-dark);
}

.toggle-switch input:checked ~ .toggle-slider::after {
  left: 24px;
}

.save-badge {
  background: #fff3cd;
  color: var(--accent-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
  padding: 80px 20px;
  background: #ffffff;
}

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

.pricing-card {
  border: 2px solid #e8ecf1;
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  background: #ffffff;
}

.pricing-card:hover {
  border-color: var(--dark-bg);
  box-shadow: 0 12px 24px rgba(0, 82, 204, 0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary-dark);
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  box-shadow: 0 12px 24px rgba(0, 82, 204, 0.12);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #03193b 0%, #5a0236 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0 0 8px 0;
}

.pricing-card-header p {
  font-size: 14px;
  color: #596274;
  margin: 0;
}

.pricing-card-price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card-price .currency {
  font-size: 18px;
  color: #0f1419;
  font-weight: 600;
}

.pricing-card-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #0f1419;
}

.pricing-card-price .period {
  font-size: 16px;
  color: #596274;
}

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

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #0f1419;
  border-bottom: 1px solid #e8ecf1;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li.disabled {
  color: #a6b1ba;
}

.pricing-features-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #28a745;
}

.pricing-features-list li.disabled svg {
  color: #d9e1e9;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  margin-top: 24px;
  background: #f0f2f5;
  color: #0f1419;
  border: 2px solid #e8ecf1;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #e8ecf1;
  border-color: #c5d0da;
}

.pricing-btn.primary {
  background: linear-gradient(135deg, #8f7409 0%, #efbf04 100%);
  color: white;
  border-color: var(--border-color);
}

.pricing-btn.primary:hover {
  background: linear-gradient(135deg, #9b883b 0%, #c9a102 100%);
  border-color: var(--border-color);
}

/* Features Comparison Table */
.pricing-features {
  padding: 80px 20px;
  background: #f9fafb;
}

.features-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.features-table thead {
  background: #f5f7fa;
}

.features-table th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #0f1419;
  border-bottom: 2px solid #e8ecf1;
}

.features-table td {
  padding: 16px;
  border-bottom: 1px solid #e8ecf1;
  font-size: 15px;
  color: #596274;
}

.features-table tbody tr:hover {
  background: #f9fafb;
}

.features-table .check,
.features-table .cross {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  display: block;
}

.features-table .check {
  color: #28a745;
}

.features-table .cross {
  color: #d9e1e9;
}

/* Try Free CTA */
.pricing-try-free {
  padding: 60px 20px;
  background: var(--white);
}

.try-free-card {
  background: linear-gradient(135deg, #5a0236 0%, #003d99 100%);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.try-free-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.try-free-content p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.try-free-card .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ Section */
.pricing-faq {
  padding: 80px 20px;
  background: #f9fafb;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #0f1419;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: #596274;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Case Studies */
.pricing-case-studies {
  padding: 80px 20px;
  background: white;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-study-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e8ecf1;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  border-color: #0052cc;
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.08);
  transform: translateY(-4px);
}

.case-study-logo {
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.case-study-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-study-card blockquote {
  font-size: 16px;
  font-style: italic;
  color: #0f1419;
  margin: 0 0 24px 0;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.case-study-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  font-size: 32px;
  color: var(--dark-bg);
  opacity: 0.3;
  line-height: 1;
}

.case-study-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-study-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.case-study-author strong {
  display: block;
  font-size: 15px;
  color: #0f1419;
}

.case-study-author span {
  display: block;
  font-size: 14px;
  color: #596274;
}

/* Integrations Section */
.pricing-integrations {
  padding: 80px 20px;
  background: #f9fafb;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.integration-item {
  background: white;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.3s ease;
  text-align: center;
}

/* CTA Section */
.pricing-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e4ebf5 0%, #5a0236 100%);
  text-align: center;
  color: white;
}

.pricing-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.pricing-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 32px 0;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .try-free-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 20px;
  }

  .pricing-hero h1 {
    font-size: 32px;
  }

  .pricing-hero p {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: scale(1) translateY(-4px);
  }

  .pricing-card-price .amount {
    font-size: 36px;
  }

  .features-table-wrapper {
    overflow-x: auto;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .try-free-card {
    padding: 32px 24px;
  }

  .pricing-hero {
    padding: 60px 20px;
  }

  .pricing-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 40px 20px;
  }

  .pricing-hero h1 {
    font-size: 24px;
  }

  .pricing-hero p {
    font-size: 14px;
  }

  .pricing-toggle {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .pricing-card-price .amount {
    font-size: 28px;
  }

  .pricing-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .try-free-card {
    padding: 24px 16px;
    gap: 16px;
  }

  .try-free-content h2 {
    font-size: 20px;
  }

  .try-free-content p {
    font-size: 14px;
  }

  .case-studies-grid {
    gap: 16px;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .integration-item {
    padding: 16px;
    min-height: 80px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px 16px;
  }

  .features-table th,
  .features-table td {
    padding: 12px 8px;
    font-size: 12px;
  }
}

/* ===========================
   CONTACT PAGE STYLES
=========================== */

/* Contact Hero */
.contact-hero {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text_dark);
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text_dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--text_dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text_dark);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

/* Offices Section */
.offices-section {
  background-color: var(--light-bg);
  padding: 5rem 0;
}

.offices-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offices-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text_dark);
  text-align: center;
  margin-bottom: 3rem;
}

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

.office-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.office-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text_dark);
  margin-bottom: 1rem;
}

.office-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.office-card a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.office-card a:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text_dark);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--light-bg);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text_dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--white);
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.25rem;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: var(--white);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Social Section */
.social-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.social-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.social-container p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Contact CTA */
.contact-cta {
  background: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text_dark);
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   RESPONSIVE STYLES
=========================== */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 1.5rem;
  }

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

  .social-links {
    gap: 1rem;
  }

  .social-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-container {
    gap: 2rem;
  }

  .offices-container h2,
  .faq-container h2,
  .social-container h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-answer p {
    padding: 1rem;
  }

  .contact-cta h2 {
    font-size: 1.75rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }
}

/* ===========================
   404 ERROR PAGE STYLES
=========================== */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--primary-color) 100%
  );
}

.error-404 .container {
  width: 100%;
}

.error-content {
  text-align: center;
  color: var(--white);
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

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

.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.error-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.error-actions .btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.error-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
}

.error-actions .btn-primary:hover {
  background-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.error-actions .btn-secondary {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.error-actions .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.error-suggestions {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.error-suggestions h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.error-suggestions ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}

.error-suggestions li {
  padding: 0.5rem 0;
}

.error-suggestions a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.error-suggestions a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

/* ===========================
   RESPONSIVE STYLES
=========================== */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

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

  .slide {
    padding: 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 1.5rem;
  }

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

  .social-links {
    gap: 1rem;
  }

  .social-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }

  /* 404 Responsive */
  .error-code {
    font-size: 6rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .error-actions .btn {
    width: 100%;
  }

  .error-suggestions ul {
    grid-template-columns: 1fr;
  }

  .error-suggestions {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-container {
    gap: 2rem;
  }

  .offices-container h2,
  .faq-container h2,
  .social-container h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-answer p {
    padding: 1rem;
  }

  .contact-cta h2 {
    font-size: 1.75rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }

  /* 404 Responsive */
  .error-code {
    font-size: 4rem;
  }

  .error-title {
    font-size: 1.5rem;
  }

  .error-description {
    font-size: 0.95rem;
  }

  .error-suggestions h3 {
    font-size: 1rem;
  }

  .error-suggestions a {
    font-size: 0.9rem;
  }
}

/* mobile */

.slide-btns-mobile {
  display: none;
}

/* 
============
====others ======
===============
 */

@media (max-width: 560px) {
  .slide {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .slide-btns {
    display: none;
  }

  .slide-content {
    order: 1;
    width: 100%;
  }

  .slide-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0;
  }

  .slide-btns-mobile {
    display: block;
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .slide-image img {
    width: 70%;
    max-width: 260px;
  }

  .slide-btns-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .arrow-f,
  .dots,
  .arrow {
    display: none;
  }

  .slide-f {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1.2rem;
    min-height: 70vh;
  }

  .slide-f-text {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #30051e;
  }

  .slide-f-text h1 {
    font-size: 1.7rem;
  }

  .slide-f-text p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .slide-f-text a {
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }

  .img-f-bg {
    display: none;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .leap-section {
    padding: 1.3rem 0;
  }
  .leap-image {
    display: none;
  }
}

/* =============
===== mobile nav bar ===
================== */

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

  .nav-toggle {
    display: block;
  }

  .nav .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
  }

  .nav.open .nav-list {
    left: 0;
  }

  .nav.open .hamburger {
    background: transparent;
  }

  .nav.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .nav-list a {
    display: block;
    padding: 1rem;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }
}
