/* ============================================================
   PGISHONIM LANDING PAGES — DESIGN SYSTEM v2.0
   Brand: Navy #283896 · Teal #5ec4a8 · Font: Heebo (RTL)
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #283896;
  --primary-dark:   #1a2665;
  --primary-darker: #0c1440;
  --accent:         #5ec4a8;
  --accent-dark:    #3da88c;
  --white:          #ffffff;
  --light-bg:       #f4f6fd;
  --body-text:      #2d2d4e;
  --muted:          #6e7191;
  --border:         rgba(40,56,150,.10);
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      6px;
  --shadow:         0 4px 24px rgba(40,56,150,.08);
  --shadow-md:      0 8px 32px rgba(40,56,150,.12);
  --shadow-lg:      0 16px 56px rgba(40,56,150,.18);
  --transition:     .28s ease;
  --bs-primary:     #283896;
}

/* direction:ltr on html keeps the vertical scrollbar on the RIGHT.
   Without this, RTL body creates a second BFC whose scrollbar appears
   on the LEFT, giving the visual appearance of double scrollbars. */
html {
  direction: ltr;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* No overflow-x on body — html's overflow-x:hidden handles clipping.
     Setting overflow-x on body creates a separate BFC whose scrollbar
     appears on the left (RTL) while html scrollbar is on the right,
     giving a double-scrollbar appearance AND can clip vertical content. */
  position: relative;
}

/* Hide reCAPTCHA v3 badge + v2 checkbox widget */
.grecaptcha-badge { visibility: hidden !important; }
.g-recaptcha       { display: none !important; }

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===== BOOTSTRAP COMPATIBILITY UTILITIES ===== */
/* Grid system */
.container {
  width: 100%; max-width: 1200px;
  margin-right: auto; margin-left: auto;
  padding-right: 1rem; padding-left: 1rem;
}
.row {
  display: flex; flex-wrap: wrap;
  margin-right: -.75rem; margin-left: -.75rem;
}
[class*="col-"] {
  padding-right: .75rem; padding-left: .75rem;
  box-sizing: border-box;
}
.col-12, .col-sm-12, .col-md-12 { width: 100%; }
.col-6,  .col-sm-6  { width: 50%; }
.col-sm-3 { width: 25%; }
.col-sm-4, .col-md-4 { width: 33.333%; }
@media (min-width: 768px) {
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.333%; }
  .col-md-5  { width: 41.667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.333%; }
  .col-md-8  { width: 66.667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.333%; }
  .col-lg-5  { width: 41.667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.333%; }
  .col-lg-8  { width: 66.667%; }
  .col-lg-12 { width: 100%; }
}
@media (min-width: 1200px) {
  .col-xl-3  { width: 25%; }
  .col-xl-4  { width: 33.333%; }
  .col-xl-5  { width: 41.667%; }
  .col-xl-6  { width: 50%; }
  .col-xl-7  { width: 58.333%; }
  .col-xl-8  { width: 66.667%; }
  .col-xl-12 { width: 100%; }
}
@media (max-width: 767px) {
  .col-md-4, .col-md-6, .col-sm-3, .col-sm-4 { width: 100%; }
}
/* Gap utilities (Bootstrap 5 compat) */
.g-3 { --pg-gutter-x: 1rem; --pg-gutter-y: 1rem; }
.g-4 { --pg-gutter-x: 1.5rem; --pg-gutter-y: 1.5rem; }
.g-5 { --pg-gutter-x: 3rem;  --pg-gutter-y: 3rem; }
.row.g-3, .row.g-4, .row.g-5 {
  margin-right: calc(var(--pg-gutter-x) / -2);
  margin-left:  calc(var(--pg-gutter-x) / -2);
  row-gap: var(--pg-gutter-y);
}
.row.g-3 > [class*="col-"],
.row.g-4 > [class*="col-"],
.row.g-5 > [class*="col-"] {
  padding-right: calc(var(--pg-gutter-x) / 2);
  padding-left:  calc(var(--pg-gutter-x) / 2);
}

/* Display utilities */
.d-none    { display: none !important; }
.d-block   { display: block !important; }
.d-flex    { display: flex !important; }
.flex-column   { flex-direction: column; }
.flex-grow-1   { flex-grow: 1; }
.flex-wrap     { flex-wrap: wrap; }
.w-100         { width: 100%; }
.h-100         { height: 100%; }

/* Text utilities */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }

/* Flex utilities */
.align-items-center     { align-items: center; }
.align-items-start      { align-items: flex-start; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end     { justify-content: flex-end; }

/* Spacing utilities */
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.m-2  { margin: .5rem; }

/* Responsive display */
@media (min-width: 992px) {
  .d-lg-none  { display: none !important; }
  .d-lg-flex  { display: flex !important; }
  .d-lg-block { display: block !important; }
}
@media (max-width: 991px) {
  .d-sm-none { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.pg-btn:hover { transform: translateY(-2px); text-decoration: none; }

.pg-btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(94,196,168,.35);
}
.pg-btn--accent:hover { background: var(--accent-dark); box-shadow: 0 10px 32px rgba(94,196,168,.45); color: var(--white); }

.pg-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.pg-btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

.pg-btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(40,56,150,.30);
}
.pg-btn--primary:hover { background: var(--primary-dark); color: var(--white); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.pg-section-header { text-align: center; margin-bottom: 3rem; }

.pg-section-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: .35rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .9rem;
}

.pg-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary-darker);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.pg-section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* Must be above the overlay (1080) so the panel isn't blurred/blocked */
  z-index: 1095;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: .75rem 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(40,56,150,.10);
  padding: .5rem 0;
}

/* Navbar inner flex container */
.container_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#navbar .navbar-brand img { height: 44px; }

#navbar .navbar-nav .nav-link {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .9rem;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
#navbar .navbar-nav .nav-link:hover { color: var(--accent); }
#navbar.scrolled .navbar-nav .nav-link { color: var(--body-text); }
#navbar.scrolled .navbar-nav .nav-link:hover { color: var(--primary); }

#navbar .navbar-nav .nav-cta .pg-btn {
  padding: .48rem 1.3rem;
  font-size: .88rem;
  line-height: 1.2;
}

/* Mobile toggler — always hidden on desktop */
.navbar-toggler {
  border: none; background: none; padding: 0; cursor: pointer;
  /* Fixed-height + space-evenly: identical space before bar1, between bars, after bar3 */
  display: flex; flex-direction: column; justify-content: space-evenly;
  align-items: center; width: 40px; height: 39px;
}
.menu-icon { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.9); border-radius: 2px; flex-shrink: 0; transition: background var(--transition); }
#navbar.scrolled .menu-icon { background: var(--primary-darker); }

/* Desktop — show nav inline, hide hamburger */
@media (min-width: 992px) {
  .navbar-toggler { display: none; }
  #navbarTogglerDemo01 {
    display: flex !important;
    align-items: center;
    flex: 1;
    overflow: hidden;
  }
  #navbarTogglerDemo01 .navbar-nav {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    margin-right: auto;
  }
  /* Tighter nav links on desktop to fit all items in one row */
  #navbar .navbar-nav .nav-link {
    padding: .45rem .55rem;
    font-size: .88rem;
    white-space: nowrap;
  }
  #navbar .navbar-nav .nav-cta .pg-btn {
    padding: .45rem 1.1rem;
    font-size: .85rem;
  }
  /* CTA button — separated from nav links on desktop */
  #navbar .navbar-nav .nav-cta {
    margin-right: 1rem;
    border-right: 1px solid rgba(255,255,255,.18);
    padding-right: 1rem;
  }
  #navbar.scrolled .navbar-nav .nav-cta {
    border-right-color: rgba(40,56,150,.15);
  }
}

/* ===== CLOSE-MENU X BUTTON ===== */
.close-menu {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; cursor: pointer; border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.close-menu:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }
.menu-close {
  display: inline-block; width: 16px; height: 16px;
  position: relative; background: transparent !important;
}
.menu-close::before, .menu-close::after {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.90);
}
.menu-close::before { transform: translateY(-50%) rotate(45deg); }
.menu-close::after  { transform: translateY(-50%) rotate(-45deg); }
.logo-mobile-menu { height: 36px; }

/* ===== MOBILE — SLIDE-IN PANEL (RTL: from right) ===== */

/* Backdrop */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 38, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1080;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
body.menu-open #mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 991px) {
  /* Panel — slides in from right */
  #navbarTogglerDemo01 {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto !important;
    /* Explicit height so the browser never flashes a wrong size on first paint */
    height: 100vh !important;
    width: min(82vw, 340px);
    background: linear-gradient(175deg, #07102b 0%, #14217a 55%, #1a3080 100%);
    z-index: 1090;
    display: flex !important;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    /* Left border makes the panel clearly distinguishable from the dark hero bg */
    border-left: 1px solid rgba(94,196,168,.22);
    box-shadow: -20px 0 70px rgba(0,0,0,.65), -1px 0 0 rgba(94,196,168,.10);
    /* hidden — off-screen to the right */
    transform: translateX(105%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #navbarTogglerDemo01.show {
    transform: translateX(0);
  }

  /* Header row: logo + X */
  #navbarTogglerDemo01 .d-lg-none {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
    background: rgba(0,0,0,.15);
  }

  /* Nav list */
  #navbarTogglerDemo01 .navbar-nav {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0.6rem 1.4rem 2.5rem;
    margin: 0 !important;
    gap: 0 !important;
    overflow-y: auto;
    flex: 1;
  }

  /* CTA button — pulled to top via order, full-width green pill */
  #navbarTogglerDemo01 .navbar-nav .nav-cta {
    order: -1;
    padding: 1.1rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,.09);
    margin-bottom: 0.3rem;
  }
  #navbarTogglerDemo01 .navbar-nav .nav-cta .pg-btn {
    display: flex !important;
    justify-content: center !important;
    padding: .85rem 1.5rem !important;
    text-align: center !important;
    font-size: 1rem !important;
    margin: 0 !important;
  }
  #navbarTogglerDemo01 .navbar-nav .nav-cta .pg-btn::after { display: none; }

  /* Dividers */
  #navbarTogglerDemo01 .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  /* Regular nav links */
  #navbarTogglerDemo01 .navbar-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.9rem 0 !important;
    text-align: right !important;
    margin: 0 !important;
    border-bottom: none !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    transition: color .2s, padding-right .2s;
  }
  #navbarTogglerDemo01 .navbar-nav .nav-link:hover {
    color: var(--accent) !important;
    padding-right: 6px !important;
  }

  /* Chevron — ::after so text stays at flex-start (RIGHT in RTL), chevron at flex-end (LEFT) */
  #navbarTogglerDemo01 .navbar-nav .nav-link:not(.btn)::after {
    content: '›';
    font-size: 1.35rem;
    line-height: 1;
    opacity: .32;
    font-weight: 300;
    flex-shrink: 0;
    transition: opacity .2s;
  }
  #navbarTogglerDemo01 .navbar-nav .nav-link:not(.btn):hover::after { opacity: .75; }

  /* Login link */
  #navbarTogglerDemo01 .navbar-nav [style*="3da88c"],
  #navbarTogglerDemo01 .navbar-nav [href*="login"] { color: #3da88c !important; }

  /* Body scroll lock */
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   HERO — .pg-hero
   ============================================================ */
.pg-hero {
  position: relative;
  background: linear-gradient(135deg, #07102b 0%, #172470 55%, #1a4470 100%);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pg-hero::before {
  content: '';
  position: absolute;
  top: -25%; left: 5%;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,196,168,.16) 0%, transparent 68%);
  pointer-events: none;
}
.pg-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -8%;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,56,150,.4) 0%, transparent 68%);
  pointer-events: none;
}

.pg-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.pg-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 0 80px;
}

.pg-hero__layout {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 3rem;
  align-items: center;
}
.pg-hero__layout--no-video {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: right;
}

.pg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(94,196,168,.18);
  border: 1px solid rgba(94,196,168,.30);
  color: var(--accent);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.pg-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94,196,168,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(94,196,168,0); }
}

.pg-hero__title {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.pg-hero__title strong { display: block; }

.pg-hero__word-wrap {
  display: inline-block;
  min-height: 1.35em;
  vertical-align: bottom;
}
#word { color: var(--accent); }

.pg-hero__desc {
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.pg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
}

.pg-hero__edu {
  display: block;
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .75rem 1.2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  box-sizing: border-box;
}
.pg-hero__edu a { color: #8ab8ff; text-decoration: underline; }
.pg-hero__edu a:hover { color: var(--accent); }
.pg-hero__edu img { vertical-align: middle; }

.pg-hero__media { position: relative; }

/* ===== VIDEO — HOLOGRAPHIC REVEAL ===== */
/* Ambient glow behind the video — JS drives --vprog (0→1) on .pg-hero__media */
.pg-hero__media {
  --vprog: 0;
}

/* Outer wrapper — positioning parent for video badges */
.pg-video-outer {
  position: relative;
}

/* Video badges — same style as device badges, different position */
.pg-device__badge.pg-video__badge--1 {
  top: 52%;
  bottom: auto;
  right: -16px;
  animation-delay: 0s;
}
.pg-device__badge.pg-video__badge--2 {
  top: 70%;
  bottom: auto;
  left: -16px;
  animation-delay: 1.8s;
}
@media (max-width: 991px) {
  .pg-device__badge.pg-video__badge--1 { right: 0; }
  .pg-device__badge.pg-video__badge--2 { left: 0; }
}

/* Desktop: video container floats continuously (same feel as device mockup) */
@keyframes videoMediaFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%       { transform: translate3d(0, -14px, 0); }
}
@media (min-width: 992px) {
  .pg-hero__media:has(.pg-video-wrap) {
    animation: videoMediaFloat 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
  }
}
.pg-hero__media::after {
  content: '';
  position: absolute;
  bottom: -55px; left: -12%; right: -12%;
  height: 150px;
  background: radial-gradient(ellipse at center,
    rgba(94,196,168,.55) 0%,
    rgba(40,56,150,.32) 42%,
    transparent 70%);
  filter: blur(38px);
  pointer-events: none;
  z-index: 0;
  opacity: var(--vprog);
  transform: scale(calc(0.35 + 0.65 * var(--vprog)));
  transform-origin: center bottom;
}

.pg-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  /* Initial shadow — JS morphs this dynamically on scroll */
  box-shadow:
    0 20px 50px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  padding-top: 56.25%;
  transform-origin: center top;
  will-change: transform, filter;
}
.pg-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Gradient overlay — blends video bottom into hero dark bg */
.pg-video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to top, rgba(7,16,43,.30) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ===== DEVICE / BROWSER MOCKUP ===== */
.pg-device-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  /* 3D tilt for depth effect — desktop only */
  transform-style: preserve-3d;
  will-change: transform;
}

/* Floating animation on the device */
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.pg-device__glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(94,196,168,.50) 0%, transparent 68%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Second glow for richer look */
.pg-device__glow::after {
  content: '';
  position: absolute;
  inset: 20% 15%;
  background: radial-gradient(ellipse at center, rgba(40,56,150,.40) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.pg-device {
  position: relative;
  z-index: 1;
  background: #141929;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,.60),
    0 0 0 1px rgba(255,255,255,.10),
    inset 0 1px 0 rgba(255,255,255,.06);
  animation: deviceFloat 6s ease-in-out infinite;
}

.pg-device__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: linear-gradient(90deg, #1e2545, #252e56);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.pg-device__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pg-device__dot--red    { background: #ff5f57; box-shadow: 0 0 6px rgba(255,95,87,.5); }
.pg-device__dot--yellow { background: #febc2e; box-shadow: 0 0 6px rgba(254,188,46,.5); }
.pg-device__dot--green  { background: #28c840; box-shadow: 0 0 6px rgba(40,200,64,.5); }

/* Simulated address bar */
.pg-device__url-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0 6px;
}
/* Fallback for pages that just have .pg-device__url without a wrapper */
.pg-device__url {
  flex: 1;
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .03em;
  font-family: 'Heebo', monospace;
  direction: ltr;
}

.pg-device img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top 40px center;
}

/* floating credential badges */
.pg-device__badge {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow:
    0 8px 28px rgba(40,56,150,.22),
    0 0 0 1px rgba(40,56,150,.08);
  white-space: nowrap;
  animation: badgeFloat 3.5s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pg-device__badge--1 {
  bottom: 20%;
  right: -16px;
  animation-delay: 0s;
}
.pg-device__badge--2 {
  bottom: 5%;
  left: -16px;
  animation-delay: 1.8s;
}

@keyframes badgeFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-10px) scale(1.03); }
}

/* 3D perspective tilt — desktop */
@media (min-width: 992px) {
  .pg-device-wrap {
    transform: perspective(1100px) rotateX(3deg) rotateY(-10deg);
    transition: transform 0.6s ease;
  }
  .pg-device-wrap:hover {
    transform: perspective(1100px) rotateX(1deg) rotateY(-5deg);
  }
}

@media (max-width: 991px) {
  .pg-hero__layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .pg-hero__inner { padding: 100px 0 50px; }
  .pg-hero__title { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .pg-device-wrap { max-width: 440px; }
  .pg-device__badge--1 { right: 0; }
  .pg-device__badge--2 { left: 0; }
}
@media (max-width: 575px) {
  .pg-hero__actions { flex-direction: column; }
  .pg-btn { text-align: center; justify-content: center; }
  .pg-device img { max-height: 240px; }
}


/* ============================================================
   FEATURES — .pg-features
   ============================================================ */
.pg-features { padding: 90px 0; background: var(--white); }

.pg-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pg-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}
.pg-feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity .32s ease;
}
.pg-feature-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 20px 56px rgba(40,56,150,.15);
  background: #fdfdff;
}
.pg-feature-card:hover::before { opacity: 1; }

.pg-feature-card__icon {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(40,56,150,.08), rgba(94,196,168,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pg-feature-card__icon img { width: 34px; height: 34px; object-fit: contain; }

.pg-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-darker);
  margin-bottom: .6rem;
}
.pg-feature-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) { .pg-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .pg-features__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — .pg-process
   ============================================================ */
.pg-process { padding: 90px 0; background: var(--light-bg); }

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

.pg-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.pg-step__num {
  position: absolute;
  top: -14px; right: 1.5rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .82rem;
  box-shadow: 0 4px 12px rgba(40,56,150,.30);
}
.pg-step__icon { margin-bottom: 1rem; }
.pg-step__icon img { width: 40px; height: 40px; object-fit: contain; }
.pg-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-darker);
  margin-bottom: .6rem;
}
.pg-step p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767px) { .pg-process__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ — .pg-faq
   ============================================================ */
.pg-faq { padding: 90px 0; background: var(--white); }

.pg-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.pg-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pg-faq__item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(94,196,168,.12);
}

.pg-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
}
.pg-faq__question:hover { background: var(--light-bg); }

.pg-faq__question-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-darker);
  flex: 1;
  text-align: right;
}

.pg-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.pg-faq__item.active .pg-faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.pg-faq__answer {
  display: none;
  padding: .5rem 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  text-align: right;
}

/* ============================================================
   TESTIMONIALS — .pg-testimonials
   ============================================================ */
.pg-testimonials { padding: 90px 0; background: var(--light-bg); }

.owl-carousel2.swiper { overflow: hidden; }
.owl-carousel2 .swiper-wrapper { align-items: stretch; }
.owl-carousel2 .swiper-slide { height: auto; }

.owl-carousel2 .item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: right;
}
.tst-author { font-size: 1.1rem; font-weight: 800; color: var(--primary-darker); }
.tst-image img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.owl-carousel2 .item p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
  text-align: right;
  direction: rtl;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tst-rating { display: flex; gap: .25rem; align-items: center; }
.feedback_star { width: 18px; height: 18px; }

.swiper-pagination { position: static; margin-top: 1.5rem; text-align: center; }
.swiper-pagination-bullet { background: var(--primary); opacity: .3; width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin: 0 3px; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }

/* ============================================================
   STATS — .pg-stats
   ============================================================ */
.pg-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #07102b, #1b2d89);
  position: relative;
  overflow: hidden;
}
.pg-stats::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,196,168,.10) 0%, transparent 65%);
  pointer-events: none;
}

.pg-stats__headline {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pg-stats__headline h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}

.pg-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pg-stat {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.pg-stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.10); }

.pg-stat__icon { margin: 0 auto 1rem; opacity: .7; }
.pg-stat__icon img { width: 44px; height: 44px; filter: brightness(0) invert(1); }

.pg-stat__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .5rem;
}
.pg-stat__label {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.scVal, .fpVal, .tMVal { color: inherit; }

@media (max-width: 767px) {
  .pg-stats__grid { grid-template-columns: 1fr; }
  .pg-stat { padding: 2rem 1.5rem; }
}

/* ============================================================
   MODULES
   ============================================================ */
.our-services { padding: 90px 0; background: var(--light-bg); }
.our-services .section-title { text-align: center; margin-bottom: 3rem; }
.our-services .section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary-darker);
}

.pricing-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
  height: 100%;
}
/* Gradient top bar */
.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
/* Subtle shimmer overlay on hover */
.pricing-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94,196,168,.04) 0%, rgba(40,56,150,.04) 100%);
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}
.pricing-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px rgba(40,56,150,.16);
  background: #fdfdff;
}
.pricing-box:hover::after { opacity: 1; }
.pricing-box .plan-price { font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.pricing-box h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary-darker); margin-bottom: .75rem; margin-top: .5rem; }
.pricing-box ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.pricing-box ul li {
  display: flex;
  flex-direction: row; /* direction:rtl makes row flow right→left; ✓ lands on the right */
  align-items: flex-start;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  text-align: right;
  direction: rtl;
}
.pricing-box ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.pricing-box .btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #4050b5);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-box .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(40,56,150,.3); color: var(--white); }

/* ============================================================
   CONTACT — #contact
   ============================================================ */
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-darker), var(--primary));
  position: relative;
  margin-top: 4px;
}
#contact h2 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}
.title-line { display: none; }
#contact .section-title span { font-size: 1.5rem; color: var(--white); font-weight: 700; }
#contact .section-title h2[style] { color: var(--white) !important; font-family: 'Heebo', sans-serif !important; }

.form-inputs {
  border-radius: var(--radius-xs) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  background: rgba(255,255,255,.08) !important;
  color: var(--white) !important;
  font-family: 'Heebo', sans-serif !important;
  margin-bottom: .75rem !important;
  padding: .75rem 1rem !important;
  width: 100%;
  display: block;
}
.form-inputs::placeholder { color: rgba(255,255,255,.5) !important; }
.form-inputs:focus {
  background: rgba(255,255,255,.14) !important;
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(94,196,168,.2) !important;
}
textarea.form-inputs { resize: vertical; }

#contact-form input[type=submit] {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: .75rem 2rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  font-family: 'Heebo', sans-serif !important;
  transition: background var(--transition), transform var(--transition) !important;
  width: auto !important;
  display: inline-block !important;
}
#contact-form input[type=submit]:hover { background: var(--accent-dark) !important; transform: translateY(-2px) !important; }

.whatsapp-control {
  background: #25d366 !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: .75rem 2rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  font-family: 'Heebo', sans-serif !important;
  margin-top: .5rem !important;
  transition: background var(--transition) !important;
  display: block !important;
  width: 100% !important;
}
.whatsapp-control:hover { background: #1eb258 !important; }

.contact-image { border-radius: var(--radius); overflow: hidden; }
.contact-image img { border-radius: var(--radius); width: 100%; height: auto; }
#contact .g-recaptcha { margin: .5rem 0; }

/* ============================================================
   FOOTER — #footer
   ============================================================ */
#footer {
  background: linear-gradient(160deg, #06091e, #0f1a5a);
  padding: 60px 0 20px;
  border-top: 3px solid var(--accent);
}
#footer .section-title { margin-bottom: .75rem; }
#footer .section-title span { color: var(--white) !important; font-weight: 700; font-size: 1rem !important; }
#footer span[style*="color:white"],
#footer span[style*="color: white"] { color: var(--white) !important; }
#footer address span { color: rgba(255,255,255,.6); font-size: .88rem; }
#footer address a { color: rgba(255,255,255,.6); font-size: .88rem; }
#footer address a:hover { color: var(--accent); }

.footer_menu ul { list-style: none; padding: 0; margin: .75rem 0 0; }
.footer_menu ul li { margin-bottom: .3rem; }
.footer_menu ul li a { color: rgba(255,255,255,.5); font-size: .82rem; transition: color var(--transition); }
.footer_menu ul li a:hover { color: var(--accent); }

.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  border-radius: var(--radius-xs);
  margin-bottom: .5rem;
  font-family: 'Heebo', sans-serif;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.45); }
#form-submit {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  border-radius: 50px !important;
}
#form-submit:hover { background: var(--accent-dark) !important; }
.newsletter-form > div span { color: rgba(255,255,255,.4); font-size: .78rem; }

.copyright-text span { color: rgba(255,255,255,.35); font-size: .82rem; }
#footer hr { border-color: rgba(255,255,255,.08); }
#footer a[aria-label] { transition: transform var(--transition); display: inline-block; }
#footer a[aria-label]:hover { transform: translateY(-3px); }

/* ============================================================
   ALERTS / NOTIFICATIONS
   ============================================================ */
.pull-alert { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; display: flex; justify-content: center; pointer-events: none; }
.alert2 { display: none; min-width: 280px; padding: 1.25rem 2rem; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; font-family: 'Heebo', sans-serif; pointer-events: auto; }
.alert-success2 { background: var(--accent); color: var(--white); box-shadow: 0 8px 30px rgba(94,196,168,.4); }
.alert-error2   { background: #e94545; color: var(--white); box-shadow: 0 8px 30px rgba(233,69,69,.4); }
.hr-alert { border-color: rgba(255,255,255,.35); }

/* ============================================================
   ACCESSIBILITY WIDGET
   ============================================================ */
#NagishLiTrigger {
  right: 10px !important;
  max-width: 50px; max-height: 50px;
  bottom: 20px !important;
}
#NagishLiTrigger span img { width: 20px; }
.nagishli-trigger-icon { background-color: var(--bs-primary) !important; }

/* ============================================================
   MODULE ICONS — .mod-icon
   ============================================================ */
.mod-icon {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(40,56,150,.10), rgba(94,196,168,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1rem;
  transition: transform var(--transition);
}
.pricing-box:hover .mod-icon { transform: scale(1.1) rotate(-5deg); }

.pricing-box-active {
  background: linear-gradient(135deg, var(--primary), #4050b5);
  border-color: transparent;
}
.pricing-box-active .mod-icon  { background: rgba(255,255,255,.18); }
.pricing-box-active h3         { color: var(--white) !important; }
.pricing-box-active .pricing-list li { color: rgba(255,255,255,.8); border-bottom-color: rgba(255,255,255,.12); }
.pricing-box-active .pricing-list li::before { color: var(--accent); }

/* Keep active style on hover — only add translateY animation, no background change */
.pricing-box-active:hover {
  background: linear-gradient(135deg, var(--primary), #4050b5);
  box-shadow: 0 20px 56px rgba(40,56,150,.25);
}
.pricing-box-active:hover::after { opacity: 0; }
.pricing-box-active:hover h3 { color: var(--white) !important; }
.pricing-box-active:hover .pricing-list li { color: rgba(255,255,255,.8); }
.pricing-box-active:hover .mod-icon { background: rgba(255,255,255,.18); }

/* "קרא עוד" outline button inside pricing box */
.pricing-box .btn.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.pricing-box .btn.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.pricing-box-active .btn.btn-outline-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Module cards responsive tweaks */
@media (max-width: 991px) {
  section.pg-modules { padding: 60px 0; }
  .pg-modules .container { max-width: 95%; }
}
@media (max-width: 575px) {
  section.pg-modules { padding: 40px 0; }
  .pg-modules .row > [class*="col-"] {
    max-width: 400px;
    margin-inline: auto;
  }
  .pricing-box { padding: 1.5rem 1.25rem; }
}

/* Modules section */
section.pg-modules { padding: 90px 0; background: var(--light-bg); }

/* ============================================================
   CONTACT — NEW DESIGN
   ============================================================ */
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-darker) 0%, #1b2d89 100%);
  position: relative;
  margin-top: 0;
}

/* Override old form-inputs styles when using pg-field */
.pg-contact__badge {
  background: var(--accent) !important;
  color: var(--white) !important;
}

.pg-contact__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.pg-field {
  width: 100%;
  padding: .875rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: .95rem;
  display: block;
  margin-bottom: .75rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: right;
  direction: rtl;
}
.pg-field::placeholder { color: rgba(255,255,255,.45); }
.pg-field:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 3px rgba(94,196,168,.2);
}
textarea.pg-field { resize: vertical; }

.pg-contact__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }

.pg-contact-submit {
  flex: 1; min-width: 130px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: 50px; border: none;
  background: var(--accent); color: var(--white);
  font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.pg-contact-submit:hover:not(:disabled) { background: var(--accent-dark); transform: translateY(-2px); }
.pg-contact-submit:disabled { opacity: .65; cursor: not-allowed; }

/* Loading spinner inside submit button */
.pg-contact-submit__spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pg-spin .7s linear infinite;
}
@keyframes pg-spin { to { transform: rotate(360deg); } }

/* Success state */
.pg-contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}
.pg-contact__success-icon { font-size: 3.5rem; color: var(--accent); line-height: 1; }
.pg-contact__success-icon .ti { font-size: 3.5rem; }
.pg-contact__success h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 0; }
.pg-contact__success p  { color: rgba(255,255,255,.7); font-size: .97rem; margin: 0; }

/* reCAPTCHA wrapper — centers the widget and rounds the frame */
.pg-recaptcha-wrap {
  margin: 1rem 0 .5rem;
  display: flex;
}
.pg-recaptcha-wrap .g-recaptcha > div {
  border-radius: 12px;
  overflow: hidden;
}
.pg-recaptcha-error {
  color: #ff7a7a;
  font-size: .85rem;
  margin-bottom: .5rem;
}

.pg-contact-wa {
  flex: 1; min-width: 130px;
  padding: .875rem 1.5rem;
  border-radius: 50px; border: none;
  background: #25d366; color: var(--white);
  font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.pg-contact-wa:hover { background: #1eb258; transform: translateY(-2px); }

.pg-contact__info-col { display: flex; flex-direction: column; gap: 1rem; }

.pg-contact__info-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  direction: rtl;
  transition: background var(--transition), transform var(--transition);
}
.pg-contact__info-card:hover { background: rgba(255,255,255,.12); transform: translateX(-4px); }
.pg-contact__info-card--highlight {
  background: rgba(94,196,168,.12);
  border-color: rgba(94,196,168,.25);
}

.pg-contact__info-icon { font-size: 1.75rem; flex-shrink: 0; }
.pg-contact__info-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .2rem; }
.pg-contact__info-value { font-size: .98rem; font-weight: 700; color: var(--white); }
.pg-contact__info-value a { color: var(--accent); }

@media (max-width: 767px) {
  .pg-contact__grid  { grid-template-columns: 1fr; }
  .pg-contact__btns  { flex-direction: column; }
  .pg-contact__info-card:hover { transform: none; }
}

/* ── Hero CSS animation (replaces AOS to avoid opacity-0 flash) ─────────── */
.pg-hero-animate {
  animation: heroFadeUp .9s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Feature / process icon in pg-template (emoji + Tabler Icons) ──────────── */
.pg-feature-card__icon .mod-icon {
  margin: 0 auto;
}
.pg-step__icon .mod-icon {
  margin: 0;  /* right-aligned in RTL */
}
.pg-feature-card__icon i[class^="ti"] {
  font-size: 2.2rem;
  color: var(--accent, #5ec4a8);
  display: block;
  margin: 0 auto;
  line-height: 1;
}
.pg-step__icon i[class^="ti"] {
  font-size: 2rem;
  color: var(--accent, #5ec4a8);
  display: block;
  line-height: 1;
}
.pg-stat__icon i[class^="ti"] {
  font-size: 2.4rem;
  color: var(--accent, #5ec4a8);
  display: block;
  line-height: 1;
}
.pg-feature-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.pg-step__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
