/* ===== Design System Tokens ===== */
:root {
  /* Brand colors */
  --if-blue: #236cc0;
  --if-blue-light: #3588f2;
  --if-teal: #038387;
  --if-green: #81bc06;
  --if-pink: #d76ebc;
  --if-gold: #f5bf4e;

  /* Text colors */
  --if-text-primary: #1a1a1a;
  --if-text-secondary: #555;
  --if-text-muted: #909090;
  --if-text-dark-gray: #444;

  /* Background colors */
  --if-white: #fff;
  --if-bg-light: #FBFBF9;
  --if-bg-light-blue: #eef6ff;
  --if-bg-input-blue: #E8F2FC;

  /* Border / UI grays */
  --if-gray-600: #909090;
  --if-gray-400: #999;
  --if-gray-300: #d4d4d4;
  --if-gray-200: #e8e8e8;
  --if-gray-100: #EAEAEA;
  --if-border: #DEE3E9;

  /* Third-party brand */
  --if-whatsapp: #25D366;

  /* Border radius */
  --if-radius-xs: 4px;
  --if-radius-sm: 8px;
  --if-radius-md: 12px;
  --if-radius-lg: 16px;
  --if-radius-pill: 100px;

  /* Spacing */
  --if-space-xs: 4px;
  --if-space-sm: 8px;
  --if-space-md: 16px;
  --if-space-lg: 24px;
  --if-space-xl: 32px;
  --if-space-2xl: 48px;
  --if-space-3xl: 64px;
  --if-space-4xl: 80px;

  /* Shadows */
  --if-shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --if-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --if-shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

  /* Transitions */
  --if-transition-fast: 0.15s ease;
  --if-transition-base: 0.2s ease;
  --if-transition-slow: 0.3s ease;
}

a, button, input, select, textarea, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}


.inner_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner_content ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-primary);
}

  .inner_content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--if-blue);
  }

/* ===== Typography ===== */
@font-face {
  font-family: 'Ploni';
  src: url('/css/fonts/ploni-regular-aaa.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ploni';
  src: url('/css/fonts/ploni-demibold-aaa.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600&display=swap');

html {
  overflow-x: clip;
}

*, *::before, *::after {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Ploni', 'Heebo', 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--if-text-primary);
  line-height: 1.2;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

p {
  margin-bottom: 0; /* mine */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 { font-size: 64px; line-height: 1.15; }
h2 { font-size: 56px; line-height: 1; }
h3 { font-size: 40px; line-height: 1.2; }
h4 { font-size: 24px; line-height: 1.35; }

.sub-title {
  font-size: 22px;
  line-height: 1.5;
}

.text-large { font-size: 20px; }
.text-small { font-size: 15px; }
.text-muted-custom { color: var(--if-gray-600); }

.page_content {
  padding: 0 0 64px;
  margin-top: 0;
}

.page_content>.container {
  max-width: 735px;
}

.page_content h2 {
  font-size: 40px;
  /*text-align: right;*/
  margin-bottom: 16px;
}

.page_content p, .inner_content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-dark-gray);
  /*text-align: right;*/
  margin-bottom: 20px;
}

/**  HP tmp youtube **/
.video-wrapper {
  max-width: 1000px; margin: 0 auto;
  text-align: center;
  position: relative;
  padding-bottom: 56.25%;
  /* Aspect Ratio 16:9 (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  /* Optional: Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Optional: Soft shadow */
}

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }



/* ===== Buttons ===== */
.btn-if-primary {
  background-color: var(--if-blue);
  color: var(--if-white);
  border: none;
  border-radius: var(--if-radius-pill);
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
  -webkit-text-size-adjust: 100%;
}

.btn-if-primary:hover {
  background-color: #1a5299;
  background-color: color-mix(in srgb, var(--if-blue) 70%, #000);
  color: var(--if-white);
  text-decoration: none;
}

.btn-if-primary,
.btn-if-outline {
  text-decoration: none;
}

.btn-if-outline {
  background-color: transparent;
  color: var(--if-text-primary);
  border: 1.5px solid var(--if-gray-300);
  border-radius: var(--if-radius-pill);
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background-color 0.2s;
  -webkit-text-size-adjust: 100%;
}

.btn-if-outline:hover {
  border-color: var(--if-text-primary);
  color: var(--if-text-primary);
  text-decoration: none;
}

.btn-if-sm {
  padding: 8px 12px;
  font-size: 15px !important;
  line-height: 1;
}

/* ===== Top Bar Wrap ===== */
.top-bar-wrap {
  background: var(--if-white);
  z-index: 1030;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background-color: var(--if-bg-light-blue);
  padding: 16px 0;
  font-size: 15px;
  position: relative;
}

.announcement-bar a {
  color: var(--if-blue);
  font-weight: 600;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

.announcement-bar .btn-close-announce {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--if-text-primary);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

@media (max-width: 991px) {
  .top_message_text {max-width: 85%;margin: 0 auto;}
}

/* ===== Navbar ===== */
.navbar-if {
  background: var(--if-white);
  box-shadow: none;
  padding: 12px 0;
  position: relative;
}

.navbar-if .navbar-brand {
  margin-left: 24px;
}

.navbar-if .navbar-brand img {
  height: 23px;
}

.navbar-nav-main {
  gap: 4px;
}

.navbar-if .nav-link,
.navbar-if .nav-link:focus,
.navbar-if .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

.navbar-if .nav-link {
  color: var(--if-text-primary);
  font-size: 17px;
  padding: 8px 12px !important;
  transition: color 0.2s;
}

.navbar-if .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar-if .dropdown-toggle::after {
  display: none;
}

.navbar-if .dropdown-toggle .bi-chevron-down,
.navbar-if .dropdown-toggle .nav-chevron {
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-if .dropdown.show .dropdown-toggle .bi-chevron-down,
.navbar-if .dropdown-toggle[aria-expanded="true"] .bi-chevron-down,
.navbar-if .dropdown.show .dropdown-toggle .nav-chevron,
.navbar-if .dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: scaleY(-1);
}

.navbar-if .nav-link:hover,
.navbar-if .nav-link.active {
  color: var(--if-blue);
}

.navbar-nav-end .nav-link-secondary.active {
  color: var(--if-blue);
}

.navbar-nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.navbar-btn-group {
  display: contents;
}

.navbar-nav-end .nav-link-secondary {
  color: var(--if-text-primary);
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 8px;
}

.navbar-nav-end .nav-link-secondary:hover {
  color: var(--if-blue);
}

.navbar-nav-end .nav-divider {
  width: 1px;
  height: 24px;
  background-color: var(--if-gray-100);
  flex-shrink: 0;
}

.navbar-nav-end .nav-whatsapp {
  color: var(--if-whatsapp);
  font-size: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.navbar-nav-end .nav-whatsapp:hover {
  opacity: 0.8;
}

.navbar-if .btn-login {
  background-color: transparent;
  color: var(--if-text-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--if-radius-pill);
  padding: 8px 12px;
  border: 1.5px solid var(--if-gray-300);
  transition: border-color 0.2s, color 0.2s;
}

.navbar-if .btn-login:hover {
  border-color: var(--if-text-primary);
  color: var(--if-text-primary);
}

.navbar-mobile-actions {
  display: none;
}

.nav-whatsapp-mobile {
  display: none;
}

/* ===== Mega Menu ===== */
.navbar-if > .container {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.dropdown-mega {
  position: static;
}

.mega-menu {
  width: calc(100% - 48px);
  border: 1px solid #d9d9d9;
  border-radius: var(--if-radius-sm);
  box-shadow: var(--if-shadow-lg);
  padding: 40px;
  left: 24px !important;
  right: 24px !important;
  top: 100% !important;
  margin-top: 24px;
  background: var(--if-white);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mega-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-inner {
  display: flex;
  gap: 0;
  width: 100%;
  padding: 0 24px;
}

.mega-col {
  flex: 1;
}

.mega-col-solutions {
  flex: 1;
}

.mega-col-sectors {
  flex: 1;
}

.mega-divider {
  width: 1px;
  background-color: var(--if-gray-100);
  align-self: stretch;
  margin: 0 80px;
}

.mega-col-header {
  margin-bottom: 24px;
}

.mega-col-title {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  display: block;
  padding: 0;
  margin-bottom: 8px;
}

.mega-col-line {
  height: 2px;
  border-radius: 1px;
}

.mega-col-line-pink {
  background-color: var(--if-pink);
}

.mega-col-line-gold {
  background-color: var(--if-gold);
}
.mega-col-line-green {
  background-color: #2AB5B2;
}

.mega-sectors-grid {
  display: flex;
  gap: 32px;
}

.mega-sectors-grid .mega-list {
  flex: 1;
  gap: 16px;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border-radius: var(--if-radius-xs);
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  direction: rtl;
  transition: background-color 0.15s;
}

.mega-list li a:hover {
  background-color: transparent;
  color: var(--if-blue);
}

.mega-list li a:hover i {
  color: var(--if-blue);
}

.mega-list li a i {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

.mega-list li a span {
  white-space: nowrap;
}

.mega-contact-info {
  font-size: 14px;
  color: var(--if-gray-600);
  direction: ltr;
  display: inline-block;
}

/* Mega menu responsive */
@media (max-width: 1199px) {
  .mega-menu {
    width: 100%;
    transform: none;
    right: 0;
    left: 0;
    padding: 20px;
  }

  .mega-menu-inner {
    flex-direction: column;
  }

  .mega-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }

  .mega-sectors-grid {
    flex-direction: column;
    gap: 16px;
  }

  .mega-list li a span {
    white-space: normal;
  }
}

/* ===== Section Spacing ===== */
body > section + section {
  margin-top: 40px;
}

/* ===== Hero ===== */
.hero-section {
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}

.hero-title {
  text-align: right;
  margin-bottom: 32px;
}

.hero-section h1 {
  font-size: 64px;
  line-height: 1;
  margin: 0 0 24px;
}

.hero-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-section .hero-desc {
  color: var(--if-text-primary);
  max-width: 630px;
  text-align: right;
  line-height: 1.4;
  margin: 0;
}

.hero-section .hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
  padding-bottom: 0;
}

.hero-section .hero-buttons .btn-if-primary,
.hero-section .hero-buttons .btn-if-outline {
  font-size: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.decorative-bar {
  position: absolute;
  width: 200px;
  height: 8px;
  border-radius: var(--if-radius-xs);
}

.decorative-bar-green {
  background-color: var(--if-green);
}

.decorative-bar-pink {
  background-color: var(--if-pink);
}

.hero-bar {
  position: absolute;
  height: 4px;
  border-radius: 0;
}

.hero-bar-teal {
  background-color: var(--if-green);
  width: 17.1vw;
  top: 69px;
  right: -8vw;
}

.hero-bar-navy {
  background-color: var(--if-blue);
  width: 10.3vw;
  top: 201px;
  right: 0;
}

.hero-bar-pink {
  background-color: var(--if-pink);
  width: 50vw;
  top: 133px;
  left: 0;
}

.hero-bar-green {
  background-color: var(--if-gold);
  width: 10.3vw;
  top: 300px;
  left: 0;
}

/* ===== Browser Frame ===== */
.browser-frame {
  background: var(--if-white);
  border-radius: var(--if-radius-md) var(--if-radius-md) 0 0;
  box-shadow: none;
  overflow: hidden;
  border: 1px solid var(--if-gray-200);
}

.browser-frame-bar {
  background: var(--if-bg-light);
  padding: 8px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--if-gray-200);
}

.browser-frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.browser-frame-dot:nth-child(1) { background: #ff5f57; }
.browser-frame-dot:nth-child(2) { background: #febc2e; }
.browser-frame-dot:nth-child(3) { background: #28c840; }

.browser-frame img {
  width: 100%;
  display: block;
  transition: opacity 0.2s;
}

.showcase-card:hover .browser-frame img {
  opacity: 0.2;
}

/* ===== Product Screenshot ===== */
.product-screenshot {
  padding: 0;
  margin-top: 0 !important;
}

.product-screenshot .product-img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  border-radius: var(--if-radius-md);
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

/* ===== Clients Strip ===== */
.clients-strip {
  padding: 80px 0;
  text-align: center;
  margin-top: 0 !important;
}

.clients-strip h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

.clients-strip .client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clients-strip .client-logos img {
  height: auto;
  max-height: 56px;
  width: 100%;
  flex: 1 1 0;
  object-fit: contain;
}

.clients-strip .client-logos img[aria-hidden="true"] {
  display: none;
}


.client-logo {text-align: center;}


/* ===== How It Works ===== */
.how-it-works {
  padding: 80px 0;
  background-color: var(--if-bg-light);
  margin: 0 32px;
  border-radius: var(--if-radius-lg);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  gap: 0;
}

.step-card {
  text-align: center;
  flex: 1;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--if-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  position: relative;
}

.step-icon-wrap i {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-green {
  background-color: transparent;
  color: var(--if-green);
  border: 2px solid var(--if-green);
}

.step-icon-blue {
  background-color: transparent;
  color: var(--if-blue);
  border: 2px solid var(--if-blue);
}

.step-icon-navy {
  background-color: transparent;
  color: var(--if-teal);
  border: 2px solid var(--if-teal);
}

.step-icon-pink {
  background-color: transparent;
  color: var(--if-pink);
  border: 2px solid var(--if-pink);
}

.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--if-white);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid #FBFBF9;
}

.step-badge-green { background-color: var(--if-green); border: 2px solid #FBFBF9; }
.step-badge-blue { background-color: var(--if-blue); border: 2px solid #FBFBF9; }
.step-badge-navy { background-color: var(--if-teal); border: 2px solid #FBFBF9; }
.step-badge-pink { background-color: var(--if-pink); border: 2px solid #FBFBF9; }

.step-card h4 {
  margin-bottom: 0;
  font-size: 19px;
}

.step-card p {
  color: var(--if-text-primary);
  font-size: 16px;
  line-height: 1.4;
  padding: 0 16px;
  margin-bottom: 0;
  width: 100%;
}

.step-connector {
  position: absolute;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.step-connector:nth-of-type(2) { left: 75%; }
.step-connector:nth-of-type(4) { left: 50%; }
.step-connector:nth-of-type(6) { left: 25%; }

.step-arrow-img {
  width: 160px;
  height: auto;
}

/* ===== Document Showcase ===== */
.document-showcase {
  padding: 80px 0;
}

.document-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--if-text-primary);
  line-height: 1.4;
}

.showcase-subtitle {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 700px;
}

.showcase-cta {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.showcase-cta .btn-if-outline {
  line-height: 1;
}

.showcase-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.showcase-cards {
  display: flex;
  gap: 24px;
  flex: 1;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 4px;
  margin: -4px;
}

.showcase-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  min-width: 0;
  position: relative;
}

.showcase-card .browser-frame {
  height: 517px;
  overflow: hidden;
  background: var(--if-white);
  position: relative;
  border: 2px solid #DEE3E9;
  border-radius: var(--if-radius-xs);
  transition: border-color 0.2s ease;
}

.showcase-card:hover .browser-frame {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #3588F2 0%, #F5BF4E 37%, #D76EBC 63%, #62C554 100%) border-box;
}

.showcase-card .card-label {
  text-align: center;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--if-text-primary);
}

.showcase-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--if-blue);
  color: var(--if-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s, background-color 0.2s;
  z-index: 3;
  border: none;
  border-radius: var(--if-radius-pill);
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.showcase-card-btn:hover {
  background-color: #1a5299;
  background-color: color-mix(in srgb, var(--if-blue) 70%, #000);
  color: var(--if-white);
  text-decoration: none;
}

.showcase-card:hover .showcase-card-btn {
  opacity: 1;
}

.showcase-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--if-gray-300);
  background: var(--if-white);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background-color 0.2s;
  flex-shrink: 0;
  color: var(--if-text-primary);
  padding: 0;
  line-height: 1;
}

.showcase-arrow:hover:not(:disabled) {
  border-color: var(--if-text-primary);
}


/* ===== Pricing ===== */
.pricing-section {
  padding: 80px 0;
  background-color: var(--if-bg-light);
  margin: 0 32px;
  border-radius: var(--if-radius-lg);
}

.pricing-section .container {
  max-width: 900px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  margin-bottom: 16px;
}

.pricing-cards-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.pricing-cards-col {
  flex: 1;
  max-width: 50%;
}

.pricing-card {
  background: var(--if-white);
  border-radius: var(--if-radius-lg);
  padding: 0 24px 24px;
  border: 1px solid var(--if-gray-200);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card .plan-name-bar {
  background: #1a1a1a;
  color: var(--if-white);
  font-size: 24px;
  font-weight: 600;
  padding: 12px 24px;
  margin: 0 -24px 0;
  text-align: center;
  align-self: stretch;
}

.pricing-card .plan-desc {
  color: var(--if-text-primary);
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.4;
  min-height: 45px;
}

.pricing-card .plan-price-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pricing-card .plan-price {
  font-size: 56px;
  font-weight: 400;
  color: var(--if-text-primary);
  margin-top: 40px;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-card .plan-period {
  color: var(--if-text-primary);
  font-size: 16px;
  margin-bottom: 24px;
}

.pricing-card .form-counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  max-width: 260px;
  padding: 4px 0;
}

.pricing-card .form-counter button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--if-gray-600);
  margin: 0 8px;
  width: 32px;
  flex-shrink: 0;
  height: 32px;
  line-height: 1;
}

.pricing-card .form-counter button:hover {
  color: var(--if-blue);
}

.pricing-card .form-counter .counter-content {
  font-size: 16px;
  min-width: 120px;
  text-align: center;
  margin: 0;
  flex: 1;
}

.pricing-card .form-counter .counter-value {
  font-weight: 400;
}

.pricing-card .form-counter .counter-label {
  color: var(--if-text-primary);
}

.pricing-card .video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--if-text-primary);
  text-decoration: underline;
  font-size: 16px;
  margin-bottom: 28px;
}

.pricing-card .video-link:hover {
  color: var(--if-blue);
}

/* --- Video Modal --- */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}
.video-modal-overlay.active {
  display: flex;
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 860px;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  left: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.video-modal-close:hover {
  opacity: 0.7;
}
.video-modal-player {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pricing-card .pricing-buttons {
  display: flex;
  gap: 24px;
  align-self: stretch;
  margin-top: auto;
}

.pricing-card .pricing-buttons .btn-if-primary,
.pricing-card .pricing-buttons .btn-if-outline {
  flex: 1;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 8px;
  line-height: 1;
}

/* ===== Custom Solution ===== */
.custom-solution {
  padding: 40px 0;
  text-align: center;
}

.custom-solution-card {
  background: var(--if-white);
  border: 1px solid #eaeaea;
  border-radius: var(--if-radius-lg);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.custom-solution-card h3 {
  font-size: 28px;
}

.custom-solution-card p {
  margin-bottom: 24px;
}

.custom-solution h3 {
  margin-bottom: 16px;
}

.custom-solution p {
  color: var(--if-text-primary);
  font-size: 18px;
  max-width: 700px;
  margin: 8px auto 24px;
  line-height: 1.6;
}

.custom-solution .solution-buttons,
.custom-solution-card .solution-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.custom-solution .solution-buttons .btn-if-primary,
.custom-solution .solution-buttons .btn-if-outline,
.custom-solution-card .solution-buttons .btn-if-primary,
.custom-solution-card .solution-buttons .btn-if-outline {
  padding: 8px 24px;
  font-size: 18px;
  line-height: 1;
}

/* ===== Pricing Page ===== */
.pricing-page-cards {
  padding: 0;
  margin-top: 0;
}

.pricing-cards-row-3 {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 0;
}

.pricing-cards-row-3 .pricing-cards-col {
  flex: 1;
  max-width: 33.333%;
  display: flex;
}

.pricing-cards-row-3 .pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pricing-cards-row-3 .pricing-card-custom {
  flex: none;
  width: 100%;
  height: fit-content;
}

.custom-contact-btn {
  align-self: stretch;
}

.pricing-card-custom .plan-period {
  margin-bottom: 0;
}

.pricing-cards-row-3 .pricing-card .plan-name-bar {
  align-self: stretch;
}

.pricing-cards-row-3 .pricing-card .pricing-buttons {
  margin-top: auto;
  align-self: stretch;
}


.custom-price-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
}

.plan-price-custom {
  font-size: 56px;
  font-weight: 400;
  color: var(--if-text-primary);
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-full-details {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 16px;
}

.pricing-full-details .btn-if-outline {
  font-size: 18px;
  padding: 10px 32px;
}

/* Pricing Details Modal */
.pricing-details-modal {
  border-radius: var(--if-radius-lg);
  padding: 24px;
  border: none;
}

.pricing-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.pricing-modal-header h2 {
  margin-bottom: 0;
}

.pricing-modal-close {
  margin: 0;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}
.pricing-modal-close:focus,
.pricing-modal-close:active {
  outline: none;
  box-shadow: none;
}

.pricing-details-modal h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.pricing-details-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-details-table th {
  font-size: 16px;
  font-weight: 600;
  color: var(--if-text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--if-gray-200);
  text-align: right;
}

.pricing-details-table th:last-child {
  text-align: left;
}

.pricing-details-table td {
  font-size: 16px;
  color: var(--if-text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--if-gray-200);
  text-align: right;
}

.pricing-details-table td:last-child {
  text-align: left;
}

.pricing-details-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== Pricing FAQ ===== */
.pricing-faq {
  padding: 80px 0;
  margin: 0;
}

.pricing-faq .container {
  max-width: 640px;
}

.pricing-faq-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 24px;
}

.faq-expand-all-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.faq-expand-all-btn {
  background: transparent;
  border: 1.5px solid var(--if-gray-300);
  border-radius: var(--if-radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--if-text-primary);
  cursor: pointer;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s;
}

.faq-expand-all-btn:hover {
  border-color: var(--if-text-primary);
}

.faq-expand-all-btn span {
  min-width: 70px;
  text-align: center;
  display: inline-block;
}

.faq-expand-all-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.faq-expand-all-btn.expanded i {
  transform: scaleY(-1);
}

.pricing-faq .accordion-item {
  border: none;
  border-bottom: 1px solid var(--if-gray-200);
  margin-bottom: 0;
  border-radius: 0 !important;
}

.pricing-faq .accordion-item:first-child {
  border-top: 1px solid var(--if-gray-200);
}

.pricing-faq .accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: var(--if-text-primary);
  padding: 16px 0;
  margin-bottom: 0;
  background: none;
  box-shadow: none;
  border-radius: 0 !important;
}

.pricing-faq .accordion-button:not(.collapsed) {
  color: var(--if-text-primary);
  background: none;
}

.pricing-faq .accordion-button::after {
  content: "";
  background-image: none;
  width: 20px;
  height: 20px;
  margin-right: auto;
  margin-left: 0;
  position: relative;
  flex-shrink: 0;
}

.pricing-faq .accordion-button::before,
.pricing-faq .accordion-button::after {
  display: block;
}

.pricing-faq .accordion-button::after {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.pricing-faq .accordion-button:not(.collapsed)::after {
  transform: scaleY(-1);
}

.pricing-faq .accordion-body {
  padding: 0 0 16px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--if-text-primary);
}

.inner-page-subtitle {
  font-size: 20px;
  color: var(--if-text-primary);
  text-align: center;
  margin-bottom: 40px;
}

/* ===== Bottom CTA ===== */
.bottom-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

.bottom-cta-divider {
  height: 1px;
  background-color: var(--if-gray-200);
  margin: 0 32px 0;
}

.bottom-cta h2 {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 40px;
}

.bottom-cta .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.bottom-cta .cta-buttons .btn-if-primary,
.bottom-cta .cta-buttons .btn-if-outline {
  padding: 12px 24px;
}

.bottom-cta .decorative-bar-green {
  top: 50%;
  bottom: auto;
  right: calc(-50vw + 50%);
  left: calc(100% - 28%);
  width: auto;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 0;
}

.bottom-cta .decorative-bar-pink {
  top: 50%;
  bottom: auto;
  left: calc(-50vw + 50%);
  right: calc(100% - 28%);
  width: auto;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 0;
}

/* ===== Footer ===== */
.footer-section {
  background: var(--if-white);
  color: var(--if-text-primary);
  padding: 40px 40px 0;
  margin: 0 32px 32px;
  border-radius: var(--if-radius-md);
  border: 1px solid #e0e0e0;
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.footer-col h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--if-text-primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--if-text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--if-blue);
}

.footer-link-blue:hover {
  color: var(--if-blue) !important;
}

.footer-contact-label {
  display: block;
  color: var(--if-text-secondary);
  font-size: 15px;
}

.footer-bottom {
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px 16px;
}

.footer-bottom-start {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: var(--if-text-secondary);
  font-size: 20px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--if-text-primary);
}

.footer-legal {
  grid-column: 3;
  grid-row: 2;
  justify-content: flex-end;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--if-text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--if-text-primary);
}

.footer-brand-block {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  direction: rtl;
}

.footer-brand-logo {
  display: flex;
  justify-content: flex-start;
}

.footer-brand-logo img {
  height: 20px;
}

.footer-tagline {
  color: var(--if-text-secondary);
  font-size: 14px;
  text-align: right;
}

.footer-lang-wrap {
  position: relative;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--if-text-secondary);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #d4d4d4;
  border-radius: var(--if-radius-pill);
  padding: 4px 14px;
  background: var(--if-white);
  cursor: pointer;
  font-family: inherit;
  min-width: 120px;
}

.footer-lang:hover {
  color: var(--if-text-primary);
  border-color: var(--if-text-muted);
}

.footer-lang-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: var(--if-white);
  border: 1px solid #d4d4d4;
  border-radius: var(--if-radius-sm);
  box-shadow: var(--if-shadow-md);
  min-width: 140px;
  z-index: 10;
}

.footer-lang-menu.open {
  display: block;
}

.footer-lang-menu li a {
  display: block;
  padding: 6px 16px;
  color: var(--if-text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.footer-lang-menu li a:hover {
  background: #f5f5f5;
  color: var(--if-text-primary);
}

.footer-lang-menu li a.lang-selected {
  color: var(--if-text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-lang-menu li a.lang-selected .bi-check-lg {
  font-size: 16px;
}

/* ===== Inner Page Header ===== */
.inner-page-header {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.inner-page-header .container {
  max-width: none;
}

.inner-page-label {
  display: inline-block;
  font-size: 18px;
  color: var(--if-text-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.inner-page-title {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.inner-page-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  position: relative;
}

.inner-page-buttons .decorative-bar {
  position: absolute;
  height: 4px;
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
}

.inner-page-buttons .decorative-bar-pink {
  right: calc(50% + 250px);
  width: 50vw;
}

.inner-page-buttons .decorative-bar-green {
  left: calc(50% + 250px);
  width: 50vw;
}

/* Per-page decorative bar colors via custom properties */
.decorative-bar-green { background-color: var(--bar-left, var(--if-green)); }
.decorative-bar-pink { background-color: var(--bar-right, var(--if-pink)); }

.page-customers  { --bar-right: var(--if-pink);  --bar-left: var(--if-green); }
.page-pricing    { --bar-right: var(--if-pink);  --bar-left: var(--if-gold); }
.page-examples   { --bar-right: var(--if-teal);  --bar-left: var(--if-green); }
.page-solutions  { --bar-right: var(--if-pink);  --bar-left: var(--if-blue); }
.page-about      { --bar-right: var(--if-gold);  --bar-left: var(--if-teal); }
.page-blog       { --bar-right: var(--if-blue);  --bar-left: var(--if-green); }
.page-features   { --bar-right: var(--if-teal);  --bar-left: var(--if-green); }

.inner-page-buttons .btn-if-primary,
.inner-page-buttons .btn-if-outline {
  font-size: 18px;
  padding: 12px 28px;
}

/* ===== Filter Chips ===== */
.filter-chips {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  width: 200px;
  position: sticky;
  top: 16px;
  align-self: start;
}


.filter-chip {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--if-radius-sm);
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--if-text-primary);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: right;
  white-space: nowrap;

  width: 100%; /* mine */
}

.filter-chip i {
  font-size: 14px;
}

.filter-chip:hover {
  background-color: var(--if-bg-light);
  color: var(--if-text-primary);
}

.filter-chip.active {
  background-color: var(--if-bg-input-blue);
  color: var(--if-blue);
  font-weight: 600;
}

/* ===== Layout Toggle ===== */
.layout-toggle {
  display: flex;
  gap: 4px;
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 100;
  background: var(--if-white);
  padding: 6px;
  border-radius: var(--if-radius-md);
  box-shadow: var(--if-shadow-md);
}

.layout-toggle-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--if-gray-300);
  border-radius: var(--if-radius-sm);
  background: var(--if-white);
  color: var(--if-text-secondary);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.layout-toggle-btn:hover {
  border-color: var(--if-blue);
  color: var(--if-blue);
}

.layout-toggle-btn.active {
  background-color: var(--if-bg-input-blue);
  border-color: var(--if-blue);
  color: var(--if-blue);
}

/* ===== Customers Grid ===== */
.customers-layout {
  display: flex;
  gap: 40px;
  align-items: start;
}

/* Horizontal layout variant */
.customers-layout.layout-horizontal {
  flex-direction: column;
}

.customers-layout.layout-horizontal .filter-chips {
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
  gap: 10px;
  position: sticky;
  top: 0;
  background: var(--if-white);
  padding: 16px 0;
  z-index: 1029;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  overflow-x: auto;
  scrollbar-width: none;
}

.customers-layout.layout-horizontal .filter-chips::-webkit-scrollbar {
  display: none;
}

.customers-layout.layout-horizontal .filter-chips.stuck {
  padding-top: 16px;
  padding-bottom: 16px;
}

.customers-layout.layout-horizontal .filter-chips.stuck::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 1px;
  background-color: var(--if-gray-200);
}

.customers-layout.layout-horizontal .customers-grid {
  grid-template-columns: repeat(5, 1fr);
}

.customers-grid-section {
  padding: 0 0 80px;
  margin-top: 0 !important;
}

.customers-grid-section .container {
  max-width: 1100px;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  flex: 1;
  min-width: 0;
}

.customer-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.customer-card.hidden,
.feature-card.hidden {
  /* display: none; */  /* i built it differently */
}

.customer-logo {
  height: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--if-white);
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-md);
  padding: 24px;
  width: 100%;
}

.customer-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.customer-name {
  font-size: 15px;
  color: var(--if-text-primary);
  font-weight: 600;
}

.filter-dropdown {
  display: none;
  grid-column: 2;
}

/* ===== Examples Page ===== */
.examples-grid-section {
  padding: 0 0 80px;
  margin-top: 0;
}

.examples-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}

.examples-grid .showcase-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 80px) / 3);
  max-width: calc((100% - 80px) / 3);
}

.examples-grid .card-label {
  font-size: 16px;
  line-height: 1.2;
  height: calc(1.2em * 2);
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.examples-grid .showcase-card {
  position: relative;
}

.examples-grid .showcase-card-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}


/* ===== Solutions Page ===== */
.solutions-content {
  padding: 0 0 64px;
  margin-top: 0;
}


.solutions-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-narrow {
  max-width: 735px;
}

.solutions-logos img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.solutions-block {
  max-width: 740px;
  margin: 0 auto 48px;
}

.solutions-block h2 {
  font-size: 40px;
  text-align: right;
  margin-bottom: 16px;
}

.solutions-block p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-dark-gray);
  text-align: right;
  margin-bottom: 20px;
}

/* Unified inner-page bullet list */
.inner-list {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0;
}

.inner-list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-primary);
}

.inner-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--if-blue);
}

.solutions-block ul {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0;
}

.solutions-block ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-primary);
}

.solutions-block ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--if-blue);
}

.solutions-screenshot {
  text-align: center;
  margin-bottom: 48px;
}

.solutions-screenshot img {
  max-width: 100%;
  border-radius: var(--if-radius-md);
}

.solutions-related {
  max-width: 740px;
  margin: 0 auto 48px;
}

.solutions-related-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--if-gray-600);
  margin-bottom: 16px;
}

.solutions-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions-related-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--if-text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.solutions-related-list li a:hover {
  color: var(--if-blue);
}

.solutions-related-list li a i {
  font-size: 18px;
}

/* ===== About Page ===== */
.about-content {
  padding: 0 0 64px;
  margin-top: 0;
}

.about-content > .container {
  max-width: 735px;
}

.about-section {
  margin: 0 0 48px;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-dark-gray);
  text-align: right;
  padding-top: 0;
}

.about-section h2 {
  font-size: 40px;
  text-align: right;
  margin-bottom: 16px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-dark-gray);
  text-align: right;
  margin-bottom: 20px;
}

.about-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-primary);
}

.about-section ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--if-blue);
}

.about-screenshot {
  text-align: center;
  margin-bottom: 48px;
}

.about-screenshot img {
  max-width: 100%;
  border-radius: var(--if-radius-md);
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 80px 0;
}

.contact-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-side {
  flex: 1;
}

.contact-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1;
  padding: 8px 0;
  color: var(--if-text-primary);
  direction: rtl;
}

.contact-checklist li i {
  color: var(--if-blue);
  font-size: 18px;
  flex-shrink: 0;
}


.contact-details-divider {
  height: 1px;
  background-color: var(--if-gray-200);
  margin: 32px 0;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.contact-details-title {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--if-text-primary);
  margin: 0 0 -16px;
}

.contact-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: var(--if-text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-item:hover {
  color: var(--if-blue);
}

.contact-detail-item:hover i {
  color: var(--if-blue);
}

.contact-detail-item i {
  font-size: 18px;
  color: var(--if-text-primary);
  transition: color 0.2s;
}

.contact-detail-wa i {
  color: var(--if-whatsapp);
}

.contact-detail-wa:hover {
  color: var(--if-whatsapp);
}
.contact-detail-wa:hover i {
  color: var(--if-whatsapp);
}

.contact-form-side {
  flex: 0 0 440px;
}

.contact-form-card {
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-md);
  padding: 32px;
  box-shadow: var(--if-shadow-md);
}

.contact-form-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 12px;
}

/* Shared form input styles */
.contact-form input,
.contact-form select,
.contact-form textarea,
.demo-input {
  width: 100%;
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--if-text-primary);
  background: var(--if-white);
  transition: border-color 0.2s;
  direction: rtl;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.demo-input::placeholder {
  color: var(--if-gray-600);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.demo-input:focus {
  outline: none;
  border-color: var(--if-blue);
}

.contact-form input:-webkit-autofill,
.contact-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--if-text-primary);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23909090'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 14px;
  color: var(--if-gray-600);
}

.contact-form select:valid {
  color: var(--if-text-primary);
}

.contact-form textarea {
  resize: none;
  min-height: 180px;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}


/* ===== Demo Page Toggle ===== */
.demo-page-toggle {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #1a1a1a;
  color: var(--if-white);
  border: none;
  border-radius: var(--if-radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
  box-shadow: var(--if-shadow-sm);
}

.demo-page-toggle:hover {
  background: #333;
  color: var(--if-white);
  text-decoration: none;
}

/* ===== Demo Inner Page ===== */
.demo-inner-section {
  padding: 0 0 80px;
}

.demo-inner-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

/* ===== Demo Booking Page ===== */
.demo-section {
  padding: 80px 0;
}

.demo-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-info-side {
  flex: 1;
}

.demo-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.demo-video-wrapper {
  margin-top: 24px;
  width: 400px;
  border-radius: var(--if-radius-md);
  overflow: hidden;
}

.demo-video-wrapper iframe {
  display: block;
}

.demo-subtitle {
  font-size: 18px;
  color: var(--if-gray-600);
  margin-top: 20px;
  line-height: 1.7;
}

.demo-form-side {
  flex: 0 0 440px;
  width: 440px;
}

.demo-form-card {
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-md);
  padding: 32px;
  box-shadow: var(--if-shadow-md);
}

.demo-form-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.demo-optional {
  font-size: 13px;
  font-weight: 400;
  color: var(--if-gray-600);
}

.demo-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-input {
  font-size: 15px;
}

.demo-date-row {
  display: flex;
  gap: 6px;
  padding-bottom: 8px;
  overflow-x: auto;
}

.demo-date-card {
  flex: 0 0 56px;
  height: 56px;
  border-radius: var(--if-radius-md);
  border: 1px solid var(--if-gray-200);
  background: var(--if-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  flex-shrink: 0;
}

.demo-date-card:hover {
  background: var(--if-bg-light);
  border-color: transparent;
}

.demo-date-card.selected {
  border: 1px solid transparent;
  background: #EBF2FC;
}

.demo-date-card .demo-date-day {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1;
}

.demo-date-card .demo-date-num {
  font-size: 16px;
  font-weight: 500;
  color: #1F2937;
  line-height: 1;
}

.demo-date-card.selected .demo-date-day,
.demo-date-card.selected .demo-date-num {
  color: var(--if-blue);
  font-weight: 600;
}

.demo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.demo-time-slot {
  border-radius: var(--if-radius-md);
  padding: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--if-gray-200);
  background: var(--if-white);
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  font-family: inherit;
}

.demo-time-slot:hover {
  border-color: var(--if-blue);
}

.demo-time-slot.selected {
  border-color: var(--if-blue);
  background: #EBF2FC;
  color: var(--if-blue);
}

.demo-upload-area {
  border: 2px dashed #D1D5DB;
  border-radius: var(--if-radius-md);
  padding: 16px;
  background: #FAFAFA;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.demo-upload-area.dragging {
  border-color: var(--if-blue);
  background: #F0F6FF;
}

.demo-upload-area.has-file {
  border: 2px solid var(--if-blue);
  background: #EBF2FC;
}

.demo-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-upload-icon {
  margin-bottom: 10px;
}

.demo-upload-doc {
  width: 40px;
  height: 50px;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--if-radius-sm);
  padding: 6px 5px;
  position: relative;
  background: white;
}

.demo-upload-line {
  height: 2px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-bottom: 4px;
}

.demo-upload-dash {
  border-top: 1.5px dashed #D1D5DB;
  width: 100%;
  margin-top: 2px;
}

.demo-upload-arrow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--if-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-upload-text {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.demo-upload-hint {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 2px;
}

.demo-upload-file-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-file-name {
  font-size: 14px;
  color: var(--if-blue);
  font-weight: 500;
}

.demo-file-remove {
  position: absolute;
  top: 8px;
  left: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.demo-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.demo-success {
  text-align: center;
  padding-top: 40px;
}

.demo-success-icon {
  width: 72px;
  height: 72px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.demo-success-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.demo-success-date {
  font-size: 17px;
  color: var(--if-gray-600);
  margin-bottom: 4px;
}

.demo-success-email {
  font-size: 15px;
  color: var(--if-gray-600);
  margin-bottom: 24px;
}

.demo-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 16px;
  text-decoration: none;
}



/* ===== Blog Page ===== */
.blog-section {
  padding: 0 0 64px;
  margin-top: 0;
}

.blog-content-area {
  flex: 1;
  min-width: 0;
}

.blog-layout {
  display: flex;
  gap: 32px;
  align-items: start;
}

.blog-sidenav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  width: 200px;
  position: sticky;
  top: 116px;
  align-self: start;
  max-height: calc(100vh - 136px);
  overflow-y: auto;
}

.blog-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 32px;
}

.blog-search {
  position: relative;
}

.blog-search input {
  width: 100%;
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  padding: 14px 48px 14px 16px;
  font-size: 17px;
  font-family: inherit;
  color: var(--if-text-primary);
  direction: rtl;
}

.blog-search input::placeholder {
  color: var(--if-gray-600);
}

.blog-search input:hover {
  outline: none;
  border-color: var(--if-text-primary);
}

.blog-search input:focus {
  outline: none;
  border-color: var(--if-blue);
  box-shadow: var(--if-shadow-md);
}

.blog-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--if-gray-600);
  font-size: 14px;
  pointer-events: none;
}

.blog-search-popover {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--if-white);
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  box-shadow: var(--if-shadow-lg);
  margin-top: 4px;
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
}

.blog-search-popover.active {
  display: block;
}

.blog-search-popover .search-result {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--if-text-primary);
  transition: background-color 0.15s;
  cursor: pointer;
  border-radius: var(--if-radius-sm);
}

.blog-search-popover .search-result:hover {
  background-color: #f5f5f5;
}

.blog-search-popover .search-result-title {
  font-size: 15px;
  font-weight: 600;
}

.blog-search-popover .search-result-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--if-dark);
  background: var(--if-white);
  border: 1px solid #EAEAEA;
  padding: 2px 8px;
  border-radius: var(--if-radius-pill);
  margin-bottom: 6px;
}

.blog-search-popover .search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--if-gray-600);
  font-size: 14px;
}

.blog-search-popover mark {
  background-color: #FFE566;
  color: inherit;
  border-radius: 2px;
  padding: 0 2px;
}

.blog-filters {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-filter {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--if-radius-sm);
  padding: 8px 12px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 400;
  color: var(--if-text-primary);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: right;
}

.blog-filter i {
  font-size: 14px;
}

.blog-filter:hover {
  background-color: var(--if-bg-light);
  color: var(--if-text-primary);
}

.blog-filter.active {
  background-color: var(--if-bg-input-blue);
  color: var(--if-blue);
  border-color: transparent;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}


.blog-divider {
  display: none;
}

.blog-card {
  padding: 16px;
  border: 2px solid var(--if-gray-200);
  border-radius: var(--if-radius-md);
  transition: background-color 0.2s, border-color 0.2s;
  margin: 0;
}

a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  background-color: var(--if-bg-light);
  border-color: transparent;
  background:
    linear-gradient(#FBFBF9, #FBFBF9) padding-box,
    linear-gradient(to right, #3588F2 0%, #F5BF4E 37%, #D76EBC 63%, #62C554 100%) border-box;
}

.blog-card-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--if-dark);
  background: var(--if-white);
  border: 1px solid #EAEAEA;
  padding: 2px 8px;
  border-radius: var(--if-radius-pill);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--if-text-primary);
}

.blog-card-text {
  font-size: 15px;
  line-height: 1.2;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Blog Article Page ===== */

.blog-article-section {
  padding: 0 0 64px;
  margin-top: 0;
}

.blog-article-layout {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--if-text-muted);
  margin-bottom: 20px;
}

.blog-article-breadcrumb a,
.blog-article-breadcrumb span {
  font-size: 15px;
}

.blog-article-breadcrumb a {
  color: var(--if-text-muted);
  text-decoration: none;
}

.blog-article-breadcrumb a:hover {
  color: var(--if-dark);
}

.blog-article-breadcrumb .breadcrumb-sep {
  color: #ccc;
}

.blog-article-breadcrumb .breadcrumb-current {
  font-size: 15px;
  color: var(--if-text-primary);
  font-weight: 600;
}

.blog-article-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--if-dark);
  margin-bottom: 32px;
}

.blog-article-content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-dark-gray);
}

.blog-article-content > *:first-child {
  margin-top: 0;
}

.blog-article-content p {
  margin-bottom: 20px;
}

.blog-article-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--if-text-primary);
  margin: 40px 0 16px;
}

.blog-article-content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--if-text-primary);
  margin: 40px 0 16px;
}

.blog-article-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--if-text-primary);
  margin: 32px 0 12px;
}

.blog-article-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.blog-article-content ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--if-text-primary);
}

.blog-article-content ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--if-blue);
}


/* ===== Blog Pagination ===== */

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}

.blog-page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  background: var(--if-white);
  color: var(--if-text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-page-btn:hover {
  background-color: var(--if-bg-light);
  border-color: var(--if-blue);
  color: var(--if-blue);
}

.blog-page-btn.active {
  background-color: var(--if-blue);
  border-color: var(--if-blue);
  color: #fff;
  pointer-events: none;
}

.blog-page-ellipsis {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}


/* ===== Features Page ===== */

.features-section {
  padding: 0 0 64px;
  margin-top: 0;
}

.features-layout {
  display: flex;
  gap: 40px;
  align-items: start;
}

.features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-category-title {
  grid-column: 1 / -1;
  font-size: 40px;
  font-weight: 600;
  color: var(--if-text-primary);
  margin: 40px 0 0;
  scroll-margin-top: 16px;
}

.features-category-title:first-child {
  margin-top: 0;
}

.feature-card {
  border: 2px solid var(--if-gray-200);
  border-radius: var(--if-radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--if-white);
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #3588F2 0%, #F5BF4E 37%, #D76EBC 63%, #62C554 100%) border-box;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
  color: var(--if-text-primary);
}

.feature-card-icon {
  font-size: 24px;
  color: var(--if-text-primary);
  margin-bottom: 12px;
  display: block;
}

.feature-card-text {
  font-size: 15px;
  line-height: 1.2;
  color: #666;
  margin: 0 0 12px;
}

.feature-card-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--if-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.feature-card-link i {
  font-size: 12px;
  width: 12px;
  height: 12px;
  line-height: 1;
}

.feature-card-link:hover {
  text-decoration: underline;
}

.feature-card-img {
  margin-top: auto;
  border-radius: var(--if-radius-sm);
  border: 1px solid var(--if-gray-200);
  overflow: hidden;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 200px;
}

.feature-card-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  width: 100%;
}

/* ===== Responsive ===== */

/* Navbar: fluid container with 32px side padding on all sizes */
.navbar-if > .container {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

/* xl: 1200–1399px */
@media (max-width: 1399px) {
  .hero-bar-teal { width: 5vw; right: -3vw; }
  .hero-bar-navy { width: 3vw; }
  .hero-bar-pink { width: 56vw; }
  .hero-bar-green { width: 3vw; }
}

/* lg: 992–1199px */
@media (max-width: 1199px) {
  .hero-bar-teal { width: 10vw; right: -4vw; }
  .hero-bar-navy { width: 11vw; }
  .hero-bar-pink { width: 32vw; }
  .hero-bar-green { width: 9vw; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* =============================================================
   MOBILE — max-width: 991px
   ============================================================= */
@media (max-width: 991px) {
  /* -- Global -- */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; line-height: 1.3; }
  h3 { font-size: 24px; }
  h4 { font-size: 18px; }
  body { font-size: 16px; }
  .sub-title { font-size: 18px; }
  .text-large { font-size: 18px; }
  body > section + section { margin-top: 24px; }
  .btn-if-primary, .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; }
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* -- Hero bars -- */
  .hero-bar { display: block; right: auto; }
  .hero-bar-teal { width: calc(20vw + 15px); top: 42px; left: calc(-4vw - 5px); }
  .hero-bar-navy { display: none; }
  .hero-bar-pink { width: 32vw; top: 82px; left: -12vw; }
  .hero-bar-green { width: 10vw; top: 122px; left: -15px; }

  /* -- Navbar -- */
  .top-bar-wrap { padding-bottom: 0; }
  .navbar-if { padding: 10px 0; position: relative; z-index: 1051; }
  .navbar-if .navbar-brand { margin-left: 0; }
  .navbar-expand .navbar-collapse { display: none !important; }
  .navbar-expand .navbar-toggler {
    display: flex !important;
    border: none;
    padding: 10px;
    margin-left: -10px;
    margin-right: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .navbar-expand .navbar-toggler:focus,
  .navbar-expand .navbar-toggler:focus-visible,
  .navbar-expand .navbar-toggler:active {
    box-shadow: none;
    outline: none;
    border: none;
  }
  .navbar-toggler-icon { width: 24px; height: 24px; transition: opacity 0.2s; }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { display: none; }
  .navbar-toggler::after { content: ''; display: none; width: 24px; height: 24px; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854z'/%3e%3c/svg%3e"); background-size: contain; background-repeat: no-repeat; }
  .navbar-toggler[aria-expanded="true"]::after { display: block; }

  .navbar-collapse {
    transition: none !important;
    height: auto !important;
  }

  html.menu-open-body,
  html.menu-open-body body {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .menu-open-body .announcement-bar { flex-shrink: 0; }

  .menu-open-body .top-bar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--if-white);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .menu-open-body .navbar-if {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .menu-open-body .navbar-if > .container {
    flex: 1;
    min-height: 0;
    flex-wrap: wrap;
    border-bottom: none;
    overflow: visible;
    align-content: start;
  }
  .menu-open-body .navbar-collapse.show {
    flex: 1 1 100%;
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    background: var(--if-white);
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-basis: 100%;
    order: 10;
    border-top: 1px solid var(--if-gray-200);
    margin-top: 10px;
  }

  .navbar-collapse.show .navbar-nav-main,
  .navbar-collapse.collapsing .navbar-nav-main {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .navbar-collapse.show .navbar-nav-end,
  .navbar-collapse.collapsing .navbar-nav-end {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-right: 0;
    padding: 0;
    border-top: none;
    margin-top: 0;
    width: 100%;
    padding-top: 0;
  }

  .navbar-if > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-nav-main .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--if-gray-200);
    font-size: 16px;
    direction: rtl;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar-nav-main .nav-item { position: relative; }
  .navbar-nav-main .nav-item::after {
    display: none;
  }

  .navbar-nav-main .dropdown-toggle .bi-chevron-down,
  .navbar-nav-main .dropdown-toggle .nav-chevron {
    margin-right: 0;
    margin-left: auto;
  }

  .navbar-nav-end { gap: 0; }
  .navbar-nav-end .nav-divider,
  .navbar-nav-end .nav-whatsapp { display: none; }

  .navbar-nav-end .nav-link-secondary {
    flex: 0 0 100%;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--if-gray-200);
    text-align: right;
    margin: 0;
    font-size: 16px;
  }
  .navbar-nav-end .nav-link-secondary::after {
    display: none;
  }

  .navbar-nav-end .navbar-btn-group {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    order: 10;
  }
  .navbar-nav-end .btn-login,
  .navbar-nav-end .btn-if-primary.btn-if-sm {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    margin-top: 0;
  }
  .navbar-nav-end .btn-login { margin-left: 0; }


  .navbar-if > .container { align-items: center; }
  .navbar-mobile-actions { display: flex; align-items: center; gap: 16px; }

  .nav-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--if-whatsapp);
    font-size: 22px;
    text-decoration: none;
  }
  .nav-whatsapp-mobile:hover { color: #128C7E; }

  .mega-menu {
    position: static !important;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }
  .mega-menu-inner {
    padding: 0;
    flex-direction: column;
  }
  .mega-menu-inner .mega-col:first-child .mega-col-header {
    margin-top: 16px;
  }
  .mega-divider { width: 100%; height: 1px; padding: 0; margin: 24px 0; }

  /* -- Hero section -- */
  .hero-section { padding: 24px 0; }
  .hero-section .container { padding-left: 16px; padding-right: 16px; }
  .hero-row { flex-direction: column-reverse; align-items: stretch; gap: 24px; }
  .hero-section h1 { font-size: 40px; margin-bottom: 8px; }
  .hero-title { margin-bottom: 0; }
  .hero-section .hero-desc { max-width: 100%; font-size: 16px; }
  .hero-section .hero-buttons { flex-direction: row; gap: 16px; width: 100%; }
  .hero-section .hero-buttons .btn-if-primary,
  .hero-section .hero-buttons .btn-if-outline { flex: 1; font-size: 16px; padding: 12px 24px; line-height: 1; justify-content: center; }

  /* -- Product screenshot -- */
  .product-screenshot .product-img { border-radius: var(--if-radius-sm); margin: 0 16px; width: calc(100% - 32px); }

  /* -- Clients strip grid -- */
  .clients-strip h3 { font-size: 16px; }
  .clients-strip { padding: 40px 0; }
  .clients-strip .container { max-width: 100%; padding: 0 16px; }
  .clients-strip .client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: none;
    width: auto;
  }
  .clients-strip .client-logos img { max-height: 48px; height: 48px; width: auto; justify-self: center; align-self: center; }
  .clients-strip .client-logos img[aria-hidden="true"] { display: none; }

  /* -- How it works -- */
  .how-it-works { margin: 0 16px; padding: 40px 0; }
  .steps-row { flex-direction: column; gap: 32px; align-items: center; }
  .step-card { max-width: 300px; }
  .step-connector { display: none !important; }

  /* -- Document showcase / carousel -- */
  .document-showcase { padding: 40px 0; }
  .document-showcase h2 { font-size: 32px; padding: 0; }
  .section-subtitle { font-size: 18px; }
  .showcase-subtitle { padding: 0 16px; }
  .showcase-subtitle br { display: none; }
  .showcase-carousel { padding: 0; position: relative; }
  .showcase-card { flex: 0 0 85%; max-width: 85%; min-width: 0; scroll-snap-align: center; }
  .showcase-card .browser-frame { height: 300px; overflow: hidden; }
  .showcase-card .card-label { font-size: 18px; margin-bottom: 8px; }
  .showcase-card:hover .browser-frame img { opacity: 1; }
  .showcase-card:hover .browser-frame { border-color: var(--if-border); background: var(--if-white); }
  .showcase-cards { overflow-x: auto; gap: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .showcase-cards::-webkit-scrollbar { display: none; }
  .showcase-cards { width: 100%; }
  .showcase-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 18px;
    z-index: 5;
    background: rgba(255,255,255,0.9);
    box-shadow: var(--if-shadow-sm);
  }
  .showcase-arrow-prev { left: 8px; right: auto; }
  .showcase-arrow-next { right: 8px; left: auto; }
  .showcase-cta .btn-if-primary,
  .showcase-cta .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; }

  /* -- Pricing section (HP + page) -- */
  .pricing-section { margin: 0 16px; padding: 40px 16px; }
  .pricing-section .container { padding-left: 0 !important; padding-right: 0 !important; }
  .pricing-section h2 { font-size: 26px; }
  .pricing-section h2 br { display: none; }
  .pricing-cards-row,
  .pricing-cards-row-3 { flex-direction: column; align-items: center; }
  .pricing-cards-col { max-width: 420px; width: 100%; }
  .pricing-cards-row-3 .pricing-cards-col { max-width: 420px; width: 100%; }
  .pricing-card .plan-price { font-size: 48px; margin-top: 32px; }
  .pricing-card .plan-period { margin-bottom: 32px; }
  .pricing-card .form-counter { margin-bottom: 32px; }
  .pricing-card .pricing-buttons { flex-direction: row; gap: 16px; }
  .pricing-card .pricing-buttons .btn-if-primary,
  .pricing-card .pricing-buttons .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; }
  .custom-solution-card .solution-buttons .btn-if-primary,
  .custom-solution-card .solution-buttons .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; }
  .pricing-faq { padding: 40px 16px; }
  .pricing-faq-title { font-size: 32px; }
  .pricing-faq .accordion-button { font-size: 16px; }
  .pricing-faq .accordion-body { padding-left: 24px; }
  .faq-expand-all-wrap { margin-bottom: 24px; }
  .pricing-full-details { margin-top: 40px; }
  .pricing-details-modal { padding: 24px; margin: 8px; overflow-x: auto; }
  .pricing-details-modal h2 { font-size: 24px; }

  /* -- Custom solution -- */
  .custom-solution-card h3 { font-size: 24px; }
  .custom-solution p { font-size: 16px; }
  .custom-solution .solution-buttons,
  .custom-solution-card .solution-buttons { flex-direction: column; gap: 16px; justify-content: center; }
  .custom-solution .solution-buttons .btn-if-primary,
  .custom-solution .solution-buttons .btn-if-outline,
  .custom-solution-card .solution-buttons .btn-if-primary,
  .custom-solution-card .solution-buttons .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; justify-content: center; }

  /* -- Bottom CTA -- */
  .bottom-cta { padding: 32px 16px; }
  .bottom-cta h2 { font-size: 24px; }
  .bottom-cta .decorative-bar-green,
  .bottom-cta .decorative-bar-pink { display: none; }
  .bottom-cta-divider { margin: 0 16px; }
  .bottom-cta .btn-if-primary,
  .bottom-cta .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; }

  /* -- Footer -- */
  .footer-section { padding: 24px 16px 0; margin: 0 8px 8px; }
  .footer-section .container { padding-left: 0 !important; padding-right: 0 !important; }

  .footer-columns { flex-direction: column; gap: 20px; }
  .footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-brand-block { align-items: center; order: 1; }
  .footer-bottom-start { order: 2; }
  .footer-legal { order: 3; justify-content: center; }
  .footer-tagline { text-align: center; }

  /* -- Inner page header -- */
  .inner-page-header { padding: 24px 0 32px; }
  .inner-page-title { font-size: 40px; margin-bottom: 24px; }
  .inner-page-label { font-size: 16px; margin-bottom: 16px; }
  .inner-page-buttons { flex-direction: row; align-items: center; justify-content: center; gap: 16px; }
  .inner-page-buttons .decorative-bar-pink,
  .inner-page-buttons .decorative-bar-green { display: none; }
  .inner-page-buttons .btn-if-primary,
  .inner-page-buttons .btn-if-outline { font-size: 16px; padding: 12px 24px; line-height: 1; justify-content: center; }

  /* -- Examples grid -- */
  .examples-grid { gap: 40px; }
  .examples-grid .showcase-card { flex: 0 0 100%; max-width: 100%; }
  .examples-grid .showcase-card .browser-frame { height: auto; }
  .examples-grid-section { padding: 0 0 40px; }
  .examples-grid .card-label { font-size: 20px; }
  .examples-grid .showcase-card:hover .browser-frame { border-color: var(--if-border); background: var(--if-white); }
  .examples-grid .showcase-card:hover .browser-frame img { opacity: 1; }

  /* -- Customers -- */
  .customers-layout { flex-direction: column; }
  .customers-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0 16px; width: 100%; }
  .customers-layout .filter-chips { display: none; }
  .customers-layout.layout-horizontal .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-card { width: 100%; align-items: stretch; }
  .customer-logo { height: 108px; width: 100%; padding: 12px; }
  .customer-logo img { max-height: 56px; width: 80%; max-width: 100%; }
  .customers-grid-section { padding: 0 0 40px; }
  .customers-grid-section .container { padding-left: 0 !important; padding-right: 0 !important; }

  /* -- Filter dropdown (customers, blog, features) -- */
  .filter-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
    position: relative;
    transition: none;
  }
  .filter-dropdown.floating {
    position: fixed;
    top: 24px;
    bottom: auto;
    left: 50%;
    right: auto;
    width: auto;
    transform: translateX(-50%);
    z-index: 1040;
    margin-bottom: 0;
    animation: filterFloatIn 0.3s ease;
  }
  .filter-dropdown.floating .filter-dropdown-label { display: none; }
  .filter-dropdown.floating .filter-dropdown-wrap { width: auto; }
  .filter-dropdown.floating .filter-dropdown-toggle {
    box-shadow: var(--if-shadow-lg);
    background: var(--if-white);
    border-radius: var(--if-radius-md);
    padding: 12px 20px;
    white-space: nowrap;
  }
  .filter-dropdown.floating .filter-dropdown-menu {
    top: calc(100% + 4px);
    bottom: auto;
    transform: translateX(-50%) translateY(-8px);
  }
  .filter-dropdown.floating.open .filter-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
  @keyframes filterFloatIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .filter-dropdown-label { font-size: 15px; font-weight: 600; color: var(--if-text-primary); }
  .filter-dropdown-wrap { position: relative; }
  .filter-dropdown-toggle span { white-space: normal; display: flex; align-items: center; gap: 6px; }
  .filter-dropdown-toggle {
    width: 100%;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border: 1.5px solid var(--if-gray-300);
    border-radius: var(--if-radius-sm);
    background: var(--if-white);
    color: var(--if-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }
  .filter-dropdown-toggle .bi-chevron-down { font-size: 12px; transition: transform 0.2s; }
  .filter-dropdown.open .filter-dropdown-toggle .bi-chevron-down { transform: rotate(180deg); }
  .filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--if-white);
    border: 1.5px solid var(--if-gray-300);
    border-radius: var(--if-radius-sm);
    padding: 8px;
    z-index: 10;
    box-shadow: var(--if-shadow-md);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .filter-dropdown-item {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    background: none;
    color: var(--if-text-primary);
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: var(--if-radius-sm);
  }
  .filter-dropdown-item:hover,
  .filter-dropdown-item.active { background-color: var(--if-bg-light-blue); color: var(--if-blue); }

  /* -- Solutions page -- */
  .solutions-logos { display: grid !important; grid-template-columns: repeat(3, 1fr); justify-items: center; gap: 24px 32px; padding: 0 32px; margin-bottom: 40px; }
  .solutions-logos img { width: auto; height: 48px; }
  .solutions-content { padding-bottom: 0; }
  .solutions-block h2 { font-size: 32px; }
  .solutions-block p,
  .solutions-block ul li,
  .inner-list li,
  .blog-article-content ul li { font-size: 16px; }
  .solutions-narrow { padding-left: 8px; padding-right: 8px; }

  /* -- About page -- */
  .about-section h2 { font-size: 24px; }
  .about-intro p,
  .about-section p,
  .about-section ul li { font-size: 16px; }

  /* -- Contact page -- */
  .contact-section { padding: 40px 0; }
  .contact-layout { flex-direction: column; gap: 32px; }
  .contact-form-side { flex: none; width: 100%; }
  .contact-info-side .contact-details-divider { display: none; }
  .contact-info-side .contact-details { display: flex; }
  .contact-checklist { margin-bottom: 0; }
  .contact-title { font-size: 32px; }
  .contact-details { gap: 8px 32px; justify-content: flex-start; margin-top: 16px; direction: rtl; }
  .contact-details-title { text-align: right; margin: 0; }
  .contact-detail-item { direction: rtl; }
  .demo-video-wrapper { width: 100%; }
  .demo-video-wrapper iframe { width: 100%; height: 0; padding-bottom: 56.25%; aspect-ratio: 16/9; }

  /* -- Blog page -- */
  .blog-layout { flex-direction: column; }
  .blog-sidenav { display: none; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-card-title { font-size: 16px; }
  .blog-card { padding: 16px; }

  /* -- Features page -- */
  .features-layout { flex-direction: column; }
  .features-layout .filter-chips { display: none !important; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-category-title { font-size: 32px; margin: 24px 0 0; }

  /* -- Demo page -- */
  .demo-layout { flex-direction: column; gap: 32px; }
  .demo-form-side { flex: none; width: 100%; }
  .demo-info-side { width: 100%; }
  .demo-info-side .contact-details-divider { display: none; }
  .demo-info-side .contact-details { display: flex; }
  .demo-title { font-size: 32px; text-align: center; }
  .demo-subtitle { text-align: center; }
  .demo-section { padding: 24px 0 48px; }
  .demo-form-card { padding: 20px; }
  .demo-date-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; overflow-x: visible; }
  .demo-date-card { flex: none; width: auto; height: 52px; }
  .demo-date-card .demo-date-num { font-size: 14px; }
  .demo-date-card .demo-date-day { font-size: 11px; }
  .demo-time-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .demo-time-slot { padding: 10px 6px; font-size: 15px; }

  /* -- Announcement bar -- */
  .announcement-bar { padding: 10px 0; font-size: 16px; }
  .announcement-bar .container-fluid { padding: 0 16px; }
  .announcement-bar .d-flex { flex-direction: column; align-items: center; text-align: center; gap: 4px !important; position: relative !important; padding-left: 28px; }
  .announcement-bar .btn-close-announce { position: absolute !important; top: 0; left: 0; font-size: 16px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; padding: 0; }

  /* -- Hidden desktop-only elements -- */
  .layout-toggle { display: none; }
  .demo-page-toggle { display: none; }

  /* -- Showcase card button: hidden on mobile (no hover) -- */
  .showcase-card-btn { display: none; }
  .showcase-carousel .showcase-card { text-align: center; }
  .showcase-carousel .showcase-card .showcase-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: static;
    transform: none;
    opacity: 1;
    font-size: 16px;
    padding: 8px 20px;
    margin: 12px auto 0;
    background-color: var(--if-blue);
    color: var(--if-white);
    border-radius: var(--if-radius-pill);
    font-weight: 600;
  }

  /* -- Examples grid: show button below title on mobile -- */
  .examples-grid .showcase-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: static;
    transform: none;
    opacity: 1;
    font-size: 14px;
    padding: 8px 16px;
    width: fit-content;
    margin: 0 auto 16px;
  }

  /* -- Pricing counter buttons: larger touch targets -- */
  .pricing-card .form-counter button { width: 44px; height: 44px; }
  .pricing-card .form-counter .counter-content { min-width: 80px; }

  /* -- Form inputs: larger touch targets -- */
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 14px 16px; }
  .demo-input { padding: 14px 16px; }

  /* -- Demo date row -- */
  .demo-date-card { scroll-snap-align: none; }
}

/* ===== LTR Overrides (non-Hebrew languages) ===== */

/* -- Global text direction -- */
[dir="ltr"] {
  text-align: left;
}

[dir="ltr"] .mega-list li a,
[dir="ltr"] .contact-checklist li,
[dir="ltr"] .blog-search input,
[dir="ltr"] .demo-input,
[dir="ltr"] .contact-form input,
[dir="ltr"] .contact-form select,
[dir="ltr"] .contact-form textarea,
[dir="ltr"] .nav-item,
[dir="ltr"] .nav-link,
[dir="ltr"] .filter-dropdown-toggle,
[dir="ltr"] .filter-dropdown-item {
  direction: ltr;
}

[dir="ltr"] .btn-if-primary .bi-arrow-left,
[dir="ltr"] .btn-if-outline .bi-arrow-left,
[dir="ltr"] .showcase-card-btn .bi-arrow-left,
[dir="ltr"] .feature-card-link .bi-chevron-left {
  transform: scaleX(-1);
}

/* -- Hero -- */
[dir="ltr"] .hero-title {
  text-align: left;
}

[dir="ltr"] .hero-section .hero-desc {
  text-align: left;
}

[dir="ltr"] .hero-section .hero-buttons {
  justify-content: flex-start;
}

/* -- Navbar -- */
[dir="ltr"] .navbar-nav-end {
  margin-right: 0;
  margin-left: auto;
}

[dir="ltr"] .navbar-nav-end .nav-link-secondary {
  text-align: left;
}

/* -- Footer -- */
[dir="ltr"] .footer-lang i[style*="margin-right"] {
  margin-right: 0 !important;
  margin-left: auto;
}

[dir="ltr"] .footer-bottom-start {
  text-align: left;
}

/* -- How it works -- */
[dir="ltr"] .step-text {
  text-align: left;
}

[dir="ltr"] .step-number-text {
  text-align: left;
}

/* -- Pricing FAQ -- */
[dir="ltr"] .pricing-faq .accordion-button::after {
  margin-right: 0;
  margin-left: auto;
}

[dir="ltr"] .pricing-table-feature-name,
[dir="ltr"] .pricing-table-feature-group {
  text-align: left;
}

/* -- Inner pages -- */
[dir="ltr"] .inner-page-buttons .decorative-bar-pink {
  right: auto;
  left: calc(50% + 250px);
}

[dir="ltr"] .inner-page-buttons .decorative-bar-green {
  left: auto;
  right: calc(50% + 250px);
}

/* -- Solutions / About -- */
[dir="ltr"] .solutions-block h2,
[dir="ltr"] .solutions-block p,
[dir="ltr"] .about-intro,
[dir="ltr"] .about-section h2,
[dir="ltr"] .about-section p,
[dir="ltr"] .about-section ul {
  text-align: left;
}

/* -- Blog -- */
[dir="ltr"] .blog-search i {
  right: auto;
  left: 14px;
}

[dir="ltr"] .blog-search input {
  padding: 14px 16px 14px 48px;
  direction: ltr;
}

[dir="ltr"] .blog-filter,
[dir="ltr"] .filter-chip,
[dir="ltr"] .blog-card {
  text-align: left;
}

/* -- Contact / Demo -- */
[dir="ltr"] .contact-title,
[dir="ltr"] .demo-title {
  text-align: left;
}

[dir="ltr"] .contact-checklist li {
  direction: ltr;
}

/* -- Features -- */
[dir="ltr"] .feature-card {
  text-align: left;
}

/* -- Clients strip -- */
[dir="ltr"] .clients-strip-label {
  text-align: left;
}

/* -- Bottom CTA -- */
[dir="ltr"] .bottom-cta {
  text-align: left;
}

[dir="ltr"] .bottom-cta h2 {
  text-align: center;
}

/* -- How it works connector arrows -- */
[dir="ltr"] .step-connector {
  transform: translateX(-50%) scaleX(-1);
}

/* -- Hero bars flipped for LTR -- */
[dir="ltr"] .hero-bar-teal {
  right: auto;
  left: -8vw;
}

[dir="ltr"] .hero-bar-navy {
  right: auto;
  left: 0;
}

[dir="ltr"] .hero-bar-pink {
  left: auto;
  right: 0;
}

[dir="ltr"] .hero-bar-green {
  left: auto;
  right: 0;
}

@media (max-width: 1399px) {
  [dir="ltr"] .hero-bar-teal { right: auto; left: -3vw; }
}

@media (max-width: 1199px) {
  [dir="ltr"] .hero-bar-teal { right: auto; left: -4vw; }
}

@media (max-width: 991px) {
  [dir="ltr"] .hero-bar-teal { left: auto; right: -4vw; }
  [dir="ltr"] .hero-bar-pink { right: auto; left: 0; }
  [dir="ltr"] .hero-bar-green { right: auto; left: 0; }
}