

/* Self-hosted fonts (Inter + Rubik for multi-language support) */

/* Inter font (English / LTR languages) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Inter-Bold.woff2') format('woff2');
}

/* Rubik font (Hebrew / RTL languages) */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Rubik-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Rubik-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Rubik-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Rubik-Bold.woff2') format('woff2');
}
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #FFD800;
  --secondary: #000000;
  --accent: #FFF176;
  --bg-light: #FFFFFF;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted: #5F6368;
  --border-light: #E6E6E6;
  --border-dark: #2A2A2A;
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #FFD800;

  --radius-sm: 2px;
  --radius-card: 4px;
  --radius-btn: 4px;
  --radius-img: 0px;
  --radius-badge: 2px;
  --radius-input: 4px;
  --shadow-subtle: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-card: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-elevated: 0 24px 72px rgba(0,0,0,0.28);
  --shadow-btn-hover: 0 12px 40px rgba(255,216,0,0.35);
  --spacing-section: 96px;
  --spacing-section-mobile: 56px;
  --spacing-card-padding: 32px;
  --spacing-card-gap: 24px;
  --spacing-element-gap: 16px;
  --transition-default: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-hover: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-primary: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  --gradient-secondary: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  --gradient-gold-shine: linear-gradient(135deg, #FFD700 0%, #F5C800 50%, #E0A800 100%);
  --gradient-gold-accent: linear-gradient(90deg, #F5C800 0%, #FFE566 100%);
  --gradient-dark-section: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
  --gradient-light-section: linear-gradient(180deg, #F9F9F9 0%, #EFEFEF 100%);
  --gradient-overlay-dark: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.0) 100%);
  --gradient-overlay-light: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 100%);
}

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

html {
  font-size: 16px !important;
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h4 {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h6 {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
  font-family: 'Rubik', sans-serif;
}

small,
.small-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

span,
div,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-family: 'Rubik', sans-serif;
}

a {
  color: var(--accent, var(--primary));
  text-decoration: none;
  transition: var(--transition-hover);
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-img);
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}

blockquote {
  border-right: 4px solid var(--primary);
  padding-right: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

code,
pre {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 28px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  p {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }
  h2 {
    font-size: 22px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }
  h3 {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }
  p {
    font-size: 14px !important;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition-hover);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
}

.btn:hover {
  box-shadow: var(--shadow-btn-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: #E0A800;
  border-color: #E0A800;
  color: var(--text-dark);
  box-shadow: var(--shadow-btn-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: var(--text-light);
  box-shadow: var(--shadow-card);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-dark);
  box-shadow: var(--shadow-btn-hover);
}

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

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-subtle);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

.section {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-gradient-dark {
  background: var(--gradient-dark-section);
  color: var(--text-light);
}

.section-gradient-light {
  background: var(--gradient-light-section);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--spacing-section-mobile);
    padding-bottom: var(--spacing-section-mobile);
  }
}

.card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: var(--spacing-card-padding);
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
  border: 1px solid var(--border-light);
}

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

.card-dark {
  background: #1A1A1A;
  border-color: var(--border-dark);
  color: var(--text-light);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-badge);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.badge-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.badge-dark {
  background: var(--secondary);
  color: var(--text-light);
}

.badge-muted {
  background: var(--border-light);
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: var(--radius-input);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition-default);
  direction: rtl;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 216, 0, 0.18);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.font-medium { font-weight: 500 !important; }
.font-normal { font-weight: 400 !important; }

.uppercase { text-transform: uppercase !important; }
.capitalize { text-transform: capitalize !important; }

.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.d-inline-flex { display: inline-flex !important; }

.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }

.gap-sm { gap: var(--spacing-element-gap) !important; }
.gap-md { gap: var(--spacing-card-gap) !important; }
.gap-lg { gap: var(--spacing-card-padding) !important; }

.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

.overflow-hidden { overflow: hidden !important; }

.shadow-subtle { box-shadow: var(--shadow-subtle) !important; }
.shadow-card { box-shadow: var(--shadow-card) !important; }
.shadow-elevated { box-shadow: var(--shadow-elevated) !important; }

.rounded-sm { border-radius: var(--radius-sm) !important; }
.rounded-card { border-radius: var(--radius-card) !important; }
.rounded-full { border-radius: 9999px !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

html[dir="rtl"] .whatsapp-float {
  right: 20px;
  left: auto;
}

html[dir="ltr"] .whatsapp-float,
html:not([dir]) .whatsapp-float {
  left: 20px;
  right: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  color: white;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 16px;
  }
  html[dir="rtl"] .whatsapp-float {
    right: 16px;
  }
  html[dir="ltr"] .whatsapp-float,
  html:not([dir]) .whatsapp-float {
    left: 16px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1100px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .hide-tablet {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .btn-lg {
    padding: 14px 32px;
    font-size: 15px;
  }
  .card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .container {
    padding: 0 12px;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}

/* Navbar Styles */
:root {
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #FFD800;
  --primary: #FFD800;
  --secondary: #000000;
  --accent: #FFF176;
  --bg-light: #FFFFFF;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted: #5F6368;
  --border-light: #E6E6E6;
  --border-dark: #2A2A2A;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--nav-bg);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 80%, transparent 100%);
  width: 100%;
  direction: rtl;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  width: 100%;
  box-sizing: border-box;
  direction: rtl;
}

.nav-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
}

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex: 1;
  justify-content: center;
  direction: rtl;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(255, 216, 0, 0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.nav-cta-btn:hover {
  background: #ffe033;
  color: var(--text-dark);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-1px);
}

.nav-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  border-radius: 4px;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease;
}

.mobile-toggle:hover {
  color: var(--nav-text-hover);
}

.phone-header-btn {
  display: none;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 2px solid rgba(255,216,0,0.6);
  cursor: pointer;
  color: var(--nav-text);
  padding: 7px;
  border-radius: 50%;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  width: 38px;
  height: 38px;
}

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

@media (max-width: 768px) {
  .navbar {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 100%);
  }

  .nav-container {
    height: 60px;
    padding: 0 16px;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    gap: 0;
    border-top: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: right;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-container {
    display: none;
  }

  .nav-brand .logo-link {
    display: flex;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  .nav-cta-btn {
    font-size: 12px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }
}
:root {
  --nav-bg: transparent;
  --nav-text: #FFFFFF;
  --nav-text-hover: #FFD800;
  --primary: #FFD800;
  --secondary: #000000;
  --accent: #FFF176;
  --bg-light: #FFFFFF;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted: #5F6368;
  --border-light: #E6E6E6;
  --border-dark: #2A2A2A;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--nav-bg);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 80%, transparent 100%);
  width: 100%;
  direction: rtl;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  width: 100%;
  box-sizing: border-box;
  direction: rtl;
}

.nav-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
}

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex: 1;
  justify-content: center;
  direction: rtl;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(255, 216, 0, 0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.nav-cta-btn:hover {
  background: #ffe033;
  color: var(--text-dark);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-1px);
}

.nav-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  border-radius: 4px;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease;
}

.mobile-toggle:hover {
  color: var(--nav-text-hover);
}

.phone-header-btn {
  display: none;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 2px solid rgba(255,216,0,0.6);
  cursor: pointer;
  color: var(--nav-text);
  padding: 7px;
  border-radius: 50%;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  width: 38px;
  height: 38px;
}

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

@media (max-width: 768px) {
  .navbar {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 100%);
  }

  .nav-container {
    height: 60px;
    padding: 0 16px;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    gap: 0;
    border-top: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: right;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-container {
    display: none;
  }

  .nav-brand .logo-link {
    display: flex;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  .nav-cta-btn {
    font-size: 12px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }
}


/* ============================================
   NAVBAR LAYOUT - POST-GENERATION FIXES
   Structural layout only - colors from Claude
   ============================================ */

/* Base navbar styles - structural only, colors from AI */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Background color is set by Claude's CSS - don't override */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ============================================
   DESKTOP LAYOUT (>768px)
   ============================================ */

/* Nav container - constrains max width and provides padding */
.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 70px;
}

/* Logo styling (desktop) — mobile logo stays at 110px/35px, do not adjust */
.logo {
  max-height: 40px;
  max-width: 160px !important;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-link:focus {
  outline: none;
}

/* Remove browser default dark focus box on mouse-click; preserve for keyboard (:focus-visible). */
.navbar a:focus:not(:focus-visible),
.navbar button:focus:not(:focus-visible),
.nav-menu a:focus:not(:focus-visible) {
  outline: none;
}
.navbar a:focus-visible,
.navbar button:focus-visible,
.nav-menu a:focus-visible {
  outline: 2px solid var(--primary-color, var(--primary, #FFD800));
  outline-offset: 2px;
}

/* Nav brand container */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

/* Navigation menu - positioned adjacent to logo */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu > li > a,
.nav-menu > .nav-item > a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  color: var(--nav-text, var(--text-light)) !important;
}

.nav-menu > li > a:hover,
.nav-menu > .nav-item > a:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

/* CTA Container - pushed to end of navbar */
.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: none;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-cta-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Search container inside CTA area — vertically center to match CTA button */
.nav-cta-container .zappy-search-container {
  align-self: center;
}
.nav-cta-container p {
  margin: 0 !important;
}

/* CTA button - prevent stretching to fill navbar height.
   AI CSS provides colors/gradients/etc - we only constrain sizing.
   display: inline-flex + max-height: 44px keeps it as a compact pill. */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: 44px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}

/* ============================================
   LTR DESKTOP LAYOUT (English, Spanish, French)
   ============================================ */
html[dir="ltr"] .nav-container,
html[lang="en"] .nav-container,
html[lang="es"] .nav-container,
html[lang="fr"] .nav-container {
  justify-content: flex-start;
}

html[dir="ltr"] .nav-menu,
html[lang="en"] .nav-menu,
html[lang="es"] .nav-menu,
html[lang="fr"] .nav-menu {
  margin-left: 0;
  margin-right: 0;
}

html[dir="ltr"] .nav-cta-container,
html[lang="en"] .nav-cta-container,
html[lang="es"] .nav-cta-container,
html[lang="fr"] .nav-cta-container {
  margin-left: auto;
  margin-right: 0;
}

/* ============================================
   RTL DESKTOP LAYOUT (Hebrew, Arabic)
   ============================================ */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  flex-direction: row-reverse;
  justify-content: space-between;
}

/* CTA on the left in RTL */
html[dir="rtl"] .nav-cta-container,
html[lang="he"] .nav-cta-container,
html[lang="ar"] .nav-cta-container {
  order: -1;
  margin: 0;
}

/* Wrapper groups menu and logo together on the right */
html[dir="rtl"] .nav-right-group,
html[lang="he"] .nav-right-group,
html[lang="ar"] .nav-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
  flex: 1;
  min-width: 0;
  flex-direction: row-reverse;
}

/* Within wrapper: Logo on far right, menu to its left */
html[dir="rtl"] .nav-right-group .nav-brand,
html[lang="he"] .nav-right-group .nav-brand,
html[lang="ar"] .nav-right-group .nav-brand {
  order: 2;
}

html[dir="rtl"] .nav-right-group .nav-menu,
html[lang="he"] .nav-right-group .nav-menu,
html[lang="ar"] .nav-right-group .nav-menu {
  order: 1;
}

/* ============================================
   DROPDOWN MENUS (Desktop)
   ============================================ */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.65rem;
  color: var(--nav-text, var(--text-light)) !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  overflow: visible !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--bg-light, #ffffff);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100001;
  list-style: none;
  margin: 0;
}

html[dir="rtl"] .dropdown-menu,
html[lang="he"] .dropdown-menu,
html[lang="ar"] .dropdown-menu {
  right: 0;
  left: auto;
}

html[dir="ltr"] .dropdown-menu,
html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .dropdown-menu {
  left: 0;
  right: auto;
}

@media (min-width: 769px) {
  .nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.9em;
  color: var(--text-dark, #1a1a1a) !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(128,128,128,0.1);
  color: var(--nav-text-hover, var(--accent, var(--primary))) !important;
}

/* Desktop: Hide mobile-only elements */
@media (min-width: 769px) {
  .mobile-toggle,
  .phone-header-btn {
    display: none !important;
  }
  
  /* Hide Contact in nav-menu on desktop (it shows in CTA container instead) */
  .nav-menu .mobile-contact-link {
    display: none !important;
  }
  
  /* When .nav-right-group wrapper is absent, the nav-container has 3 direct
     children (brand, menu, CTA) with space-between. flex:1 makes the menu
     fill the gap, and justify-content:flex-start pushes items toward the
     logo side instead of centering them in the available space. */
  .nav-menu {
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* Reset nav-container for mobile */
  /* CRITICAL: Reset position properties to prevent conflict with AI-generated mobile CSS */
  /* Some AI generations set .nav-container to position:fixed for slide-out menus, */
  /* position:relative is needed so .nav-brand (position:absolute) centers within it */
  .nav-container {
    padding: 0.75rem 1rem;
    gap: 0;
    justify-content: center !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    height: auto !important;
    min-height: 70px !important; /* Ensure height for absolutely positioned mobile buttons */
    width: 100% !important;
  }
  
  /* Show mobile elements - positioned as direct children of navbar */
  .mobile-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 36px !important;
    margin-top: auto;
    margin-bottom: auto;
    left: 12px; /* LTR default - hamburger on left */
    right: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .phone-header-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 36px !important;
    margin-top: auto;
    margin-bottom: auto;
    right: 12px; /* LTR default - phone on right */
    left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Ensure logo-link is centered */
  .logo-link, .nav-brand a {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  
  .mobile-toggle svg,
  .phone-header-btn svg {
    width: 24px !important;
    height: 24px !important;
    color: inherit !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    transition: opacity 0.3s ease;
  }
  
  .mobile-toggle svg path,
  .phone-header-btn svg path {
    stroke: currentColor !important;
  }
  
  .mobile-toggle img,
  .phone-header-btn img {
    width: 24px !important;
    height: 24px !important;
    /* Filter removed - preserve original image colors */
    /* ColorContrastService will handle contrast adjustments */
  }
  
  .mobile-toggle:hover svg,
  .phone-header-btn:hover svg {
    opacity: 0.8;
  }
  
  /* Remove default button styles */
  .mobile-toggle:focus,
  .mobile-toggle:active,
  .phone-header-btn:focus,
  .phone-header-btn:active {
    outline: none;
    border: none;
    box-shadow: none;
  }
  
  /* Center logo on mobile - applies to both LTR and RTL */
  /* RTL selectors added for higher specificity to override desktop RTL rules */
  /* IMPORTANT: Do NOT use margin shorthand (margin: 0 auto) — it resets margin-top
     which breaks AI centering hacks (top:50% + margin-top:-Npx).
     Use explicit left/right + transform for robust vertical centering. */
  .nav-brand,
  html[dir="rtl"] .nav-brand,
  html[lang="he"] .nav-brand,
  html[lang="ar"] .nav-brand,
  html[dir="rtl"] .nav-right-group .nav-brand,
  html[lang="he"] .nav-right-group .nav-brand,
  html[lang="ar"] .nav-right-group .nav-brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    text-align: center;
    order: 0 !important;
  }
  
  /* Mobile logo size: fixed at 35px/110px — do not adjust, especially for e-commerce/catalog sites */
  .logo {
    max-height: 35px !important;
    max-width: 110px !important;
  }
  
  /* Hide RTL wrapper on mobile */
  .nav-right-group {
    display: contents !important;
  }
  
  /* Hide CTA container on mobile - Contact will be in hamburger menu */
  .nav-cta-container {
    display: none !important;
  }
  
  /* Mobile menu - hidden by default */
  /* CRITICAL: flex-direction: column must have !important to override any desktop rules */
  .nav-menu {
    position: fixed;
    top: 70px;
    width: 50%;
    max-width: 300px;
    /* Mobile menu is position:fixed so it CANNOT inherit background from navbar.
       When --nav-bg is transparent (hero-overlay navbars), the menu would be invisible.
       Always use a solid background derived from the palette. */
    background-color: var(--bg-dark, #1a1a1a) !important;
    flex-direction: column !important;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
    margin: 0 !important;
    /* Align menu items to top, not center */
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  
  .nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  /* Show mobile-contact-link in hamburger menu */
  .nav-menu .mobile-contact-link {
    display: block !important;
  }
  
  /* LTR mobile menu text alignment - left aligned */
  html[dir="ltr"] .nav-menu a,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu a {
    text-align: left !important;
  }
  
  .nav-menu a {
    display: block;
    padding: 15px 30px;
    width: 100%;
    font-weight: 500;
  }
  
  /* Mobile dropdown menus */
  .nav-dropdown {
    position: static;
  }
  
  .dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 15px 30px;
    font-weight: 500;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: rgba(128,128,128,0.06) !important;
    min-width: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: max-height 0.3s ease !important;
  }
  
  .nav-dropdown .dropdown-menu {
    display: block;
    max-height: 0 !important;
    overflow: hidden !important;
  }
  
  .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 0.5rem 0 !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 30px 12px 50px !important;
    font-size: 0.9em;
  }
  
  html[dir="rtl"] .dropdown-menu li a,
  html[lang="he"] .dropdown-menu li a,
  html[lang="ar"] .dropdown-menu li a {
    padding: 12px 50px 12px 30px !important;
  }

  /* Mobile submenu links: use nav panel text color instead of desktop submenu color.
     Desktop submenu uses light bg + dark text, but mobile submenu is inline (transparent)
     within the nav panel which may be dark. Cannot use 'inherit' because the container
     chain (.sub-menu, li) has dark color — only nav <a> tags get light color explicitly. */
  .navbar .sub-menu li a,
  nav.navbar .sub-menu li a,
  .nav-menu .sub-menu a,
  .zappy-products-dropdown .sub-menu a,
  .sub-menu a {
    color: var(--nav-text, var(--text-light)) !important;
    white-space: normal !important;
  }
  .mobile-submenu-toggle {
    color: var(--nav-text, var(--text-light)) !important;
  }

  /* Force sub-menu hidden by default on mobile */
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important;
    position: static !important;
    max-height: 0 !important;
    overflow: hidden !important;
    
    visibility: hidden !important;
    pointer-events: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
  }
  /* Disable hover-triggered dropdowns on mobile — only open via click (.open class) */
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important;
    
    visibility: hidden !important;
    max-height: 0 !important;
    pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    pointer-events: auto !important;
    position: static !important;
    overflow-y: visible !important;
    padding: 0.5rem 0 !important;
  }

  /* Prevent hero image fade gradient from bleeding over headline text below */
  /* The .image-fade-gradient has bottom: -30px which extends below parent; */
  /* on mobile stacked layout this overlaps the h1 text */
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ============================================
   LTR POSITIONING (English, Spanish, French, etc.)
   For LTR mobile: hamburger on LEFT, phone on RIGHT
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="ltr"] .mobile-toggle,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .mobile-toggle {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="ltr"] .phone-header-btn,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .phone-header-btn {
    right: 12px !important;
    left: auto !important;
  }
  
  html[dir="ltr"] .nav-menu,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu {
    left: 0 !important;
    right: auto !important;
  }
}

/* ============================================
   RTL POSITIONING (Hebrew, Arabic)
   For RTL mobile: hamburger on RIGHT, phone on LEFT
   (natural mirror of LTR layout)
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 12px !important;
  }
  
  html[dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    right: 0 !important;
    left: auto !important;
  }
  
  html[dir="rtl"] .nav-menu a,
  html[lang="he"] .nav-menu a,
  html[lang="ar"] .nav-menu a {
    text-align: right !important;
  }
  
  /* Hide desktop language switcher on mobile - hamburger menu handles it */
  /* High specificity to override stored CSS */
  .lang-switcher,
  .nav-cta-container .lang-switcher,
  .nav-container .lang-switcher,
  .navbar .lang-switcher,
  .navbar .nav-cta-container .lang-switcher {
    display: none !important;
  }
}

/* ============================================
   CLONED SITE NAVBAR FIXES
   For sites without nav-right-group wrapper
   ============================================ */

/* Force navbar to be truly full width */
header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.navbar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: none !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* iOS Safari fix: When the page has hidden horizontal overflow (which iOS
   does not clip on the <html> element), width: 100% / 100vw on a fixed
   element resolves to the visual viewport width, which can exceed the
   actual layout viewport. This pushes children positioned with right:0
   off-screen to the right.

   Two-part fix:
   1. Navbar — left:0 + right:0 + width:auto + overflow-x:clip anchors
      the navbar to the real layout viewport on all mobile browsers.
      overflow-x:clip (instead of hidden) prevents Safari from creating
      a scroll container that intercepts touch events on child elements.
   2. Mobile dropdown menu — position:fixed + right:0 on the menu still
      anchors to the iOS visual viewport (regardless of its navbar parent).
      We use a CSS variable --ios-viewport-gap, set by a runtime JS snippet
      (see ensureIOSNavbarGapFix in githubService) to
      (window.innerWidth - document.documentElement.clientWidth). Shifting
      the menu's 'right' by that gap lands it on the real layout-viewport
      right edge on iOS, and is a no-op on every other browser (gap=0).  */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }
  /* Selector list mirrors the RTL selectors used elsewhere in Zappy CSS so
     this rule wins the cascade via equal-or-higher specificity. */
  #navMenu,
  .nav-menu,
  html[dir="rtl"] .nav-menu,
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    position: fixed !important;
    top: var(--total-header-height, var(--zappy-navbar-bottom, 70px)) !important;
    right: var(--ios-viewport-gap, 0px) !important;
  }
}

/* Constrained nav-container - content limited to 1200px and centered */
.nav-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* RTL layout for cloned sites (without nav-right-group) */
/* Base RTL styles - apply to all screens */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  justify-content: space-between !important;
}

/* Logo stays on right in RTL - DESKTOP ONLY */
/* On mobile, logo should be centered (handled by mobile media query) */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-brand,
  html[dir="rtl"] .logo-link,
  html[lang="he"] .nav-brand,
  html[lang="he"] .logo-link,
  html[lang="ar"] .nav-brand,
  html[lang="ar"] .logo-link {
    order: 2 !important;
    margin-left: 1.5rem !important;
  }
}

/* Base RTL nav-menu styles - display:flex but NOT flex-direction (that's desktop-only) */
html[dir="rtl"] .nav-menu,
html[lang="he"] .nav-menu,
html[lang="ar"] .nav-menu {
  order: 1 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* CTA button pushed to far left in RTL */
html[dir="rtl"] .cta-button,
html[dir="rtl"] a.cta-button,
html[dir="rtl"] .nav-cta-btn,
html[lang="he"] .cta-button,
html[lang="he"] a.cta-button,
html[lang="he"] .nav-cta-btn,
html[lang="ar"] .cta-button,
html[lang="ar"] a.cta-button,
html[lang="ar"] .nav-cta-btn {
  order: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* DESKTOP ONLY: Horizontal flex layout for RTL navbar - prevents breaking mobile vertical menu */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-container,
  html[lang="he"] .nav-container,
  html[lang="ar"] .nav-container {
    flex-direction: row-reverse !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
    /* flex:1 ensures menu fills space between brand and CTA so items
       stay adjacent to the logo instead of centering when the
       .nav-right-group wrapper is absent (cloned sites, etc.).
       justify-content: flex-start pushes items toward the logo
       (in RTL, flex-start = right side, adjacent to the brand). */
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   END NAVBAR FIXES
   ============================================ */

/* Post-generation fix: Remove main element margin-top and padding-top */
main { margin-top: 0 !important; padding-top: 0 !important; }


/* Footer Styles */
.site-footer {
  --primary: #FFD800;
  --secondary: #000000;
  --accent: #FFF176;
  --bg-light: #FFFFFF;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted: #5F6368;
  --border-light: #E6E6E6;
  --border-dark: #2A2A2A;
  --footer-bg: #0A0A0A;
  --footer-text: var(--text-light);
  --footer-muted: rgba(255,255,255,0.55);
  --footer-link: rgba(255,255,255,0.75);
  --footer-link-hover: var(--primary);
  --radius-sm: 4px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);

  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: 'Rubik', sans-serif;
  direction: rtl;
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ── TOP SECTION ── */
.footer-top {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── LOGO ── */
.footer-logo-wrap {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-logo-wrap .logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: var(--border-dark);
  border-radius: var(--radius-sm);
}

/* ── TAGLINE ── */
.footer-tagline {
  color: var(--footer-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 260px;
}

/* ── SOCIAL ── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--border-dark);
  color: var(--footer-link) !important;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-dark);
}

.social-link:hover {
  background: var(--primary);
  color: var(--secondary) !important;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── HEADINGS ── */
.footer-heading {
  color: var(--footer-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.heading-accent {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ── NAV LINKS ── */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links li a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-sm);
  padding: 0.1rem 0;
}

.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--primary);
  padding-right: 4px;
}

.footer-links li a:hover::before {
  opacity: 1;
}

/* ── CONTACT ── */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 216, 0, 0.12);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.contact-text {
  color: var(--footer-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-text a {
  color: var(--footer-link);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ── CTA COLUMN ── */
.footer-col--cta {
  background: rgba(255, 216, 0, 0.04);
  border: 1px solid rgba(255, 216, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.footer-cta-text {
  color: var(--footer-muted);
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--secondary) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 1.25rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 216, 0, 0.25);
}

.footer-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 216, 0, 0.35);
}

.footer-cta-btn i {
  font-size: 0.8rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 1rem;
}

.footer-badge i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── DIVIDER ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border-dark) 20%, var(--primary) 50%, var(--border-dark) 80%, transparent);
  margin: 0;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.3);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  color: var(--footer-muted);
  font-size: 0.8rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0.2rem;
}

.footer-legal a:hover {
  color: var(--primary);
}

.legal-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--border-dark);
  flex-shrink: 0;
}

.zappy-attribution {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.75rem !important;
  text-decoration: none;
  transition: var(--transition);
}

.zappy-attribution:hover {
  color: var(--primary) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-col--cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-col--cta {
    grid-column: auto;
  }

  .footer-top {
    padding: 2.5rem 0 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .footer-cta-btn {
    width: 100%;
  }
}

/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }
/* RTL footer contact: icon on the right (start) side, text on the left */
html[dir="rtl"] .footer-contact li,
html[dir="rtl"] .site-footer .footer-contact li,
html[dir="rtl"] .site-footer .footer-col:nth-child(3) .footer-contact li {
  flex-direction: row !important;
  justify-content: flex-start !important;
}
html[dir="rtl"] .footer-contact .contact-icon { order: 0 !important; }
html[dir="rtl"] .footer-contact .contact-text { order: 1 !important; }
html[dir="rtl"] .footer-contact li > a { flex-direction: row !important; }
/* hero */
.index-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #111111;
  color: var(--text-light);
  overflow: visible;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  direction: rtl;
}

/* Background Image */
.index-hero-section .index-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.index-hero-section .index-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Scrim Overlay */
.index-hero-section .index-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
}

/* Yellow Brand Badge (top-right decorative motif) */
.index-hero-section .index-hero-brand-badge {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 140px;
  height: 56px;
  background: var(--primary);
  z-index: 10;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
}

/* Container */
.index-hero-section .index-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  padding-bottom: 0;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 120px;
}

/* Content Group */
.index-hero-section .index-hero-content {
  max-width: 640px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Industrial Yellow Bar Motif */
.index-hero-section .index-hero-yellow-bar {
  width: 72px;
  height: 5px;
  background: var(--primary);
  margin-bottom: 20px;
  border-radius: 0;
  flex-shrink: 0;
}

/* H1 */
.index-hero-section .index-hero-h1 {font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
  text-align: start;
  margin: 0 0 24px 0;}

/* Subtitle */
.index-hero-section .index-hero-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  text-align: start;
  margin: 0 0 36px 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  max-width: 520px;
}

/* CTA Buttons */
.index-hero-section .index-hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.index-hero-section .index-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-primary:hover {
  background: #ffe033;
  box-shadow: 0 16px 48px rgba(255,216,0,0.5);
  transform: translateY(-2px);
}

.index-hero-section .index-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.75);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Trust Points Row */
.index-hero-section .index-hero-trust-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.index-hero-section .index-hero-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,216,0,0.28);
  border-radius: 2px;
  padding: 7px 14px;
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.index-hero-section .index-hero-trust-item i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Bottom Diagonal Divider */
.index-hero-section .index-hero-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.index-hero-section .index-hero-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .index-hero-section .index-hero-h1 {
    font-size: 2.8rem;
  }
  .index-hero-section .index-hero-container {
    padding: 0 32px;
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .index-hero-section {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 80px;
  }
  .index-hero-section .index-hero-scrim {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.88) 60%, rgba(0,0,0,0.95) 100%);
  }
  .index-hero-section .index-hero-container {
    padding: 0 16px;
    padding-top: 100px;
    min-height: 100svh;
  }
  .index-hero-section .index-hero-content {
    max-width: 100%;
    padding-bottom: 60px;
  }
  .index-hero-section .index-hero-h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }
  .index-hero-section .index-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .index-hero-section .index-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .index-hero-section .index-hero-btn-primary,
  .index-hero-section .index-hero-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .index-hero-section .index-hero-trust-row {
    gap: 8px 10px;
  }
  .index-hero-section .index-hero-trust-item {
    font-size: 0.78rem;
    padding: 6px 10px;
    white-space: normal;
  }
  .index-hero-section .index-hero-brand-badge {
    width: 90px;
    height: 40px;
  }
  .index-hero-section .index-hero-divider-wrapper {
    height: 48px;
  }
}
/* ZAPPY_POSTGEN_GUARD_HERO_FONT_CAP:index-hero */
.hero h1, .hero-section h1, [class*="hero-"] h1, [class~="hero"] h1, .hero .hero-title, .hero-title { font-size: min(var(--display-xl, 6rem), 6rem) !important; line-height: var(--leading-display, 1.05); }
@media (max-width: 768px) {
  .hero h1, .hero-section h1, [class*="hero-"] h1, [class~="hero"] h1, .hero .hero-title, .hero-title { font-size: clamp(2rem, 9vw, 3rem) !important; }
}

/* ZAPPY_POSTGEN_GUARD_HERO_TYPO:בית-hero (index-hero) — stripped 1 jarring hero headline effect(s) */


/* services */
.index-services-section {
  position: relative;
  overflow: visible;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px 56px;
  direction: rtl;
}

.index-services-section .index-services-container {
  max-width: 1280px;
  margin: 0 auto;
  direction: rtl;
}

/* ── INTRO BLOCK ── */
.index-services-section .index-services-intro {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.index-services-section .index-services-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--primary);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.index-services-section .index-services-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-align: center;
}

.index-services-section .index-services-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ── GRIDS ── */
.index-services-section .index-services-grid {
  direction: rtl;
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

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

.index-services-section .index-services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc(66.666% + 16px);
  margin-inline-end: auto;
  margin-bottom: 0;
}

/* ── CARD ── */
.index-services-section .index-services-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 260px;
}

.index-services-section .index-services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}

/* Bold yellow top edge */
.index-services-section .index-services-card-top-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #FFD800 0%, #F5C800 60%, #E0A800 100%);
  flex-shrink: 0;
}

/* Black icon container — top-start corner (right in RTL) */
.index-services-section .index-services-icon-wrap {
  align-self: flex-start;
  margin: 24px 24px 0 auto;
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.index-services-section .index-services-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
}

/* Card body */
.index-services-section .index-services-card-body {
  padding: 20px 24px 28px;
  flex: 1;
}

.index-services-section .index-services-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-align: right;
}

.index-services-section .index-services-card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* Subtle bottom accent line on card */
.index-services-section .index-services-card-accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,216,0,0.35) 50%, transparent 100%);
  flex-shrink: 0;
  margin-top: auto;
}

/* ── BOTTOM DIVIDER (stepped industrial notch → pale yellow band) ── */
.index-services-section .index-services-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  pointer-events: none;
  z-index: 5;
}

.index-services-section .index-services-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .index-services-section .index-services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .index-services-section .index-services-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .index-services-section {
    padding: 56px 16px 56px;
  }

  .index-services-section .index-services-intro {
    margin-bottom: 36px;
  }

  .index-services-section .index-services-title {
    font-size: 1.6rem;
  }

  .index-services-section .index-services-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .index-services-section .index-services-grid-2 {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }

  .index-services-section .index-services-card {
    min-width: unset;
  }

  .index-services-section .index-services-icon-wrap {
    margin: 20px 20px 0 auto;
    width: 48px;
    height: 48px;
  }

  .index-services-section .index-services-card-body {
    padding: 16px 20px 24px;
  }

  .index-services-section .index-services-divider-wrapper {
    height: 40px;
  }
}

/* stats */
.index-stats-section {
  position: relative;
  overflow: visible;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px 144px;
  direction: rtl;
}

.index-stats-section .index-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.index-stats-section .index-stats-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.index-stats-section .index-stats-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 216, 0, 0.35);
  padding: 4px 14px;
  border-radius: 2px;
}

.index-stats-section .index-stats-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 20px;
  text-align: center;
}

.index-stats-section .index-stats-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin: 0;
}

/* ── Metrics Band ── */
.index-stats-section .index-stats-metrics {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
  direction: rtl;
}

/* Column rule (separator) */
.index-stats-section .index-stats-col-rule {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 216, 0, 0.22);
  margin: 8px 0;
}

/* Individual metric */
.index-stats-section .index-stats-metric {
  padding: 0 32px;
  position: relative;
  text-align: right;
}

.index-stats-section .index-stats-metric--last {
  overflow: visible;
}

/* Oversized number */
.index-stats-section .index-stats-number {
  font-family: 'Rubik', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: flex-end;
}

.index-stats-section .index-stats-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 216, 0, 0.7);
  letter-spacing: 0;
  margin-inline-start: 4px;
}

/* Thin accent rule under number */
.index-stats-section .index-stats-divider-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 14px;
  margin-inline-start: auto;
}

.index-stats-section .index-stats-metric-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 10px;
  text-align: right;
}

.index-stats-section .index-stats-metric-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  text-align: right;
  margin: 0;
}

/* ── Decorative image peek (last metric) ── */
.index-stats-section .index-stats-img-peek {
  position: absolute;
  bottom: -80px;
  inset-inline-start: -28px;
  width: 140px;
  height: 190px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  overflow: hidden;
}

.index-stats-section .index-stats-img-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ── Footer reinforcement text ── */
.index-stats-section .index-stats-footer-text {
  max-width: 820px;
  margin: 64px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 216, 0, 0.18);
  text-align: center;
  position: relative;
  z-index: 1;
}

.index-stats-section .index-stats-footer-text p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin: 0;
}

/* ── Yellow rule ── */
.index-stats-section .index-stats-yellow-rule {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 216, 0, 0.55) 30%, rgba(255, 216, 0, 0.55) 70%, transparent 100%);
  z-index: 6;
  pointer-events: none;
}

/* ── Bottom gradient divider ── */
.index-stats-section .index-stats-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.index-stats-section .index-stats-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .index-stats-section .index-stats-metrics {
    grid-template-columns: 1fr 1px 1fr;
    row-gap: 48px;
  }

  .index-stats-section .index-stats-col-rule:nth-child(4),
  .index-stats-section .index-stats-col-rule:nth-child(6) {
    display: none;
  }

  .index-stats-section .index-stats-metric--last {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .index-stats-section .index-stats-img-peek {
    display: none;
  }
}

@media (max-width: 768px) {
  .index-stats-section {
    padding: 56px 16px 120px;
  }

  .index-stats-section .index-stats-header {
    margin-bottom: 48px;
  }

  .index-stats-section .index-stats-title {
    font-size: 1.5rem;
  }

  .index-stats-section .index-stats-metrics {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .index-stats-section .index-stats-col-rule {
    display: none !important;
  }

  .index-stats-section .index-stats-metric {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 216, 0, 0.12);
  }

  .index-stats-section .index-stats-metric:last-child {
    border-bottom: none;
  }

  .index-stats-section .index-stats-metric--last {
    grid-column: auto !important;
  }

  .index-stats-section .index-stats-img-peek {
    display: none;
  }

  .index-stats-section .index-stats-number {
    font-size: 2.6rem;
  }

  .index-stats-section .index-stats-footer-text {
    margin-top: 40px;
    padding-top: 28px;
  }

  .index-stats-section .index-stats-yellow-rule {
    bottom: 72px;
  }
}

/* process */
.index-process-section {
  position: relative;
  overflow: visible;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px 130px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.index-process-section .index-process-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.index-process-section .index-process-header {
  margin-bottom: 64px;
  text-align: right;
}

.index-process-section .index-process-label {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.index-process-section .index-process-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.index-process-section .index-process-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
}

/* ── Timeline Wrapper ── */
.index-process-section .index-process-timeline {
  position: relative;
  margin-bottom: 64px;
}

/* ── Connector Line ── */
.index-process-section .index-process-connector {
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
  z-index: 0;
}

.index-process-section .index-process-connector-line {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 4px;
  background: var(--text-dark);
}

.index-process-section .index-process-connector-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid var(--text-dark);
  border-radius: 50%;
  z-index: 2;
}

.index-process-section .index-process-connector .dot-1 { right: 10%; }
.index-process-section .index-process-connector .dot-2 { right: 28%; }
.index-process-section .index-process-connector .dot-3 { right: 46%; }
.index-process-section .index-process-connector .dot-4 { right: 64%; }
.index-process-section .index-process-connector .dot-5 { right: 82%; }

/* ── Steps Grid ── */
.index-process-section .index-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 24px;
  position: relative;
  z-index: 1;
  direction: rtl;
}

/* ── Single Step ── */
.index-process-section .index-process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
  padding-top: 16px;
}

.index-process-section .index-process-step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 3px solid var(--text-dark);
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  box-shadow: 4px 4px 0 var(--text-dark);
}

.index-process-section .index-process-step-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
}

.index-process-section .index-process-step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  background: #F5F5F5;
  border-radius: 2px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.index-process-section .index-process-step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.index-process-section .index-process-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.index-process-section .index-process-step:hover .index-process-step-number {
  background: var(--text-dark);
  color: var(--primary);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-process-section .index-process-step:hover .index-process-step-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Footer CTA Row ── */
.index-process-section .index-process-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.10);
  direction: rtl;
}

.index-process-section .index-process-footer-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  min-width: 240px;
  text-align: right;
}

.index-process-section .index-process-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.index-process-section .index-process-cta:hover {
  background: var(--text-dark);
  color: var(--primary);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
}

.index-process-section .index-process-cta .fa {
  font-size: 0.875rem;
}

/* ── Bottom Diagonal Divider ── */
.index-process-section .index-process-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-process-section .index-process-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1100px) {
  .index-process-section .index-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .index-process-section .index-process-connector {
    display: none;
  }

  .index-process-section .index-process-step {
    padding-top: 0;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .index-process-section {
    padding: 56px 16px 110px;
  }

  .index-process-section .index-process-header {
    margin-bottom: 40px;
  }

  .index-process-section .index-process-title {
    font-size: 1.5rem;
  }

  .index-process-section .index-process-connector {
    display: none;
  }

  .index-process-section .index-process-steps {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .index-process-section .index-process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 32px 0;
    text-align: right;
    position: relative;
  }

  .index-process-section .index-process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 27px;
    width: 2px;
    height: 32px;
    background: var(--text-dark);
  }

  .index-process-section .index-process-step:last-child::after {
    display: none;
  }

  .index-process-section .index-process-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .index-process-section .index-process-step-body {
    align-items: flex-end;
    flex: 1;
  }

  .index-process-section .index-process-footer {
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  .index-process-section .index-process-footer-text {
    min-width: unset;
    width: 100%;
  }

  .index-process-section .index-process-cta {
    width: 100%;
    justify-content: center;
  }
}

/* cta */
.index-cta-section {
  position: relative;
  background-color: #111111;
  background-image:
    linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
}

/* Angled solar panel geometry pattern */
.index-cta-section .index-cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 216, 0, 0.04) 0px,
      rgba(255, 216, 0, 0.04) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 216, 0, 0.025) 0px,
      rgba(255, 216, 0, 0.025) 1px,
      transparent 1px,
      transparent 28px
    );
}

/* Diagonal yellow band accent */
.index-cta-section .index-cta-yellow-band {
  position: absolute;
  inset-inline-end: -40px;
  top: 0;
  bottom: 0;
  width: 60px;
  background: var(--primary);
  transform: skewX(-8deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Container */
.index-cta-section .index-cta-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Content block */
.index-cta-section .index-cta-content {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

/* Eyebrow */
.index-cta-section .index-cta-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 216, 0, 0.35);
  border-radius: 2px;
}

/* Heading */
.index-cta-section .index-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-light);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Subtext */
.index-cta-section .index-cta-subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 36px;
  max-width: 580px;
  text-align: center;
}

/* Buttons row */
.index-cta-section .index-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

/* Primary CTA */
.index-cta-section .index-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.index-cta-section .index-cta-btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-2px);
  color: #111111;
}

.index-cta-section .index-cta-btn-primary i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Secondary CTA */
.index-cta-section .index-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.index-cta-section .index-cta-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.15);
}

.index-cta-section .index-cta-btn-secondary i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Disclaimer */
.index-cta-section .index-cta-disclaimer {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0;
}

/* ── DESKTOP ─────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .index-cta-section {
    padding: 96px 40px;
  }

  .index-cta-section .index-cta-heading {
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .index-cta-section .index-cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .index-cta-section .index-cta-btn-primary,
  .index-cta-section .index-cta-btn-secondary {
    width: auto;
    max-width: none;
  }
}

/* ── LARGE DESKTOP ───────────────────────────────────────────── */
@media (min-width: 1200px) {
  .index-cta-section .index-cta-heading {
    font-size: 3rem;
  }
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .index-cta-section {
    padding: 56px 20px;
  }

  .index-cta-section .index-cta-yellow-band {
    width: 30px;
    inset-inline-end: -15px;
  }

  .index-cta-section .index-cta-heading {
    font-size: 1.75rem;
  }

  .index-cta-section .index-cta-subtext {
    font-size: 1rem;
  }
}

/* intro */
.about-intro-section {
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding: 140px 0 72px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.about-intro-section .about-intro-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
  direction: rtl;
}

/* ── CONTENT COLUMN ── */
.about-intro-section .about-intro-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.about-intro-section .about-intro-label {
  margin-bottom: 20px;
}

.about-intro-section .about-intro-label span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-inline-start: 3px solid var(--primary);
  padding-inline-start: 10px;
  line-height: 1;
}

.about-intro-section .about-intro-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-intro-section .heading-line-plain {
  display: block;
  color: var(--text-dark);
}

.about-intro-section .heading-line-highlight {
  display: block;
}

.about-intro-section .yellow-highlight-block {
  display: inline;
  position: relative;
  color: var(--text-dark);
  z-index: 1;
  white-space: nowrap;
}

.about-intro-section .yellow-highlight-block::before {
  content: '';
  position: absolute;
  inset-inline-start: -6px;
  inset-inline-end: -6px;
  bottom: 2px;
  top: 4px;
  background: var(--primary);
  transform: skewX(-6deg);
  z-index: -1;
  border-radius: 2px;
}

.about-intro-section .about-intro-lead {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  max-width: 560px;
}

.about-intro-section .about-intro-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 36px 0;
  max-width: 560px;
}

/* ── PRINCIPLES LIST ── */
.about-intro-section .about-principles-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-intro-section .principle-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  direction: rtl;
}

.about-intro-section .principle-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  flex-shrink: 0;
}

.about-intro-section .principle-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-intro-section .principle-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.about-intro-section .principle-text span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA ── */
.about-intro-section .about-intro-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-intro-section .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(255,216,0,0.25);
}

.about-intro-section .about-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
}

/* ── IMAGE COLUMN ── */
.about-intro-section .about-intro-image-col {
  position: relative;
  align-self: stretch;
}

.about-intro-section .about-intro-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.about-intro-section .about-intro-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: 760px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-intro-section .about-intro-image-wrapper:hover .about-intro-img {
  transform: scale(1.03);
}

/* Yellow accent bar on the start side of the image */
.about-intro-section .about-img-accent-bar {
  position: absolute;
  top: 32px;
  inset-inline-end: -12px;
  width: 6px;
  height: 120px;
  background: var(--primary);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* Stat badge overlaid on image bottom */
.about-intro-section .about-img-stat-badge {
  position: absolute;
  bottom: 28px;
  inset-inline-start: -24px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 18px 24px;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  border-inline-start: 4px solid var(--primary);
  min-width: 130px;
}

.about-intro-section .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.about-intro-section .stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

/* ── BOTTOM DIVIDER ── */
.about-intro-section .about-intro-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.about-intro-section .about-intro-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-intro-section .about-intro-container {
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }

  .about-intro-section .about-intro-heading {
    font-size: 2.4rem;
  }

  .about-intro-section .about-img-stat-badge {
    inset-inline-start: -12px;
  }
}

@media (max-width: 768px) {
  .about-intro-section {
    padding: 100px 0 72px;
  }

  .about-intro-section .about-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .about-intro-section .about-intro-heading {
    font-size: 2rem;
  }

  .about-intro-section .about-intro-lead,
  .about-intro-section .about-intro-body {
    max-width: 100%;
  }

  .about-intro-section .about-intro-image-col {
    
  }

  .about-intro-section .about-intro-image-wrapper {
    min-height: 320px;
  }

  .about-intro-section .about-intro-img {
    min-height: 320px;
    max-height: 420px;
  }

  .about-intro-section .about-img-accent-bar {
    display: none;
  }

  .about-intro-section .about-img-stat-badge {
    position: static;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    border-inline-start: 4px solid var(--primary);
    border-radius: 4px;
    padding: 12px 20px;
  }

  .about-intro-section .stat-number {
    font-size: 1.5rem;
  }

  .about-intro-section .about-intro-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-intro-section .about-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:אודות-intro — stripped 1 order declaration(s) conflicting with RTL grid */


/* capabilities */
.about-capabilities-section {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px 0;
  overflow: visible;
  direction: rtl;
}

.about-capabilities-section .about-cap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 96px;
}

/* ── HEADER ── */
.about-capabilities-section .about-cap-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: none !important;
}

.about-capabilities-section .about-cap-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 216, 0, 0.35);
  border-radius: 2px;
}

.about-capabilities-section .about-cap-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 20px;
  text-align: center;
  max-width: none !important;
}

.about-capabilities-section .about-cap-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ── 2x2 GRID ── */
.about-capabilities-section .about-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  direction: rtl;
  margin-bottom: 24px;
}

/* ── CAPABILITY CARD ── */
.about-capabilities-section .about-cap-card {
  background: #1A1A1A;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.about-capabilities-section .about-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 216, 0, 0.35);
}

.about-capabilities-section .about-cap-card-inner {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

/* Yellow corner brackets */
.about-capabilities-section .about-cap-bracket {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.about-capabilities-section .about-cap-bracket--tl {
  top: 12px;
  inset-inline-start: 12px;
  border-top: 2px solid var(--primary);
  border-inline-start: 2px solid var(--primary);
}

.about-capabilities-section .about-cap-bracket--br {
  bottom: 12px;
  inset-inline-end: 12px;
  border-bottom: 2px solid var(--primary);
  border-inline-end: 2px solid var(--primary);
}

.about-capabilities-section .about-cap-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 216, 0, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-capabilities-section .about-cap-card-content {
  position: relative;
  z-index: 1;
}

.about-capabilities-section .about-cap-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 12px;
  text-align: start;
}

.about-capabilities-section .about-cap-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  text-align: start;
}

/* ── WIDE STRATEGIC CARD ── */
.about-capabilities-section .about-cap-wide-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 216, 0, 0.25);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-capabilities-section .about-cap-wide-card:hover {
  border-color: rgba(255, 216, 0, 0.5);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.about-capabilities-section .about-cap-wide-inner {
  position: relative;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.about-capabilities-section .about-cap-wide-accent {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 216, 0, 0.3) 100%);
  pointer-events: none;
  aria-hidden: true;
}

.about-capabilities-section .about-cap-wide-content {
  flex: 1;
  min-width: 0;
}

.about-capabilities-section .about-cap-wide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.about-capabilities-section .about-cap-wide-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 14px;
  text-align: start;
}

.about-capabilities-section .about-cap-wide-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  text-align: start;
}

/* Stats cluster */
.about-capabilities-section .about-cap-wide-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  direction: rtl;
}

.about-capabilities-section .about-cap-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  text-align: center;
}

.about-capabilities-section .about-cap-stat-num {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -1px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.about-capabilities-section .about-cap-stat-plus,
.about-capabilities-section .about-cap-stat-pct {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}

.about-capabilities-section .about-cap-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-top: 6px;
  white-space: nowrap;
}

.about-capabilities-section .about-cap-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 216, 0, 0.2);
  flex-shrink: 0;
}

/* ── BOTTOM DIVIDER: pale-yellow band + fine black rule ── */
.about-capabilities-section .about-cap-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28px;
  pointer-events: none;
  z-index: 5;
}

.about-capabilities-section .about-cap-divider-band {
  width: 100%;
  height: 100%;
  background: #FFF176;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-capabilities-section .about-cap-divider-rule {
  width: 100%;
  height: 2px;
  background: #111111;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-capabilities-section .about-cap-wide-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
  }

  .about-capabilities-section .about-cap-wide-stats {
    width: 100%;
    justify-content: flex-start;
  }

  .about-capabilities-section .about-cap-stat {
    padding: 0 20px;
  }

  .about-capabilities-section .about-cap-stat:first-child {
    padding-inline-start: 0;
  }
}

@media (max-width: 768px) {
  .about-capabilities-section {
    padding: 56px 16px 0;
  }

  .about-capabilities-section .about-cap-container {
    padding-bottom: 60px;
  }

  .about-capabilities-section .about-cap-header {
    margin-bottom: 36px;
  }

  .about-capabilities-section .about-cap-title {
    font-size: 1.65rem;
  }

  .about-capabilities-section .about-cap-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .about-capabilities-section .about-cap-card-inner {
    padding: 24px;
  }

  .about-capabilities-section .about-cap-wide-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  .about-capabilities-section .about-cap-wide-stats {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
  }

  .about-capabilities-section .about-cap-stat {
    padding: 0 16px;
  }

  .about-capabilities-section .about-cap-stat:first-child {
    padding-inline-start: 0;
  }

  .about-capabilities-section .about-cap-stat-num {
    font-size: 2rem;
  }

  .about-capabilities-section .about-cap-stat-divider {
    height: 36px;
  }
}

/* values */
.about-values-section {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px 120px;
  position: relative;
  overflow: visible;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

/* Container */
.about-values-section .about-values-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Header */
.about-values-section .about-values-header {
  text-align: center;
  margin-block-end: 72px;
  max-width: 680px;
  margin-inline: auto;
  margin-block-start: 0;
}

.about-values-section .about-values-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--primary);
  padding: 5px 14px;
  border-radius: 2px;
  margin-block-end: 20px;
}

.about-values-section .about-values-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
  text-align: center;
}

.about-values-section .about-values-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* Pillars Grid */
.about-values-section .about-values-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  align-items: stretch;
}

/* Individual Pillar Card */
.about-values-section .about-values-pillar {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 32px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  text-align: right;
}

.about-values-section .about-values-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.14);
}

/* Featured pillar (center) */
.about-values-section .about-values-pillar--featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(175deg, #FFFDE7 0%, #FFFFFF 60%);
}

.about-values-section .about-values-pillar--featured::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 0;
}

/* Motif SVG */
.about-values-section .about-values-motif {
  width: 56px;
  height: 56px;
  margin-block-end: 20px;
  flex-shrink: 0;
}

.about-values-section .about-values-motif svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Pillar number */
.about-values-section .about-values-pillar-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-block-end: 10px;
  font-family: 'Rubik', sans-serif;
}

/* Pillar Title */
.about-values-section .about-values-pillar-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 14px 0;
}

/* Yellow accent line under title */
.about-values-section .about-values-pillar-accent {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-block-end: 18px;
  margin-inline-start: auto;
}

/* Pillar Body Text */
.about-values-section .about-values-pillar-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 28px 0;
  flex: 1;
}

/* Stat block */
.about-values-section .about-values-pillar-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-block-start: 20px;
  border-top: 1px solid var(--border-light);
  margin-block-start: auto;
  text-align: right;
}

.about-values-section .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: 'Rubik', sans-serif;
}

.about-values-section .about-values-pillar--featured .stat-number {
  color: var(--text-dark);
}

.about-values-section .stat-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Bottom gradient wash divider */
.about-values-section .about-values-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.about-values-section .about-values-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .about-values-section .about-values-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-values-section .about-values-pillar {
    padding: 32px 24px 28px;
  }
}

@media (max-width: 768px) {
  .about-values-section {
    padding: 56px 16px 96px;
  }

  .about-values-section .about-values-header {
    margin-block-end: 48px;
  }

  .about-values-section .about-values-title {
    font-size: 1.6rem;
  }

  .about-values-section .about-values-pillars {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .about-values-section .about-values-pillar {
    padding: 28px 20px 24px;
  }

  .about-values-section .about-values-pillar--featured {
    order: -1;
  }

  .about-values-section .stat-number {
    font-size: 1.5rem;
  }
}

/* cta */
.about-cta-section {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 64px 24px;
  overflow: hidden;
  direction: rtl;
}

/* Diagonal yellow band decoration */
.about-cta-section .about-cta-yellow-band {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 60px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Bottom accent strip */
.about-cta-section .about-cta-accent-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, #E0A800 100%);
  pointer-events: none;
  z-index: 2;
}

.about-cta-section .about-cta-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.about-cta-section .about-cta-heading-block {
  flex: 1 1 auto;
}

.about-cta-section .about-cta-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  text-align: right;
  margin: 0;
  letter-spacing: -0.5px;
}

.about-cta-section .about-cta-title span {
  color: var(--primary);
}

.about-cta-section .about-cta-action-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.about-cta-section .about-cta-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  text-align: right;
  margin: 0;
  opacity: 0.88;
  max-width: 520px;
}

.about-cta-section .about-cta-btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.about-cta-section .about-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-dark);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.about-cta-section .about-cta-btn-primary:hover {
  background: #E0A800;
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-2px);
  color: var(--text-dark);
}

.about-cta-section .about-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.about-cta-section .about-cta-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Top divider rule */
.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 216, 0, 0.3);
  z-index: 2;
}

/* Desktop: side-by-side layout */
@media (min-width: 768px) {
  .about-cta-section {
    padding: 56px 48px;
  }

  .about-cta-section .about-cta-container {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .about-cta-section .about-cta-heading-block {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .about-cta-section .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-section .about-cta-action-block {
    flex: 1 1 auto;
    align-items: flex-start;
  }

  .about-cta-section .about-cta-desc {
    max-width: 460px;
  }
}

@media (min-width: 1024px) {
  .about-cta-section {
    padding: 64px 64px;
  }

  .about-cta-section .about-cta-title {
    font-size: 2.25rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-cta-section {
    padding: 48px 16px 52px;
  }

  .about-cta-section .about-cta-yellow-band {
    width: 32px;
  }

  .about-cta-section .about-cta-title {
    font-size: 1.5rem;
  }

  .about-cta-section .about-cta-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-section .about-cta-btn-primary,
  .about-cta-section .about-cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .about-cta-section .about-cta-desc {
    max-width: 100%;
  }
}

/* intro */
.services-intro-section {
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding: 120px 0 72px;
  direction: rtl;
}

.services-intro-section .services-intro-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ── */
.services-intro-section .services-intro-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.services-intro-section .services-intro-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  font-family: 'Rubik', sans-serif;
}

.services-intro-section .services-intro-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.services-intro-section .services-intro-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* ── Service Matrix ── */
.services-intro-section .services-matrix {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Primary Cards Row ── */
.services-intro-section .service-card--primary {
  flex: 1;
}

/* Primary cards sit side by side */
.services-intro-section .services-matrix > .service-card--primary {
  display: block;
}

/* Wrapper for the two primary cards in a row */
.services-intro-section .services-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  direction: rtl;
}

.services-intro-section .service-card--primary {
  grid-row: 1;
}

.services-intro-section .services-support-row {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  direction: rtl;
}

/* ── Base Card ── */
.services-intro-section .service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.services-intro-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}

/* ── Yellow Label Tag ── */
.services-intro-section .service-card-label {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  font-family: 'Rubik', sans-serif;
  z-index: 2;
}

/* ── Primary Card Inner Layout ── */
.services-intro-section .service-card--primary .service-card-inner {
  padding: 40px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.services-intro-section .service-card-icon {
  color: var(--text-dark);
  flex-shrink: 0;
}

.services-intro-section .service-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.services-intro-section .service-card-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.services-intro-section .service-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-intro-section .service-card-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.services-intro-section .service-list-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Primary Card Image ── */
.services-intro-section .service-card-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  background: #E6E6E6;
  position: relative;
  z-index: 1;
}

/* ── Support Cards ── */
.services-intro-section .service-card--support {
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-intro-section .service-support-icon {
  color: var(--text-dark);
  margin-bottom: 4px;
}

.services-intro-section .service-card--support .service-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.services-intro-section .service-card--support .service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ── Bottom Divider ── */
.services-intro-section .services-intro-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.services-intro-section .services-intro-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-intro-section .services-matrix {
    grid-template-columns: 1fr 1fr;
  }
  .services-intro-section .services-support-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .services-intro-section {
    padding: 100px 0 72px;
  }

  .services-intro-section .services-intro-container {
    padding: 0 16px;
  }

  .services-intro-section .services-intro-header {
    margin-bottom: 40px;
  }

  .services-intro-section .services-intro-title {
    font-size: 2rem;
  }

  .services-intro-section .services-matrix {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto;
  }

  .services-intro-section .service-card--primary {
    grid-row: auto;
  }

  .services-intro-section .services-support-row {
    grid-column: 1 / -1;
    grid-template-columns: 1fr !important;
  }

  .services-intro-section .service-card--primary .service-card-inner {
    padding: 36px 20px 20px;
  }

  .services-intro-section .service-card--support {
    padding: 32px 20px 28px;
  }

  .services-intro-section .service-card-image {
    height: 180px;
  }

  .services-intro-section .services-intro-divider-wrapper {
    height: 48px;
  }
}

/* benefits */
.services-benefits-section {
  position: relative;
  overflow: visible;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px 130px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.services-benefits-section .services-benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ──────────────────────────────────────────── */
.services-benefits-section .services-benefits-header {
  margin-block-end: 56px;
  text-align: start;
}

.services-benefits-section .services-benefits-label {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-block-end: 16px;
}

.services-benefits-section .services-benefits-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}

.services-benefits-section .services-benefits-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0;
}

/* ── GRID ────────────────────────────────────────────── */
.services-benefits-section .services-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  margin-block-end: 40px;
}

/* ── BENEFIT CARD ────────────────────────────────────── */
.services-benefits-section .services-benefit-card {
  position: relative;
  background: #1A1A1A;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  overflow: hidden;
}

.services-benefits-section .services-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
  border-color: rgba(255,216,0,0.35);
}

.services-benefits-section .services-benefit-card:hover .services-benefit-accent-line {
  width: 100%;
}

/* Icon wrapper */
.services-benefits-section .services-benefit-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255,216,0,0.08);
  border: 1px solid rgba(255,216,0,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-benefits-section .services-benefit-card:hover .services-benefit-icon-wrap {
  background: rgba(255,216,0,0.15);
  border-color: rgba(255,216,0,0.5);
}

/* Content block */
.services-benefits-section .services-benefit-content {
  flex: 1;
}

.services-benefits-section .services-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 8px 0;
}

.services-benefits-section .services-benefit-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0;
}

/* Yellow bottom accent line */
.services-benefits-section .services-benefit-accent-line {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── STATEMENT BAR ───────────────────────────────────── */
.services-benefits-section .services-benefits-statement-bar {
  background: linear-gradient(135deg, rgba(255,216,0,0.10) 0%, rgba(255,216,0,0.04) 100%);
  border: 1px solid rgba(255,216,0,0.3);
  border-radius: 4px;
  padding: 28px 32px;
  margin-block-end: 0;
}

.services-benefits-section .services-benefits-statement-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-benefits-section .services-benefits-statement-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.services-benefits-section .services-benefits-statement-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
  min-width: 200px;
}

.services-benefits-section .services-benefits-statement-text strong {
  color: var(--text-light);
  font-weight: 700;
}

.services-benefits-section .services-benefits-statement-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255,216,0,0.2);
}

.services-benefits-section .services-benefits-statement-cta:hover {
  background: var(--accent);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
}

/* ── BOTTOM DIAGONAL DIVIDER ─────────────────────────── */
.services-benefits-section .services-benefits-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.services-benefits-section .services-benefits-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE: TABLET ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-benefits-section .services-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── RESPONSIVE: MOBILE ──────────────────────────────── */
@media (max-width: 768px) {
  .services-benefits-section {
    padding: 56px 16px 110px;
  }

  .services-benefits-section .services-benefits-header {
    margin-block-end: 36px;
  }

  .services-benefits-section .services-benefits-title {
    font-size: 1.6rem;
  }

  .services-benefits-section .services-benefits-subtitle {
    max-width: 100%;
  }

  .services-benefits-section .services-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .services-benefits-section .services-benefit-card {
    padding: 24px;
  }

  .services-benefits-section .services-benefits-statement-bar {
    padding: 20px 20px;
  }

  .services-benefits-section .services-benefits-statement-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-benefits-section .services-benefits-statement-cta {
    width: 100%;
    justify-content: center;
  }

  .services-benefits-section .services-benefits-divider-wrapper {
    height: 60px;
  }
}

/* showcase */
.services-showcase-section {
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding: 96px 0 80px;
  direction: rtl;
}

/* ── Container ─────────────────────────────────────────── */
.services-showcase-section .services-showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* ── TEXT COLUMN ────────────────────────────────────────── */
.services-showcase-section .services-showcase-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-showcase-section .services-showcase-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 2px;
  width: fit-content;
}

.services-showcase-section .services-showcase-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.services-showcase-section .services-showcase-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
  margin: 0;
  max-width: 480px;
}

/* ── Feature List ───────────────────────────────────────── */
.services-showcase-section .services-showcase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-showcase-section .services-showcase-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
  direction: rtl;
}

.services-showcase-section .services-showcase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 2px;
  color: var(--text-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.services-showcase-section .services-showcase-list-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-showcase-section .services-showcase-list-content strong {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.services-showcase-section .services-showcase-list-content span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: #5F6368;
  line-height: 1.6;
}

/* ── CTA ────────────────────────────────────────────────── */
.services-showcase-section .services-showcase-cta {
  margin-top: 8px;
}

.services-showcase-section .services-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--text-dark);
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
}

.services-showcase-section .services-showcase-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(255, 216, 0, 0.45);
}

/* ── COLLAGE COLUMN ─────────────────────────────────────── */
.services-showcase-section .services-showcase-collage {
  position: relative;
  width: 100%;
  min-height: 460px;
}

.services-showcase-section .collage-tile {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  line-height: 0;
}

.services-showcase-section .collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-showcase-section .collage-tile:hover img {
  transform: scale(1.03);
}

/* Main tile — full width of collage column */
.services-showcase-section .collage-tile--main {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.services-showcase-section .collage-tile--main img {
  height: 320px;
}

/* Secondary tile — staggered below and inset from start (right) */
.services-showcase-section .collage-tile--secondary {
  position: absolute;
  bottom: -40px;
  inset-inline-start: 0;
  width: 55%;
  height: 190px;
  z-index: 4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 3px solid #FFFFFF;
}

.services-showcase-section .collage-tile--secondary img {
  height: 190px;
}

/* Rear tile — peeks from end-bottom corner (~30% visible) */
.services-showcase-section .collage-tile--rear {
  position: absolute;
  bottom: -60px;
  inset-inline-end: -16px;
  width: 42%;
  height: 160px;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  opacity: 0.82;
  filter: brightness(0.88);
}

.services-showcase-section .collage-tile--rear img {
  height: 160px;
}

/* Caption styling */
.services-showcase-section .collage-caption {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--primary);
  padding: 6px 14px;
  line-height: 1;
  text-align: start;
}

/* Badge */
.services-showcase-section .collage-badge {
  position: absolute;
  top: -20px;
  inset-inline-end: 24px;
  background: var(--text-dark);
  color: var(--text-light);
  border-radius: 2px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  min-width: 90px;
  text-align: center;
}

.services-showcase-section .collage-badge-number {
  font-family: 'Rubik', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.services-showcase-section .collage-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}

/* ── Bottom Divider ─────────────────────────────────────── */
.services-showcase-section .services-showcase-divider-bottom {
  position: relative;
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  height: 0;
}

.services-showcase-section .services-showcase-divider-bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(245,245,245,0.7) 100%);
  pointer-events: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-showcase-section .services-showcase-container {
    gap: 40px;
    padding: 0 24px;
  }

  .services-showcase-section .collage-tile--rear {
    inset-inline-end: -8px;
    width: 38%;
  }
}

@media (max-width: 768px) {
  .services-showcase-section {
    padding: 56px 0 60px;
  }

  .services-showcase-section .services-showcase-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 16px;
  }

  .services-showcase-section .services-showcase-heading {
    font-size: 1.625rem;
  }

  .services-showcase-section .services-showcase-intro {
    max-width: 100%;
  }

  /* Collage on mobile: static flow, simplified */
  .services-showcase-section .services-showcase-collage {
    min-height: 320px;
    margin-bottom: 60px;
  }

  .services-showcase-section .collage-tile--main {
    height: 240px;
    width: 100%;
  }

  .services-showcase-section .collage-tile--main img {
    height: 240px;
  }

  .services-showcase-section .collage-tile--secondary {
    bottom: -36px;
    inset-inline-start: 0;
    width: 52%;
    height: 160px;
  }

  .services-showcase-section .collage-tile--secondary img {
    height: 160px;
  }

  .services-showcase-section .collage-tile--rear {
    bottom: -52px;
    inset-inline-end: -8px;
    width: 40%;
    height: 130px;
  }

  .services-showcase-section .collage-tile--rear img {
    height: 130px;
  }

  .services-showcase-section .collage-badge {
    top: -16px;
    inset-inline-end: 12px;
    padding: 10px 14px;
    min-width: 76px;
  }

  .services-showcase-section .collage-badge-number {
    font-size: 1.4rem;
  }

  .services-showcase-section .services-showcase-divider-bottom {
    margin-top: 48px;
  }
}

/* cta */
.services-cta-section {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
}

/* Faint panel-grid linework */
.services-cta-section .services-cta-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 216, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 216, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
}

/* Diagonal yellow band — left edge accent */
.services-cta-section .services-cta-yellow-band {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 64px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: var(--primary);
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.85;
}

.services-cta-section .services-cta-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-cta-section .services-cta-inner {
  text-align: center;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.services-cta-section .services-cta-badge {
  display: inline-block;
  background: rgba(255, 216, 0, 0.12);
  color: var(--primary);
  border: 1px solid rgba(255, 216, 0, 0.35);
  border-radius: 2px;
  padding: 6px 18px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.services-cta-section .services-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0;
  text-align: center;
}

.services-cta-section .services-cta-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  text-align: center;
  max-width: 560px;
}

.services-cta-section .services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 216, 0, 0.18);
  margin-top: 8px;
}

.services-cta-section .services-cta-btn:hover {
  background: var(--accent);
  color: #111111;
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-2px);
}

.services-cta-section .services-cta-btn i {
  font-size: 0.875rem;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-cta-section .services-cta-btn:hover i {
  transform: translateX(-4px);
}

/* Horizontal accent rule above the section content */
.services-cta-section .services-cta-inner::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 4px;
}

@media (max-width: 768px) {
  .services-cta-section {
    padding: 56px 16px;
  }

  .services-cta-section .services-cta-heading {
    font-size: 1.6rem;
  }

  .services-cta-section .services-cta-yellow-band {
    width: 40px;
  }

  .services-cta-section .services-cta-btn {
    padding: 13px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .services-cta-section .services-cta-inner {
    gap: 18px;
  }
}

/* intro */
.solar-calculator-intro-section {
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding: 140px 24px 96px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

/* ── Container ── */
.solar-calculator-intro-section .sci-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.solar-calculator-intro-section .sci-header {
  text-align: center;
  margin-bottom: 52px;
}

.solar-calculator-intro-section .sci-label-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.solar-calculator-intro-section .sci-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-align: center;
}

.solar-calculator-intro-section .sci-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── Main Panel ── */
.solar-calculator-intro-section .sci-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  overflow: hidden;
}

/* ── Panel Header Bar ── */
.solar-calculator-intro-section .sci-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-direction: row;
}

.solar-calculator-intro-section .sci-panel-header-icon {
  display: flex;
  align-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Input Block ── */
.solar-calculator-intro-section .sci-input-block {
  padding: 32px 32px 8px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solar-calculator-intro-section .sci-input-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.solar-calculator-intro-section .sci-step-num {
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.solar-calculator-intro-section .sci-input-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.solar-calculator-intro-section .sci-input-title small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-inline-start: 4px;
}

.solar-calculator-intro-section .sci-input-field-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}

.solar-calculator-intro-section .sci-input-example {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: #F5F5F5;
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 12px 24px;
  flex-shrink: 0;
}

.solar-calculator-intro-section .sci-input-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.solar-calculator-intro-section .sci-input-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.solar-calculator-intro-section .sci-input-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.solar-calculator-intro-section .sci-input-arrow {
  display: flex;
  justify-content: center;
  color: var(--primary);
  padding-bottom: 16px;
}

/* ── Output Grid ── */
.solar-calculator-intro-section .sci-outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.solar-calculator-intro-section .sci-output-tile {
  padding: 28px 24px;
  border-inline-end: 1px solid var(--border-light);
  position: relative;
  background: #FFFFFF;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solar-calculator-intro-section .sci-output-tile:last-child {
  border-inline-end: none;
}

.solar-calculator-intro-section .sci-output-tile:hover {
  background: #FAFAFA;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 2;
}

/* Accent tile (recommended) */
.solar-calculator-intro-section .sci-output-tile--accent {
  background: #FFFDE7;
  border-top: 3px solid var(--primary);
}

.solar-calculator-intro-section .sci-output-tile--accent:hover {
  background: #FFF9C4;
}

/* Dark tile (monthly production) */
.solar-calculator-intro-section .sci-output-tile--dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-inline-end: none;
}

.solar-calculator-intro-section .sci-output-tile--dark:hover {
  background: #1A1A1A;
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-label {
  color: rgba(255,255,255,0.7);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-formula {
  border-color: var(--border-dark);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-formula-text {
  color: rgba(255,255,255,0.6);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-formula-example {
  color: var(--primary);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-step {
  background: rgba(255,216,0,0.15);
  color: var(--primary);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-icon {
  color: var(--primary);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-value {
  color: var(--text-light);
}

/* Tile internals */
.solar-calculator-intro-section .sci-tile-step {
  display: inline-flex;
  align-self: flex-start;
  background: #F0F0F0;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}

.solar-calculator-intro-section .sci-tile-icon {
  color: var(--text-muted);
  display: flex;
  margin-top: 4px;
}

.solar-calculator-intro-section .sci-tile-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solar-calculator-intro-section .sci-tile-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.solar-calculator-intro-section .sci-tile-value--highlight {
  color: var(--text-dark);
}

.solar-calculator-intro-section .sci-tile-unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.solar-calculator-intro-section .sci-output-tile--dark .sci-tile-unit {
  color: rgba(255,255,255,0.6);
}

.solar-calculator-intro-section .sci-tile-formula {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.solar-calculator-intro-section .sci-formula-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.solar-calculator-intro-section .sci-formula-example {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  background: rgba(255,216,0,0.18);
  padding: 2px 6px;
  border-radius: 2px;
  display: inline-block;
  align-self: flex-start;
}

.solar-calculator-intro-section .sci-tile-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ── Professional Note ── */
.solar-calculator-intro-section .sci-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 32px;
  background: #F9F9F9;
  border-top: 1px solid var(--border-light);
  flex-direction: row;
}

.solar-calculator-intro-section .sci-note-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.solar-calculator-intro-section .sci-note-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.solar-calculator-intro-section .sci-note-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ── Panel CTA ── */
.solar-calculator-intro-section .sci-panel-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-top: 1px solid var(--border-light);
  background: #FFFFFF;
  flex-direction: row;
  flex-wrap: wrap;
}

.solar-calculator-intro-section .sci-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.solar-calculator-intro-section .sci-cta-btn:hover {
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
  background: var(--accent);
}

.solar-calculator-intro-section .sci-cta-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Diagonal Divider ── */
.solar-calculator-intro-section .sci-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.solar-calculator-intro-section .sci-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .solar-calculator-intro-section .sci-outputs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solar-calculator-intro-section .sci-output-tile {
    border-inline-end: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .solar-calculator-intro-section .sci-output-tile:nth-child(2n) {
    border-inline-end: none;
  }

  .solar-calculator-intro-section .sci-output-tile:last-child,
  .solar-calculator-intro-section .sci-output-tile:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .solar-calculator-intro-section {
    padding: 100px 16px 80px;
  }

  .solar-calculator-intro-section .sci-title {
    font-size: 1.8rem;
  }

  .solar-calculator-intro-section .sci-panel-header {
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .solar-calculator-intro-section .sci-input-block {
    padding: 20px 20px 8px;
  }

  .solar-calculator-intro-section .sci-input-field-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .solar-calculator-intro-section .sci-outputs-grid {
    grid-template-columns: 1fr !important;
  }

  .solar-calculator-intro-section .sci-output-tile {
    border-inline-end: none !important;
    border-bottom: 1px solid var(--border-light);
  }

  .solar-calculator-intro-section .sci-output-tile:last-child {
    border-bottom: none;
  }

  .solar-calculator-intro-section .sci-tile-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 4px;
  }

  .solar-calculator-intro-section .sci-note {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
  }

  .solar-calculator-intro-section .sci-panel-cta {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .solar-calculator-intro-section .sci-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .solar-calculator-intro-section .sci-divider-wrapper {
    height: 40px;
  }
}


/* formula-steps */
.solar-calculator-formula-steps-section {
  position: relative;
  overflow: visible;
  direction: rtl;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px 144px;
  font-family: 'Rubik', sans-serif;
}

.solar-calculator-formula-steps-section .scfs-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section Header ─────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-header {
  text-align: center;
  margin-bottom: 56px;
}

.solar-calculator-formula-steps-section .scfs-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255, 216, 0, 0.4);
  border-radius: 2px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.solar-calculator-formula-steps-section .scfs-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  max-width: none !important;
}

.solar-calculator-formula-steps-section .scfs-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ── Steps Row ──────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-steps-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

/* ── Connector ──────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  gap: 4px;
  padding: 0 2px;
  margin-top: 80px;
}

.solar-calculator-formula-steps-section .scfs-connector-line {
  width: 1px;
  flex: 1;
  max-height: 40px;
  background: linear-gradient(180deg, rgba(255,216,0,0.15) 0%, rgba(255,216,0,0.6) 50%, rgba(255,216,0,0.15) 100%);
}

.solar-calculator-formula-steps-section .scfs-connector svg {
  flex-shrink: 0;
  transform: scaleX(-1); /* RTL: arrow points left */
}

/* ── Step Card ──────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-card {
  flex: 1;
  min-width: 0;
  background: #1A1A1A;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  overflow: hidden;
}

.solar-calculator-formula-steps-section .scfs-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 3px;
  height: 100%;
  background: rgba(255, 216, 0, 0.18);
  border-radius: 0 4px 4px 0;
}

.solar-calculator-formula-steps-section .scfs-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
  border-color: rgba(255, 216, 0, 0.3);
}

.solar-calculator-formula-steps-section .scfs-step-card--accent {
  background: linear-gradient(145deg, #1F1A00 0%, #181200 100%);
  border-color: rgba(255, 216, 0, 0.35);
}

.solar-calculator-formula-steps-section .scfs-step-card--accent::before {
  background: var(--primary);
  opacity: 0.7;
}

/* ── Step Number ────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 216, 0, 0.12);
  letter-spacing: -2px;
  font-family: 'Rubik', sans-serif;
  position: absolute;
  top: 16px;
  inset-inline-start: 24px;
  pointer-events: none;
  user-select: none;
}

.solar-calculator-formula-steps-section .scfs-step-number--accent {
  color: rgba(255, 216, 0, 0.22);
}

/* ── Step Content ───────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── Formula Badge ──────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-formula-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 216, 0, 0.08);
  border: 1px solid rgba(255, 216, 0, 0.25);
  border-radius: 2px;
  padding: 3px 10px;
}

.solar-calculator-formula-steps-section .scfs-formula-badge--accent {
  background: rgba(255, 216, 0, 0.15);
  border-color: rgba(255, 216, 0, 0.45);
}

.solar-calculator-formula-steps-section .scfs-formula-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  text-transform: uppercase;
}

/* ── Step Title ─────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
}

/* ── Formula Block ──────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-formula-block {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 216, 0, 0.2);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: 'Rubik', sans-serif;
}

.solar-calculator-formula-steps-section .scfs-formula-block--accent {
  background: rgba(255, 216, 0, 0.07);
  border-color: rgba(255, 216, 0, 0.4);
}

.solar-calculator-formula-steps-section .scfs-formula-eq {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  display: block;
  text-align: start;
}

/* ── Step Description ───────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-desc {
  font-size: 1rem !important;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  text-align: start;
}

/* ── Step Icon ──────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-step-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 8px;
  color: rgba(255, 216, 0, 0.35);
}

.solar-calculator-formula-steps-section .scfs-step-icon--accent {
  color: rgba(255, 216, 0, 0.65);
}

/* ── Footnote ───────────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-footnote {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  border-inline-start: 3px solid rgba(255, 216, 0, 0.5);
}

.solar-calculator-formula-steps-section .scfs-footnote-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.solar-calculator-formula-steps-section .scfs-footnote p {
  font-size: 0.875rem !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: start;
}

/* ── Bottom Divider ─────────────────────────────────────────── */
.solar-calculator-formula-steps-section .scfs-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.solar-calculator-formula-steps-section .scfs-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .solar-calculator-formula-steps-section .scfs-steps-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .solar-calculator-formula-steps-section .scfs-step-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 260px;
  }

  .solar-calculator-formula-steps-section .scfs-connector {
    display: none;
  }
}

/* ── Responsive: Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .solar-calculator-formula-steps-section {
    padding: 56px 16px 100px;
  }

  .solar-calculator-formula-steps-section .scfs-header {
    margin-bottom: 36px;
  }

  .solar-calculator-formula-steps-section .scfs-title {
    font-size: 1.5rem;
  }

  .solar-calculator-formula-steps-section .scfs-steps-row {
    flex-direction: column;
    gap: 16px;
  }

  .solar-calculator-formula-steps-section .scfs-step-card {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
  }

  .solar-calculator-formula-steps-section .scfs-connector {
    display: none;
  }

  .solar-calculator-formula-steps-section .scfs-step-number {
    font-size: 2.5rem;
  }

  .solar-calculator-formula-steps-section .scfs-footnote {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .solar-calculator-formula-steps-section .scfs-divider-wrapper {
    height: 48px;
  }
}

/* results-preview */
.solar-calculator-results-preview-section {
  position: relative;
  overflow: visible;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px 144px;
  direction: rtl;
}

.solar-calculator-results-preview-section .scrp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── Content Column ── */
.solar-calculator-results-preview-section .scrp-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solar-calculator-results-preview-section .scrp-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.solar-calculator-results-preview-section .scrp-eyebrow-line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.solar-calculator-results-preview-section .scrp-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.solar-calculator-results-preview-section .scrp-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.solar-calculator-results-preview-section .scrp-body {
  color: #444444;
  line-height: 1.75;
  margin: 0;
}

.solar-calculator-results-preview-section .scrp-guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solar-calculator-results-preview-section .scrp-guide-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: #F9F9F9;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.solar-calculator-results-preview-section .scrp-guide-item:hover {
  border-color: var(--primary);
  background: #FFFDE7;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.solar-calculator-results-preview-section .scrp-guide-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.solar-calculator-results-preview-section .scrp-guide-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.solar-calculator-results-preview-section .scrp-guide-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.solar-calculator-results-preview-section .scrp-guide-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.solar-calculator-results-preview-section .scrp-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-inline-start: 12px;
  border-inline-start: 2px solid var(--border-light);
}

/* ── Result Card ── */
.solar-calculator-results-preview-section .scrp-card-col {
  position: sticky;
  top: 120px;
}

.solar-calculator-results-preview-section .scrp-result-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.solar-calculator-results-preview-section .scrp-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
}

.solar-calculator-results-preview-section .scrp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 8px;
  flex-direction: row;
}

.solar-calculator-results-preview-section .scrp-card-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.solar-calculator-results-preview-section .scrp-brand-logo {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.solar-calculator-results-preview-section .scrp-brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.solar-calculator-results-preview-section .scrp-card-badge {
  background: var(--text-dark);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.solar-calculator-results-preview-section .scrp-card-divider {
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 20px 0;
}

.solar-calculator-results-preview-section .scrp-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.solar-calculator-results-preview-section .scrp-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #F9F9F9;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.solar-calculator-results-preview-section .scrp-metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.solar-calculator-results-preview-section .scrp-metric-value {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.solar-calculator-results-preview-section .scrp-metric-value.scrp-metric-highlight {
  color: var(--text-dark);
}

.solar-calculator-results-preview-section .scrp-metric-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.solar-calculator-results-preview-section .scrp-metric-bar {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.solar-calculator-results-preview-section .scrp-metric-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  border-radius: 2px;
}

.solar-calculator-results-preview-section .scrp-metric-badge-row {
  display: flex;
  flex-direction: row;
}

.solar-calculator-results-preview-section .scrp-yellow-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.solar-calculator-results-preview-section .scrp-card-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-direction: row;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.solar-calculator-results-preview-section .scrp-card-footer-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

.solar-calculator-results-preview-section .scrp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: row;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  margin-bottom: 12px;
}

.solar-calculator-results-preview-section .scrp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(255,216,0,0.5);
}

.solar-calculator-results-preview-section .scrp-cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.solar-calculator-results-preview-section .scrp-cta-btn:hover svg {
  transform: translateX(-4px);
}

.solar-calculator-results-preview-section .scrp-cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ── Bottom Divider ── */
.solar-calculator-results-preview-section .scrp-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.solar-calculator-results-preview-section .scrp-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .solar-calculator-results-preview-section .scrp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solar-calculator-results-preview-section .scrp-card-col {
    position: static;
  }
}

@media (max-width: 768px) {
  .solar-calculator-results-preview-section {
    padding: 56px 16px 100px;
  }

  .solar-calculator-results-preview-section .scrp-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .solar-calculator-results-preview-section .scrp-heading {
    font-size: 1.6rem;
  }

  .solar-calculator-results-preview-section .scrp-result-card {
    padding: 20px;
  }

  .solar-calculator-results-preview-section .scrp-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .solar-calculator-results-preview-section .scrp-metric-value {
    font-size: 1.35rem;
  }

  .solar-calculator-results-preview-section .scrp-card-col {
    position: static;
  }

  .solar-calculator-results-preview-section .scrp-guide-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .solar-calculator-results-preview-section .scrp-guide-icon {
    width: 36px;
    height: 36px;
  }
}

/* contact */
.solar-calculator-contact-section {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px;
  direction: rtl;
  overflow: hidden;
}

.solar-calculator-contact-section .scc-accent-bar {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  pointer-events: none;
  z-index: 2;
}

.solar-calculator-contact-section .scc-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solar-calculator-contact-section .scc-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 680px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.solar-calculator-contact-section .scc-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 216, 0, 0.1);
  border: 1px solid rgba(255, 216, 0, 0.3);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.solar-calculator-contact-section .scc-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin: 0 0 16px 0;
}

.solar-calculator-contact-section .scc-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  text-align: center;
}

.solar-calculator-contact-section .scc-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #1A1A1A;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.solar-calculator-contact-section .scc-form {
  width: 100%;
}

.solar-calculator-contact-section .scc-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  direction: rtl;
}

.solar-calculator-contact-section .scc-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solar-calculator-contact-section .scc-field-full {
  grid-column: 1 / -1;
}

.solar-calculator-contact-section .scc-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: start;
  letter-spacing: 0.3px;
}

.solar-calculator-contact-section .scc-input {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
  background: #111111;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  direction: rtl;
  text-align: start;
}

.solar-calculator-contact-section .scc-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

.solar-calculator-contact-section .scc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 216, 0, 0.18);
  background: #161616;
}

.solar-calculator-contact-section .scc-input:hover:not(:focus) {
  border-color: rgba(255, 216, 0, 0.35);
}

.solar-calculator-contact-section .scc-textarea {
  resize: vertical;
  min-height: 110px;
}

.solar-calculator-contact-section .privacy-consent {
  margin-top: 20px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.solar-calculator-contact-section .privacy-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  text-align: start;
}

.solar-calculator-contact-section .privacy-consent-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.solar-calculator-contact-section .privacy-consent-label a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.18s;
}

.solar-calculator-contact-section .privacy-consent-label a:hover {
  color: var(--accent);
}

.solar-calculator-contact-section .scc-submit-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  direction: rtl;
}

.solar-calculator-contact-section .scc-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(255, 216, 0, 0.2);
}

.solar-calculator-contact-section .scc-submit-btn:hover {
  background: linear-gradient(135deg, #FFD800 0%, #F5C800 100%);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  transform: translateY(-2px);
}

.solar-calculator-contact-section .scc-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(255, 216, 0, 0.2);
}

.solar-calculator-contact-section .scc-submit-btn i {
  font-size: 0.9rem;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.solar-calculator-contact-section .scc-submit-btn:hover i {
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .solar-calculator-contact-section {
    padding: 56px 16px;
  }

  .solar-calculator-contact-section .scc-header {
    margin-bottom: 32px;
  }

  .solar-calculator-contact-section .scc-title {
    font-size: 1.6rem;
  }

  .solar-calculator-contact-section .scc-form-wrapper {
    padding: 24px 20px;
  }

  .solar-calculator-contact-section .scc-fields-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solar-calculator-contact-section .scc-field-full {
    grid-column: 1;
  }

  .solar-calculator-contact-section .scc-submit-row {
    justify-content: stretch;
  }

  .solar-calculator-contact-section .scc-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* process */
.process-benefits-process-section {
  position: relative;
  overflow: visible;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 120px 24px 80px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.process-benefits-process-section .process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.process-benefits-process-section .process-header {
  text-align: start;
  margin-bottom: 80px;
  max-width: 680px;
}

.process-benefits-process-section .process-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.process-benefits-process-section .process-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.process-benefits-process-section .process-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}

/* ── ROADMAP WRAPPER ── */
.process-benefits-process-section .process-roadmap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 40px;
}

/* ── SPINE LINE ── */
.process-benefits-process-section .process-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  /* Center spine at ~50% for desktop, right side for mobile */
  inset-inline-end: 50%;
  width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}

.process-benefits-process-section .spine-line {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--text-dark) 0%, var(--primary) 60%, var(--text-dark) 100%);
  position: relative;
}

.process-benefits-process-section .spine-line::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

/* ── STEPS ── */
.process-benefits-process-section .process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
  z-index: 1;
}

/* Step offset alternation */
.process-benefits-process-section .step-right {
  padding-inline-end: calc(50% + 60px);
  padding-inline-start: 0;
}

.process-benefits-process-section .step-left {
  padding-inline-start: calc(50% + 60px);
  padding-inline-end: 0;
  justify-content: flex-end;
}

/* ── CONNECTOR (number bubble + line to spine) ── */
.process-benefits-process-section .step-connector {
  position: absolute;
  top: 24px;
  inset-inline-end: calc(50% - 28px);
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 2;
  pointer-events: none;
}

.process-benefits-process-section .step-left .step-connector {
  inset-inline-end: auto;
  inset-inline-start: calc(50% - 28px);
}

.process-benefits-process-section .connector-line {
  display: none;
}

.process-benefits-process-section .step-number {
  width: 56px;
  height: 56px;
  background: var(--text-dark);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--primary);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  position: relative;
  z-index: 3;
}

.process-benefits-process-section .step-number-final {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--text-dark);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
}

/* ── STEP CARD ── */
.process-benefits-process-section .step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
}

.process-benefits-process-section .step-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 4px 0 0 4px;
}

.process-benefits-process-section .step-left .step-card::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
  border-radius: 0 4px 4px 0;
}

.process-benefits-process-section .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}

.process-benefits-process-section .step-card-final {
  border-color: var(--primary);
  background: linear-gradient(135deg, #FFFDE7 0%, #FFFFFF 60%);
}

/* ── STEP ICON ── */
.process-benefits-process-section .step-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--text-dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.process-benefits-process-section .step-icon-final {
  background: var(--primary);
  color: var(--text-dark);
}

/* ── STEP CONTENT ── */
.process-benefits-process-section .step-content {
  flex: 1;
  min-width: 0;
}

.process-benefits-process-section .step-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.process-benefits-process-section .step-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px 0;
}

.process-benefits-process-section .step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-benefits-process-section .step-details li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.process-benefits-process-section .step-details li .fa-check-circle {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── CTA BLOCK ── */
.process-benefits-process-section .process-cta {
  margin-top: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 40px;
  background: var(--text-dark);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.process-benefits-process-section .process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
  pointer-events: none;
  aria-hidden: true;
}

.process-benefits-process-section .cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.process-benefits-process-section .process-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.process-benefits-process-section .process-btn:hover {
  background: var(--accent);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
}

/* ── BOTTOM DIVIDER ── */
.process-benefits-process-section .process-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.process-benefits-process-section .process-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-benefits-process-section .step-right {
    padding-inline-end: calc(50% + 40px);
  }
  .process-benefits-process-section .step-left {
    padding-inline-start: calc(50% + 40px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .process-benefits-process-section {
    padding: 100px 16px 80px;
  }

  .process-benefits-process-section .process-header {
    margin-bottom: 48px;
    max-width: 100%;
  }

  .process-benefits-process-section .process-title {
    font-size: 2rem;
  }

  /* Hide the decorative spine on mobile */
  .process-benefits-process-section .process-spine {
    display: none;
  }

  /* Reset step offsets on mobile */
  .process-benefits-process-section .step-right,
  .process-benefits-process-section .step-left {
    padding-inline-end: 0;
    padding-inline-start: 0;
    justify-content: flex-start;
    margin-bottom: 32px;
  }

  /* Move number bubble to flow inline above card */
  .process-benefits-process-section .step-connector {
    position: static;
    margin-bottom: 12px;
    inset-inline-end: auto;
    inset-inline-start: auto;
  }

  .process-benefits-process-section .process-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-benefits-process-section .step-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }

  .process-benefits-process-section .step-card::before {
    inset-inline-start: 0;
    inset-inline-end: auto;
    border-radius: 4px 0 0 4px;
  }

  .process-benefits-process-section .step-left .step-card::before {
    inset-inline-end: auto;
    inset-inline-start: 0;
    border-radius: 4px 0 0 4px;
  }

  .process-benefits-process-section .step-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .process-benefits-process-section .process-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    margin-top: 48px;
  }

  .process-benefits-process-section .process-btn {
    width: 100%;
    justify-content: center;
  }

  .process-benefits-process-section .process-divider-wrapper {
    height: 48px;
  }
}

/* benefits */
.process-benefits-benefits-section {
  position: relative;
  overflow: visible;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px 120px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.process-benefits-benefits-section .pbb-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.process-benefits-benefits-section .pbb-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-benefits-benefits-section .pbb-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.process-benefits-benefits-section .pbb-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: none !important;
}

.process-benefits-benefits-section .pbb-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── GRID ── */
.process-benefits-benefits-section .pbb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
}

/* ── SPACER ── */
.process-benefits-benefits-section .pbb-spacer {
  /* intentional empty cell for visual breathing room */
  display: block;
  visibility: hidden;
  pointer-events: none;
}

/* ── CARD ── */
.process-benefits-benefits-section .pbb-card {
  position: relative;
  background: #1A1A1A;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-benefits-benefits-section .pbb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
  border-color: rgba(255,216,0,0.35);
}

/* Accent line at top of card */
.process-benefits-benefits-section .pbb-card-accent {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
}

.process-benefits-benefits-section .pbb-card:hover .pbb-card-accent {
  width: 100%;
}

/* ── HIGHLIGHT CARD (center card) ── */
.process-benefits-benefits-section .pbb-card--highlight {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
}

.process-benefits-benefits-section .pbb-card--highlight:hover {
  box-shadow: 0 0 32px rgba(255,216,0,0.45), 0 24px 72px rgba(0,0,0,0.28);
  border-color: var(--primary);
}

.process-benefits-benefits-section .pbb-card--highlight .pbb-card-icon-wrap svg circle,
.process-benefits-benefits-section .pbb-card--highlight .pbb-card-icon-wrap svg polyline,
.process-benefits-benefits-section .pbb-card--highlight .pbb-card-icon-wrap svg path {
  stroke: var(--secondary);
}

.process-benefits-benefits-section .pbb-highlight-badge {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── ICON WRAP ── */
.process-benefits-benefits-section .pbb-card-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,216,0,0.08);
  border: 1px solid rgba(255,216,0,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-benefits-benefits-section .pbb-card:hover .pbb-card-icon-wrap {
  background: rgba(255,216,0,0.15);
}

.process-benefits-benefits-section .pbb-card--highlight .pbb-card-icon-wrap {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.2);
}

/* ── CARD TEXT ── */
.process-benefits-benefits-section .pbb-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-benefits-benefits-section .pbb-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0;
  text-align: right;
}

.process-benefits-benefits-section .pbb-card-title--dark {
  color: var(--text-dark);
}

.process-benefits-benefits-section .pbb-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
  text-align: right;
}

.process-benefits-benefits-section .pbb-card-text--dark {
  color: rgba(0,0,0,0.75);
}

/* ── BOTTOM DIVIDER ── */
.process-benefits-benefits-section .pbb-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.process-benefits-benefits-section .pbb-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .process-benefits-benefits-section .pbb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-benefits-benefits-section .pbb-spacer {
    display: none;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  .process-benefits-benefits-section {
    padding: 56px 16px 100px;
  }

  .process-benefits-benefits-section .pbb-header {
    margin-bottom: 36px;
  }

  .process-benefits-benefits-section .pbb-title {
    font-size: 1.6rem;
  }

  .process-benefits-benefits-section .pbb-subtitle {
    font-size: 0.9rem;
  }

  .process-benefits-benefits-section .pbb-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .process-benefits-benefits-section .pbb-spacer {
    display: none;
  }

  .process-benefits-benefits-section .pbb-card {
    padding: 24px;
  }

  .process-benefits-benefits-section .pbb-card-title {
    font-size: 1.1rem;
  }

  .process-benefits-benefits-section .pbb-highlight-badge {
    top: 14px;
    inset-inline-end: 14px;
  }
}

/* comparison */
.process-benefits-comparison-section {
  position: relative;
  overflow: visible;
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.process-benefits-comparison-section .pbc-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.process-benefits-comparison-section .pbc-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-benefits-comparison-section .pbc-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--primary);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.process-benefits-comparison-section .pbc-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: none !important;
}

.process-benefits-comparison-section .pbc-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── PANELS GRID ── */
.process-benefits-comparison-section .pbc-panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 40px;
}

/* ── PANEL CARD ── */
.process-benefits-comparison-section .pbc-panel {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-benefits-comparison-section .pbc-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}

.process-benefits-comparison-section .pbc-panel--private {
  border-top: 4px solid var(--primary);
}

.process-benefits-comparison-section .pbc-panel--business {
  border-top: 4px solid var(--secondary);
}

/* Yellow corner accent */
.process-benefits-comparison-section .pbc-yellow-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.process-benefits-comparison-section .pbc-yellow-accent--biz {
  background: var(--secondary);
  opacity: 0.12;
}

/* ── PANEL HEADER ── */
.process-benefits-comparison-section .pbc-panel-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.process-benefits-comparison-section .pbc-panel-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.process-benefits-comparison-section .pbc-panel--business .pbc-panel-icon {
  background: var(--secondary);
  color: var(--text-light);
}

.process-benefits-comparison-section .pbc-panel-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.process-benefits-comparison-section .pbc-panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--primary);
  padding: 2px 10px;
  border-radius: 2px;
  align-self: flex-start;
}

.process-benefits-comparison-section .pbc-panel-tag--biz {
  background: var(--secondary);
  color: var(--text-light);
}

.process-benefits-comparison-section .pbc-panel-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

/* ── POINTS LIST ── */
.process-benefits-comparison-section .pbc-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-benefits-comparison-section .pbc-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.process-benefits-comparison-section .pbc-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-benefits-comparison-section .pbc-point-icon {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.process-benefits-comparison-section .pbc-point-icon--biz {
  color: var(--secondary);
}

.process-benefits-comparison-section .pbc-point-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.process-benefits-comparison-section .pbc-point-heading {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.process-benefits-comparison-section .pbc-point-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── PANEL CTA ── */
.process-benefits-comparison-section .pbc-panel-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 8px;
}

.process-benefits-comparison-section .pbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--primary);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.process-benefits-comparison-section .pbc-btn:hover {
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
  transform: translateY(-2px);
}

.process-benefits-comparison-section .pbc-panel--business .pbc-btn {
  background: var(--secondary);
  color: var(--text-light);
}

.process-benefits-comparison-section .pbc-panel--business .pbc-btn:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

/* ── VS DIVIDER ── */
.process-benefits-comparison-section .pbc-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 2;
}

.process-benefits-comparison-section .pbc-vs-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ── BOTTOM NOTE ── */
.process-benefits-comparison-section .pbc-bottom-note {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.process-benefits-comparison-section .pbc-bottom-note p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.process-benefits-comparison-section .pbc-note-link {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--primary);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-benefits-comparison-section .pbc-note-link:hover {
  color: var(--primary);
}

/* ── BOTTOM DIVIDER ── */
.process-benefits-comparison-section .pbc-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.process-benefits-comparison-section .pbc-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .process-benefits-comparison-section .pbc-panels {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-benefits-comparison-section .pbc-vs-divider {
    padding: 16px 0;
    justify-content: center;
  }

  .process-benefits-comparison-section .pbc-panel {
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .process-benefits-comparison-section {
    padding: 56px 16px 100px;
  }

  .process-benefits-comparison-section .pbc-header {
    margin-bottom: 36px;
  }

  .process-benefits-comparison-section .pbc-title {
    font-size: 1.5rem;
  }

  .process-benefits-comparison-section .pbc-panel {
    padding: 24px 20px;
  }

  .process-benefits-comparison-section .pbc-panels {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-benefits-comparison-section .pbc-point {
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }

  .process-benefits-comparison-section .pbc-vs-divider {
    padding: 20px 0;
  }
}

/* cta */
.process-benefits-cta-section {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
  text-align: right;
}

/* Diagonal yellow band decorations */
.process-benefits-cta-section .pb-cta-yellow-band-right {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 60px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.process-benefits-cta-section .pb-cta-yellow-band-left {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 60px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Top accent rule */
.process-benefits-cta-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  z-index: 2;
  pointer-events: none;
}

/* Bottom accent rule */
.process-benefits-cta-section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  z-index: 2;
  pointer-events: none;
}

.process-benefits-cta-section .pb-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-benefits-cta-section .pb-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 0 80px;
}

.process-benefits-cta-section .pb-cta-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  line-height: 1.6;
}

.process-benefits-cta-section .pb-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.3;
  margin: 0;
  max-width: none !important;
  text-align: center;
}

.process-benefits-cta-section .pb-cta-heading br {
  display: block;
}

.process-benefits-cta-section .pb-cta-desc {
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.88;
}

.process-benefits-cta-section .pb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5C800 0%, #E0A800 100%);
  color: #111111;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255, 216, 0, 0.35);
  margin-top: 8px;
}

.process-benefits-cta-section .pb-cta-btn:hover {
  background: linear-gradient(135deg, #FFD800 0%, #F5C800 100%);
  box-shadow: 0 16px 48px rgba(255, 216, 0, 0.5);
  transform: translateY(-2px);
  color: #111111;
}

.process-benefits-cta-section .pb-cta-btn .fa {
  font-size: 0.9rem;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-benefits-cta-section .pb-cta-btn:hover .fa {
  transform: translateX(-4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .process-benefits-cta-section {
    padding: 56px 16px;
  }

  .process-benefits-cta-section .pb-cta-inner {
    padding: 0 16px;
    gap: 20px;
  }

  .process-benefits-cta-section .pb-cta-heading {
    font-size: 1.5rem;
  }

  .process-benefits-cta-section .pb-cta-yellow-band-right,
  .process-benefits-cta-section .pb-cta-yellow-band-left {
    width: 32px;
  }

  .process-benefits-cta-section .pb-cta-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    max-width: 360px;
  }

  .process-benefits-cta-section .pb-cta-desc {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .process-benefits-cta-section .pb-cta-heading {
    font-size: 2.25rem;
  }
}

/* portfolio */
.projects-contact-portfolio-section {
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding: 120px 0 72px;
  direction: rtl;
}

/* ── Container ── */
.projects-contact-portfolio-section .portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section Header ── */
.projects-contact-portfolio-section .portfolio-header {
  text-align: center;
  margin-bottom: 56px;
}

.projects-contact-portfolio-section .portfolio-label-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.projects-contact-portfolio-section .portfolio-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.projects-contact-portfolio-section .portfolio-title-accent {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.projects-contact-portfolio-section .portfolio-title-accent::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 4px;
  width: 100%;
}

.projects-contact-portfolio-section .portfolio-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.projects-contact-portfolio-section .portfolio-divider-accent {
  width: 56px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

/* ── Gallery Grid ── */
.projects-contact-portfolio-section .portfolio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  direction: rtl;
}

/* Tile 1: Large spans 2 columns */
.projects-contact-portfolio-section .gallery-tile--large {
  grid-column: span 2;
}

/* Tile 5: Before/After spans all 3 columns */
.projects-contact-portfolio-section .gallery-tile--before-after {
  grid-column: span 3;
}

/* ── Gallery Tile Base ── */
.projects-contact-portfolio-section .gallery-tile {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-contact-portfolio-section .gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}

/* ── Yellow corner accent ── */
.projects-contact-portfolio-section .gallery-tile-yellow-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent transparent var(--primary);
  z-index: 4;
  pointer-events: none;
}

/* ── Image Wrap ── */
.projects-contact-portfolio-section .gallery-tile-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.projects-contact-portfolio-section .gallery-tile--large .gallery-tile-image-wrap {
  height: 320px;
}

.projects-contact-portfolio-section .gallery-tile--medium .gallery-tile-image-wrap {
  height: 260px;
}

.projects-contact-portfolio-section .gallery-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-contact-portfolio-section .gallery-tile:hover .gallery-tile-img {
  transform: scale(1.03);
}

.projects-contact-portfolio-section .gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* ── Tile Info ── */
.projects-contact-portfolio-section .gallery-tile-info {
  padding: 20px 24px 24px;
  text-align: right;
  background: #FFFFFF;
  border-top: 3px solid var(--border-light);
  position: relative;
  z-index: 2;
}

.projects-contact-portfolio-section .gallery-tile-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
}

.projects-contact-portfolio-section .gallery-tile-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.projects-contact-portfolio-section .gallery-tile-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.projects-contact-portfolio-section .gallery-tile-meta {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Before/After Tile ── */
.projects-contact-portfolio-section .before-after-wrap {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.projects-contact-portfolio-section .before-after-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.projects-contact-portfolio-section .before-after-panel .gallery-tile-image-wrap {
  height: 280px;
}

.projects-contact-portfolio-section .before-after-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  z-index: 5;
  color: var(--text-dark);
}

.projects-contact-portfolio-section .before-after-label--before {
  background: rgba(255,255,255,0.88);
  color: var(--text-dark);
}

.projects-contact-portfolio-section .before-after-label--after {
  background: var(--primary);
  color: var(--text-dark);
}

.projects-contact-portfolio-section .before-after-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary);
  z-index: 6;
  pointer-events: none;
}

.projects-contact-portfolio-section .gallery-tile-info--before-after {
  border-top: 3px solid var(--border-light);
}

/* ── Coming Soon Note ── */
.projects-contact-portfolio-section .portfolio-coming-soon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  padding: 20px 32px;
  background: #F5F5F5;
  border-radius: 4px;
  border-inline-start: 4px solid var(--primary);
  text-align: right;
}

.projects-contact-portfolio-section .coming-soon-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-contact-portfolio-section .coming-soon-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Bottom Divider ── */
.projects-contact-portfolio-section .portfolio-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.projects-contact-portfolio-section .portfolio-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .projects-contact-portfolio-section .portfolio-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .projects-contact-portfolio-section .gallery-tile--large {
    grid-column: span 2;
  }

  .projects-contact-portfolio-section .gallery-tile--before-after {
    grid-column: span 2;
  }

  .projects-contact-portfolio-section .portfolio-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .projects-contact-portfolio-section {
    padding: 100px 0 72px;
  }

  .projects-contact-portfolio-section .portfolio-container {
    padding: 0 16px;
  }

  .projects-contact-portfolio-section .portfolio-title {
    font-size: 1.8rem;
  }

  .projects-contact-portfolio-section .portfolio-subtitle {
    font-size: 0.95rem;
  }

  .projects-contact-portfolio-section .portfolio-gallery {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .projects-contact-portfolio-section .gallery-tile--large {
    grid-column: span 1 !important;
  }

  .projects-contact-portfolio-section .gallery-tile--before-after {
    grid-column: span 1 !important;
  }

  .projects-contact-portfolio-section .gallery-tile--large .gallery-tile-image-wrap {
    height: 220px;
  }

  .projects-contact-portfolio-section .gallery-tile--medium .gallery-tile-image-wrap {
    height: 200px;
  }

  .projects-contact-portfolio-section .before-after-panel .gallery-tile-image-wrap {
    height: 180px;
  }

  .projects-contact-portfolio-section .portfolio-coming-soon {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
  }

  .projects-contact-portfolio-section .portfolio-header {
    margin-bottom: 36px;
  }

  .projects-contact-portfolio-section .gallery-tile-info {
    padding: 16px;
  }

  .projects-contact-portfolio-section .gallery-tile-title {
    font-size: 1rem;
  }
}

/* trust */
.projects-contact-trust-section {
  position: relative;
  overflow: visible;
  direction: rtl;
  background-color: #111111;
  background-image: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  color: var(--text-light);
  padding: 96px 0 120px;
}

.projects-contact-trust-section .pct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projects-contact-trust-section .pct-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  padding: 48px 0;
  position: relative;
}

.projects-contact-trust-section .pct-accent-line {
  flex-shrink: 0;
  width: 3px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 216, 0, 0.3) 100%);
  border-radius: 2px;
  margin-inline-end: 36px;
  align-self: stretch;
  min-height: 80px;
}

.projects-contact-trust-section .pct-block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects-contact-trust-section .pct-block-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
  letter-spacing: -0.01em;
}

.projects-contact-trust-section .pct-block-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-top: 10px;
  margin-inline-start: 0;
}

.projects-contact-trust-section .pct-block-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 820px;
  text-align: start;
}

.projects-contact-trust-section .pct-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 216, 0, 0.18);
  margin: 0;
}

.projects-contact-trust-section .pct-bottom-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
}

.projects-contact-trust-section .pct-bottom-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .projects-contact-trust-section {
    padding: 56px 0 80px;
  }

  .projects-contact-trust-section .pct-container {
    padding: 0 16px;
  }

  .projects-contact-trust-section .pct-block {
    padding: 32px 0;
    gap: 0;
  }

  .projects-contact-trust-section .pct-accent-line {
    width: 3px;
    margin-inline-end: 20px;
    min-height: 60px;
  }

  .projects-contact-trust-section .pct-block-title {
    font-size: 1.2rem;
  }

  .projects-contact-trust-section .pct-block-text {
    font-size: 1rem;
  }
}

/* contact */
.projects-contact-contact-section {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 96px 24px;
  position: relative;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.projects-contact-contact-section .pcc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.projects-contact-contact-section .pcc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── INVITATION COLUMN ── */
.projects-contact-contact-section .pcc-invitation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-contact-contact-section .pcc-label {
  display: inline-block;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  width: fit-content;
}

.projects-contact-contact-section .pcc-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0;
  text-align: right;
}

.projects-contact-contact-section .pcc-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.projects-contact-contact-section .pcc-divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-inline-start: 0;
}

.projects-contact-contact-section .pcc-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
  margin: 0;
  text-align: right;
}

.projects-contact-contact-section .pcc-hints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.projects-contact-contact-section .pcc-hints li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: right;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.projects-contact-contact-section .pcc-hint-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border-radius: 2px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.projects-contact-contact-section .pcc-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.projects-contact-contact-section .pcc-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-contact-contact-section .pcc-contact-item:hover {
  color: var(--secondary);
}

.projects-contact-contact-section .pcc-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  color: var(--text-dark);
  background: #F5F5F5;
  flex-shrink: 0;
}

/* ── FORM COLUMN ── */
.projects-contact-contact-section .pcc-form-col {
  display: flex;
  flex-direction: column;
}

.projects-contact-contact-section .pcc-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projects-contact-contact-section .pcc-form-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px 0;
  text-align: right;
  line-height: 1.4;
}

.projects-contact-contact-section .pcc-form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 28px 0;
  text-align: right;
  line-height: 1.6;
}

.projects-contact-contact-section .pcc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.projects-contact-contact-section .pcc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.projects-contact-contact-section .pcc-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.projects-contact-contact-section .pcc-field input,
.projects-contact-contact-section .pcc-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background: #FAFAFA;
  direction: rtl;
  text-align: right;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  outline: none;
  resize: vertical;
}

.projects-contact-contact-section .pcc-field input:focus,
.projects-contact-contact-section .pcc-field textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255,216,0,0.18);
}

.projects-contact-contact-section .pcc-field input::placeholder,
.projects-contact-contact-section .pcc-field textarea::placeholder {
  color: #AAAAAA;
  font-size: 0.9rem;
}

.projects-contact-contact-section .privacy-consent {
  margin-top: 2px;
  color: var(--text-dark);
}

.projects-contact-contact-section .privacy-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: right;
}

.projects-contact-contact-section .privacy-consent-checkbox {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.projects-contact-contact-section .privacy-consent a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
}

.projects-contact-contact-section .privacy-consent a:hover {
  color: var(--primary);
}

.projects-contact-contact-section .pcc-btn-submit {
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(255,216,0,0.35);
}

.projects-contact-contact-section .pcc-btn-submit:hover {
  background: #E0A800;
  box-shadow: 0 16px 48px rgba(255,216,0,0.5);
  transform: translateY(-2px);
}

.projects-contact-contact-section .pcc-whatsapp-link {
  margin-top: 18px;
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.projects-contact-contact-section .pcc-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-contact-contact-section .pcc-wa-link:hover {
  color: #128C7E;
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .projects-contact-contact-section {
    padding: 56px 16px;
  }

  .projects-contact-contact-section .pcc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-contact-contact-section .pcc-heading {
    font-size: 1.6rem;
  }

  .projects-contact-contact-section .pcc-form-card {
    padding: 28px 20px;
  }

  .projects-contact-contact-section .pcc-contact-details {
    flex-direction: column;
    gap: 10px;
  }
}



/* Global font override - exclude icon fonts and special elements */
*:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.iconify):not([class*="icon"]):not(code):not(pre):not(i[class*="fa"]) {
  font-family: 'Rubik', sans-serif !important;
}





/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }

/* RTL footer contact: icon on the right (start) side, text on the left */
html[dir="rtl"] .footer-contact li, html[dir="rtl"] .site-footer .footer-contact li, html[dir="rtl"] .site-footer .footer-col:nth-child(3) .footer-contact li { flex-direction: row !important; justify-content: flex-start !important; }
html[dir="rtl"] .footer-contact .contact-icon { order: 0 !important; }
html[dir="rtl"] .footer-contact .contact-text { order: 1 !important; }
html[dir="rtl"] .footer-contact li > a { flex-direction: row !important; }


/* ============================================
   MOBILE RESPONSIVE FIXES (Auto-generated)
   Safe, minimal fixes for common overflow issues
   ============================================ */

@media (max-width: 768px) {
  
  /* 1. GLOBAL FIXES - Essential for preventing horizontal scroll */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }
  
  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  /* 2. FORM FIXES - Forms often have fixed widths */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  input[type="search"],
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .form-field,
  .form-group,
  .input-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 3. GRID TO COLUMN CONVERSION */
  /* Only convert grids that don't have proper mobile handling */
  [style*="display: grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  [style*="display:grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  .grid:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid) {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  /* Ensure auto-grids use single column on mobile */
  [data-zappy-auto-grid="true"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Force single-column for AI-generated grids with class names like gallery-grid, features-grid, etc. */
  /* These often have fixed column counts (repeat(3, 1fr) or repeat(4, 1fr)) that don't fit mobile */
  [class*="-grid"]:not([data-zappy-auto-grid="true"]):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  [class*="-grid"] > [class*="-large"],
  [class*="-grid"] > [class*="-item-large"],
  [class*="-grid"] > [style*="grid-column: span"],
  [class*="-grid"] > [style*="grid-row: span"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  /* Fix zoom wrapper images to be responsive on mobile */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  [data-zappy-zoom-wrapper="true"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover !important;
    top: 0 !important;
    left: 0 !important;
  }

  /* Hero sections need extra padding-top to clear the sticky navbar */
  /* The navbar is ~70px tall, so hero needs at least 100px padding-top */
  /* IMPORTANT: Use section tag to avoid matching child elements like buttons that contain "-hero-section" in their BEM class */
  section[class*="-hero-section"]:first-of-type,
  main > section:first-child {
    padding-top: 100px !important;
  }

  /* 4. TYPOGRAPHY SCALING - Only headings, NOT spans (breaks icons) */
  h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
  }
  
  h2 {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  
  h3 {
    font-size: clamp(20px, 5vw, 28px) !important;
  }
  
  h4 {
    font-size: clamp(18px, 4vw, 24px) !important;
  }

  /* Body text scaling - exclude spans to avoid breaking icons */
  p, li {
    font-size: clamp(14px, 4vw, 18px) !important;
  }

  /* 5. IMAGE RESPONSIVENESS */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 5b. HERO BG IMAGE EXCEPTION - fullscreen hero backgrounds must fill their
     absolute-positioned wrapper, not shrink to natural aspect-ratio height.
     data-hero-bg is added deterministically by sectionGenerationService. */
  img[data-hero-bg] {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 6. MULTI-COLUMN LAYOUTS */
  .columns,
  [style*="column-count"],
  [style*="columns:"] {
    column-count: 1 !important;
    columns: 1 !important;
  }

  /* 7. TABLES */
  table {
    width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
  }

  /* 8. CARDS/BLOCKS */
  .card,
  .block,
  .box {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 9. HERO SECTIONS - Targeted selectors only */
  section.hero,
  section.hero-section,
  section[class*="hero-section"] {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem !important;
  }

  /* 9b. HERO SECTION CHILDREN - prevent 100vh min-height on inner wrappers
     AI often sets content-wrappers / scrim divs to min-height:100vh which
     creates huge empty space on mobile. Reset direct children so the section
     sizes to its content. Absolute-positioned backgrounds are unaffected. */
  section.hero > *,
  section.hero-section > *,
  section[class*="hero-section"] > * {
    min-height: auto !important;
  }

  /* 9c. FULLSCREEN HERO EXCEPTION — from sharedMobileCss.js */

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }

  /* 10. HERO TITLE ACCENTS - ensure inline display for proper text flow */
  h1 span[class*="accent"],
  h2 span[class*="accent"],
  .hero-title span,
  .hero-heading span {
    display: inline !important;
  }

  /* 11. PACKAGES/CARDS GRIDS - Specific class targeting */
  .packages-grid,
  .cards-grid,
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* 12. PREVENT HORIZONTAL SCROLL - Safety net */
  body > * {
    max-width: 100vw !important;
  }
}

/* END MOBILE RESPONSIVE FIXES */

/* === NAVBAR STYLE OVERRIDES START === */
.navbar { background-color: transparent !important; background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background-color 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease !important;}
.navbar .nav-menu > li > a,
.navbar .nav-menu > .nav-item > a,
.navbar .nav-link,
.navbar .navbar-nav .nav-link,
.navbar a:not(.nav-cta-btn) { color: #FFFFFF !important; }
.navbar .nav-menu > li > a:hover,
.navbar .nav-menu > .nav-item > a:hover,
.navbar .nav-link:hover,
.navbar a:not(.nav-cta-btn):hover { color: #FFD800 !important; }
.navbar .navbar-brand, .navbar .navbar-brand a { color: #FFFFFF !important; }
.navbar .dropdown-toggle { color: #FFFFFF !important; }
.navbar .dropdown-toggle:hover { color: #FFD800 !important; }
.navbar .mobile-hamburger-btn, .navbar .mobile-close-btn { color: #FFFFFF !important; }
.navbar-toggler { color: #FFFFFF !important; border-color: #FFFFFF44 !important; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.navbar .dropdown-menu { background-color: #111111 !important; }
.navbar .dropdown-menu li a,
.navbar .dropdown-menu .dropdown-item { color: #FFFFFF !important; }
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu .dropdown-item:hover { color: #FFD800 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .sub-menu,
.navbar ul.sub-menu,
nav.navbar .sub-menu { background-color: #111111 !important; }
.navbar .sub-menu a,
.navbar .sub-menu li a,
.navbar .nav-menu .sub-menu a,
.navbar .nav-menu .sub-menu li a,
.navbar .zappy-products-dropdown .sub-menu a,
nav.navbar .sub-menu li a { color: #FFFFFF !important; }
.navbar .sub-menu a:hover,
.navbar .sub-menu li a:hover,
nav.navbar .sub-menu li a:hover { color: #FFD800 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .mobile-submenu-toggle { color: #FFFFFF !important; }
.navbar .phone-header-btn { color: #FFFFFF !important; }
.navbar .nav-search-input,
.navbar .nav-search-box .nav-search-input { color: #111111 !important; }
.navbar .nav-search-input::placeholder { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
@media (min-width: 769px) {
  .navbar .nav-search-box .nav-search-btn { color: #111111 !important; }
  .navbar .nav-search-box .nav-search-btn svg { stroke: #111111 !important; fill: none !important; }
}
.navbar .nav-search-result-name { color: #111111 !important; }
.navbar .nav-search-result-item a { color: #111111 !important; }
.navbar .nav-search-result-price { color: var(--accent, var(--primary)) !important; }
.navbar .nav-search-no-results,
.navbar .search-no-results { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background: transparent !important; }
.zappy-catalog-menu .catalog-menu-item,
.zappy-catalog-menu .catalog-menu-all { color: #FFFFFF !important; }
.zappy-catalog-menu .catalog-menu-item:hover,
.zappy-catalog-menu .catalog-menu-all:hover { color: #FFD800 !important; background: rgba(128,128,128,0.1) !important; }
.navbar .cart-link.nav-cart,
.navbar .login-link.nav-login,
.navbar .nav-search-toggle,
.navbar .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart:hover,
.navbar .login-link.nav-login:hover,
.navbar .nav-search-toggle:hover,
.navbar .search-toggle:hover { background: rgba(128,128,128,0.15) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart svg, .navbar .login-link.nav-login svg, .navbar .nav-search-toggle svg, .navbar .search-toggle svg { color: inherit !important; fill: none !important; stroke: currentColor !important; }

@media (min-width: 769px) {
  .navbar:not(.scrolled) .dropdown-menu { background-color: #111111 !important; }
  .navbar:not(.scrolled) .dropdown-menu li a,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item { color: #FFFFFF !important; }
  .navbar:not(.scrolled) .dropdown-menu li a:hover,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item:hover { color: var(--nav-text-hover, var(--accent)) !important; }
  .navbar:not(.scrolled) .sub-menu { background-color: #111111 !important; }
  .navbar:not(.scrolled) .sub-menu a,
  .navbar:not(.scrolled) .sub-menu li a,
  .navbar:not(.scrolled) .nav-menu .sub-menu a,
  .navbar:not(.scrolled) .zappy-products-dropdown .sub-menu a { color: #FFFFFF !important; }
  .navbar:not(.scrolled) .sub-menu a:hover,
  .navbar:not(.scrolled) .sub-menu li a:hover { color: var(--nav-text-hover, var(--accent)) !important; }
}
.navbar.scrolled { background-color: rgba(17,17,17,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.12) !important; }
.navbar.scrolled::before, .navbar.scrolled::after { background: transparent !important; opacity: 0 !important; }
.navbar.scrolled ~ .zappy-catalog-menu, .navbar.scrolled ~ #zappy-catalog-menu, .zappy-catalog-menu.scrolled, #zappy-catalog-menu.scrolled { background: rgba(17,17,17,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item,
.zappy-catalog-menu.scrolled .catalog-menu-all,
#zappy-catalog-menu.scrolled .catalog-menu-item,
#zappy-catalog-menu.scrolled .catalog-menu-all,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all { color: var(--frosted-text, #FFFFFF) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item:hover,
.zappy-catalog-menu.scrolled .catalog-menu-all:hover,
#zappy-catalog-menu.scrolled .catalog-menu-item:hover,
#zappy-catalog-menu.scrolled .catalog-menu-all:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all:hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .nav-menu > li > a,
.navbar.scrolled .nav-menu > .nav-item > a,
.navbar.scrolled .nav-link,
.navbar.scrolled a:not(.nav-cta-btn) { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .nav-menu > li > a:hover,
.navbar.scrolled .nav-menu > .nav-item > a:hover,
.navbar.scrolled .nav-link:hover,
.navbar.scrolled a:not(.nav-cta-btn):hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .navbar-brand, .navbar.scrolled .navbar-brand a { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .dropdown-toggle { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .phone-header-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-toggle { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .mobile-toggle svg { color: inherit !important; }
.navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
.navbar.scrolled .mobile-hamburger-btn svg,
.navbar.scrolled .mobile-close-btn svg,
.navbar.scrolled .phone-header-btn svg,
.navbar.scrolled .navbar-brand svg,
.navbar.scrolled .logo-link svg { color: inherit !important; stroke: currentColor !important; }
.navbar.scrolled .mobile-hamburger-btn svg path,
.navbar.scrolled .mobile-close-btn svg path,
.navbar.scrolled .phone-header-btn svg path,
.navbar.scrolled .navbar-brand svg path,
.navbar.scrolled .logo-link svg path { stroke: currentColor !important; }
.navbar.scrolled .nav-search-btn { color: var(--frosted-text, #FFFFFF) !important; }
.navbar.scrolled .nav-search-btn svg { stroke: var(--frosted-text, #FFFFFF) !important; fill: none !important; }
@media (min-width: 769px) {
  .navbar.scrolled .sub-menu,
  .navbar.scrolled ul.sub-menu,
  nav.navbar.scrolled .sub-menu { background-color: var(--bg-light, #ffffff) !important; border-radius: 8px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; }
  .navbar.scrolled .sub-menu a,
  .navbar.scrolled .sub-menu li a,
  .navbar.scrolled .nav-menu .sub-menu a,
  .navbar.scrolled .nav-menu .sub-menu li a,
  .navbar.scrolled .zappy-products-dropdown .sub-menu a,
  nav.navbar.scrolled .sub-menu li a { color: #111111 !important; }
  .navbar.scrolled .sub-menu a:hover,
  .navbar.scrolled .sub-menu li a:hover,
  .navbar.scrolled .nav-menu .sub-menu a:hover,
  nav.navbar.scrolled .sub-menu li a:hover { color: #FFD800 !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .dropdown-menu { background-color: var(--bg-light, #ffffff) !important; }
  .navbar.scrolled .dropdown-menu li a,
  .navbar.scrolled .dropdown-menu .dropdown-item { color: #111111 !important; }
  .navbar.scrolled .dropdown-menu li a:hover,
  .navbar.scrolled .dropdown-menu .dropdown-item:hover { color: #FFD800 !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .mobile-submenu-toggle { color: #111111 !important; }
}

.navbar.scrolled .cart-link.nav-cart,
.navbar.scrolled .login-link.nav-login,
.navbar.scrolled .nav-search-toggle,
.navbar.scrolled .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
@media (max-width: 768px) {
  .navbar { background-color: transparent !important; background-image: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; }
  .zappy-catalog-menu, #zappy-catalog-menu { background-image: none !important; }
  .navbar::before, .navbar::after { background: transparent !important; opacity: 0 !important; }
  body.menu-open .navbar, body.nav-open .navbar, body.mobile-menu-open .navbar, .navbar.scrolled, .navbar.active, .navbar.open, .navbar.show, .navbar.menu-open, .navbar:has(.nav-menu.active), .navbar:has(#navMenu.active), .navbar:has(.mobile-menu.active), .navbar:has(.mobile-toggle.active), .navbar:has(#mobileToggle.active) { background-color: #111111 !important; }
  .nav-menu, .nav-menu.active, .nav-menu.nav-menu-active, #navMenu, #navMenu.active, .mobile-menu, .mobile-menu.active, .mobile-nav, .mobile-nav.active { background-color: #111111 !important; background: #111111 !important; }
  .nav-menu.active, .nav-menu.nav-menu-active, #navMenu.active, .mobile-menu.active, .mobile-nav.active { max-height: calc(100dvh - 70px) !important; overflow-y: auto !important; }
  .nav-menu a, .nav-menu > li > a, #navMenu a, #navMenu > li > a { color: #FFFFFF !important; }
  .nav-menu a:hover, .nav-menu > li > a:hover { color: #FFD800 !important; }
  .nav-menu .dropdown-menu { background: rgba(128,128,128,0.06) !important; }
  .nav-menu .dropdown-menu a, .nav-menu .dropdown-menu li a { color: #FFFFFF !important; }
  .nav-menu .dropdown-menu a:hover { color: #FFD800 !important; }
  .nav-menu .sub-menu a { color: #FFFFFF !important; white-space: normal !important; }
  .nav-menu .sub-menu a:hover { color: #FFD800 !important; }
  .nav-menu > li { position: relative !important; }
  .navbar .nav-menu .mobile-submenu-toggle { color: #FFFFFF !important; position: static !important; height: auto !important; flex-shrink: 0 !important; align-self: stretch !important; }
  .mobile-toggle { color: #FFFFFF !important; }
  .mobile-toggle svg { color: inherit !important; }
  .mobile-toggle svg path { stroke: currentColor !important; }
  
  /* When menu is open or navbar is scrolled in mobile, the background is dropdownBg, so text should be mobileMenuText */
  .navbar.scrolled .mobile-toggle, .navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn,
  .navbar.scrolled .navbar-brand, .navbar.scrolled .dropdown-toggle, .navbar.scrolled .phone-header-btn,
  body.menu-open .navbar .mobile-toggle, body.nav-open .navbar .mobile-toggle, body.mobile-menu-open .navbar .mobile-toggle,
  .navbar.active .mobile-toggle, .navbar.open .mobile-toggle, .navbar.show .mobile-toggle, .navbar.menu-open .mobile-toggle,
  .navbar:has(.nav-menu.active) .mobile-toggle, .navbar:has(#navMenu.active) .mobile-toggle, .navbar:has(.mobile-menu.active) .mobile-toggle, .navbar:has(.mobile-toggle.active) .mobile-toggle,
  body.menu-open .navbar .navbar-brand, body.nav-open .navbar .navbar-brand, body.mobile-menu-open .navbar .navbar-brand,
  .navbar.active .navbar-brand, .navbar.open .navbar-brand, .navbar.show .navbar-brand, .navbar.menu-open .navbar-brand,
  .navbar:has(.nav-menu.active) .navbar-brand, .navbar:has(#navMenu.active) .navbar-brand, .navbar:has(.mobile-menu.active) .navbar-brand, .navbar:has(.mobile-toggle.active) .navbar-brand,
  body.menu-open .navbar .phone-header-btn, body.nav-open .navbar .phone-header-btn, body.mobile-menu-open .navbar .phone-header-btn,
  .navbar.active .phone-header-btn, .navbar.open .phone-header-btn, .navbar.show .phone-header-btn, .navbar.menu-open .phone-header-btn,
  .navbar:has(.nav-menu.active) .phone-header-btn, .navbar:has(#navMenu.active) .phone-header-btn, .navbar:has(.mobile-menu.active) .phone-header-btn, .navbar:has(.mobile-toggle.active) .phone-header-btn {
    color: #FFFFFF !important;
  }
  .navbar.scrolled .mobile-toggle svg, .navbar.scrolled .mobile-hamburger-btn svg, .navbar.scrolled .mobile-close-btn svg,
  .navbar.scrolled .navbar-brand svg, .navbar.scrolled .dropdown-toggle svg, .navbar.scrolled .phone-header-btn svg,
  body.menu-open .navbar .mobile-toggle svg, body.nav-open .navbar .mobile-toggle svg, body.mobile-menu-open .navbar .mobile-toggle svg,
  .navbar.active .mobile-toggle svg, .navbar.open .mobile-toggle svg, .navbar.show .mobile-toggle svg, .navbar.menu-open .mobile-toggle svg,
  .navbar:has(.nav-menu.active) .mobile-toggle svg, .navbar:has(#navMenu.active) .mobile-toggle svg, .navbar:has(.mobile-menu.active) .mobile-toggle svg, .navbar:has(.mobile-toggle.active) .mobile-toggle svg,
  body.menu-open .navbar .phone-header-btn svg, body.nav-open .navbar .phone-header-btn svg, body.mobile-menu-open .navbar .phone-header-btn svg,
  .navbar.active .phone-header-btn svg, .navbar.open .phone-header-btn svg, .navbar.show .phone-header-btn svg, .navbar.menu-open .phone-header-btn svg,
  .navbar:has(.nav-menu.active) .phone-header-btn svg, .navbar:has(#navMenu.active) .phone-header-btn svg, .navbar:has(.mobile-menu.active) .phone-header-btn svg, .navbar:has(.mobile-toggle.active) .phone-header-btn svg,
  body.menu-open .navbar .navbar-brand svg, body.nav-open .navbar .navbar-brand svg, body.mobile-menu-open .navbar .navbar-brand svg,
  .navbar.active .navbar-brand svg, .navbar.open .navbar-brand svg, .navbar.show .navbar-brand svg, .navbar.menu-open .navbar-brand svg,
  .navbar:has(.nav-menu.active) .navbar-brand svg, .navbar:has(#navMenu.active) .navbar-brand svg, .navbar:has(.mobile-menu.active) .navbar-brand svg, .navbar:has(.mobile-toggle.active) .navbar-brand svg {
    color: #FFFFFF !important;
    stroke: currentColor !important;
  }
  .navbar.scrolled .mobile-toggle svg path, .navbar.scrolled .mobile-hamburger-btn svg path, .navbar.scrolled .mobile-close-btn svg path,
  .navbar.scrolled .navbar-brand svg path, .navbar.scrolled .dropdown-toggle svg path, .navbar.scrolled .phone-header-btn svg path,
  body.menu-open .navbar .mobile-toggle svg path, body.nav-open .navbar .mobile-toggle svg path, body.mobile-menu-open .navbar .mobile-toggle svg path,
  .navbar.active .mobile-toggle svg path, .navbar.open .mobile-toggle svg path, .navbar.show .mobile-toggle svg path, .navbar.menu-open .mobile-toggle svg path,
  .navbar:has(.nav-menu.active) .mobile-toggle svg path, .navbar:has(#navMenu.active) .mobile-toggle svg path, .navbar:has(.mobile-menu.active) .mobile-toggle svg path, .navbar:has(.mobile-toggle.active) .mobile-toggle svg path,
  body.menu-open .navbar .phone-header-btn svg path, body.nav-open .navbar .phone-header-btn svg path, body.mobile-menu-open .navbar .phone-header-btn svg path,
  .navbar.active .phone-header-btn svg path, .navbar.open .phone-header-btn svg path, .navbar.show .phone-header-btn svg path, .navbar.menu-open .phone-header-btn svg path,
  .navbar:has(.nav-menu.active) .phone-header-btn svg path, .navbar:has(#navMenu.active) .phone-header-btn svg path, .navbar:has(.mobile-menu.active) .phone-header-btn svg path, .navbar:has(.mobile-toggle.active) .phone-header-btn svg path,
  body.menu-open .navbar .navbar-brand svg path, body.nav-open .navbar .navbar-brand svg path, body.mobile-menu-open .navbar .navbar-brand svg path,
  .navbar.active .navbar-brand svg path, .navbar.open .navbar-brand svg path, .navbar.show .navbar-brand svg path, .navbar.menu-open .navbar-brand svg path,
  .navbar:has(.nav-menu.active) .navbar-brand svg path, .navbar:has(#navMenu.active) .navbar-brand svg path, .navbar:has(.mobile-menu.active) .navbar-brand svg path, .navbar:has(.mobile-toggle.active) .navbar-brand svg path {
    stroke: currentColor !important;
  }
  
  .navbar.scrolled .mobile-toggle svg { color: inherit !important; }
  .navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
  
  .navbar.scrolled .nav-menu > li > a,
  .navbar.scrolled .nav-menu > .nav-item > a,
  .navbar.scrolled .nav-link,
  .navbar.scrolled a:not(.nav-cta-btn) { color: #FFFFFF !important; }
  .cart-link.nav-cart,
  .login-link.nav-login,
  .nav-search-toggle,
  .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
  .cart-link.nav-cart svg,
  .login-link.nav-login svg,
  .nav-search-toggle svg,
  .search-toggle svg { stroke: var(--text-dark, #1a1a1a) !important; color: var(--text-dark, #1a1a1a) !important; }
  .mobile-search-panel { color: #FFFFFF !important; }
  .mobile-search-panel input { color: #FFFFFF !important; background: rgba(255,255,255,0.12) !important; }
  .mobile-search-panel .close-search { color: #FFFFFF !important; background: rgba(255,255,255,0.15) !important; }
  .mobile-search-panel .close-search svg { stroke: #FFFFFF !important; color: #FFFFFF !important; }
  .mobile-search-panel .close-search:hover { color: #FFFFFF !important; background: rgba(255,255,255,0.25) !important; }
  .mobile-search-panel .close-search:hover svg { stroke: #FFFFFF !important; color: #FFFFFF !important; }
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important; position: static !important; max-height: 0 !important;
    overflow: hidden !important; opacity: 0 !important; visibility: hidden !important;
    pointer-events: none !important; box-shadow: none !important; border: none !important;
    padding: 0 !important; transform: none !important;
  }
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important; opacity: 0 !important; visibility: hidden !important;
    max-height: 0 !important; pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important; opacity: 1 !important; visibility: visible !important;
    max-height: none !important; pointer-events: auto !important; position: static !important;
    overflow-y: visible !important; padding: 0.5rem 0 !important;
  }
}
/* === NAVBAR STYLE OVERRIDES END === */

/* Legal Pages Content Styles */

/* Legal Pages Content Styles */
.legal-page-content {
  padding: 120px 0 60px;
  min-height: 60vh;
  color: inherit;
}

.legal-page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content .last-updated {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-page-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

[dir="rtl"] .legal-page-content ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

.legal-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-page-content .contact-box,
.legal-page-content .contact-info {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page-content .contact-box a,
.legal-page-content .contact-info a {
  color: inherit;
  text-decoration: underline;
}

.legal-page-content .contact-box a:hover,
.legal-page-content .contact-info a:hover {
  opacity: 0.8;
}

.legal-page-content .important-notice,
.legal-page-content .legal-reference {
  background: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid currentColor;
}

[dir="rtl"] .legal-page-content .important-notice,
[dir="rtl"] .legal-page-content .legal-reference {
  border-left: none;
  border-right: 4px solid currentColor;
}

/* Cookie Consent Styles */

/* Cookie Consent Customizations ccCssV13 */
:root {
  /* --cc-bg has to STAY translucent (with the matching backdrop-filter on
   * the bar below) so the slim bar reads as a frosted overlay rather than
   * a solid horizontal stripe slapped on top of the page. The preferences
   * modal — which doesn't use backdrop-filter — overrides this to a solid
   * white below so it doesn't render see-through against the page. */
  --cc-bg: rgba(255, 255, 255, 0.96);
  --cc-modal-bg: #ffffff;
  --cc-primary-color: #1f2937;
  --cc-secondary-color: #4b5563;
  --cc-btn-primary-bg: #ffd800;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border: #ffd800;
  --cc-btn-primary-hover-bg: #e6bf00;
  --cc-btn-primary-hover-border: #e6bf00;
  --cc-btn-primary-hover-color: #ffffff;
  /* --cc-btn-secondary-* are used by BOTH the bar's "Customize" link and
   * the preferences modal's "Accept Necessary" / "Save Preferences" pills.
   * We keep the token defaults sensible (light grey fill, dark text) so
   * the preferences-modal buttons stay visible, then override only
   * .zappy-cookie-banner__button--customize directly to render the
   * Customize link as a transparent underlined text. */
  --cc-btn-secondary-bg: #f3f4f6;
  --cc-btn-secondary-color: #1f2937;
  --cc-btn-secondary-border: #e5e7eb;
  --cc-btn-secondary-hover-bg: #e5e7eb;
  --cc-btn-secondary-hover-color: #111827;
  --cc-btn-secondary-hover-border: #d1d5db;
  --cc-toggle-on-bg: #ffd800;
}

#cc-main,
#cc--main {
  font-family: inherit !important;
  color: var(--cc-primary-color);
}

/* === Zappy-owned slim bottom bar ===
 * Single-row inline layout: [description text] ......... [Customize] [Accept]
 * The banner is our DOM (#zappy-cookie-banner), not the library's #cm
 * consent modal. That avoids vanilla-cookieconsent's internal
 * <button><span>Label</span></button> structure entirely.
 */
#zappy-cookie-banner {
  position: fixed !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 56px 10px 20px !important;
  background: var(--cc-bg) !important;
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border: none !important;
  border-top: 1px solid rgba(255, 216, 0, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  z-index: 2147483646;
}

#zappy-cookie-banner .zappy-cookie-banner__inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  max-width: 1200px;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 !important;
  min-height: 32px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--cc-primary-color) !important;
  height: 32px !important;
  min-height: 32px !important;
  line-height: 32px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#zappy-cookie-banner .zappy-cookie-banner__actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 0 16px !important;
  height: 32px !important;
  min-height: 0 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  transition: background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

/* Primary "Accept" — filled pill in site primary color */
#zappy-cookie-banner .zappy-cookie-banner__button--accept {
  background-color: var(--cc-btn-primary-bg) !important;
  color: var(--cc-btn-primary-color) !important;
  border: 1px solid var(--cc-btn-primary-border) !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--accept:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary "Customize" — borderless underlined text link.
 * Same height as the Accept pill so the row stays perfectly aligned, but
 * with no fill, no border, and an underline that sits 3px below the
 * baseline (text-underline-offset). Hard-coded brand color so this rule
 * doesn't depend on --cc-btn-secondary-* (which have to stay sensible
 * defaults for the preferences modal's two secondary pills). */
#zappy-cookie-banner .zappy-cookie-banner__button--customize {
  background-color: transparent !important;
  color: #ffd800 !important;
  border: none !important;
  padding: 0 8px !important;
  height: 32px !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 6px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--customize:hover {
  color: #e6bf00 !important;
  background-color: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__close {
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 999px !important;
  color: var(--cc-secondary-color) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
#zappy-cookie-banner .zappy-cookie-banner__close:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
  color: var(--cc-primary-color) !important;
}
#zappy-cookie-banner .zappy-cookie-banner__button:focus-visible,
#zappy-cookie-banner .zappy-cookie-banner__close:focus-visible {
  outline: 2px solid var(--cc-btn-primary-bg) !important;
  outline-offset: 2px;
}
/* RTL: anchor the X to the top-LEFT and shift body padding accordingly. */
[dir="rtl"] #zappy-cookie-banner {
  padding: 10px 20px 10px 56px !important;
}
[dir="rtl"] #zappy-cookie-banner .zappy-cookie-banner__close {
  right: auto !important;
  left: 12px !important;
}

/* === Preferences modal — minimalist restyle ===
 * The modal opens when "Customize" is clicked. It MUST render as a solid
 * card — pre-fix it inherited the bar's translucent --cc-bg without the
 * matching backdrop-filter, leaving the page footer visibly bleeding
 * through the modal box, the title, the toggle rows, and the bottom
 * button row. Solid white box + clean shadow + an explicit slightly
 * darker scrim on the overlay restores proper modal hierarchy. */
/* The scrim belongs on wrapper layers only. In vanilla-cookieconsent v3,
 * .pm / #pm is the preferences card itself, so styling .pm as the dark
 * overlay makes the card look transparent. */
#cc-main .pm-wrapper,
#cc--main .pm-wrapper,
#cc-main .pm-wrapper.pm--box,
#cc--main .pm-wrapper.pm--box {
  background: rgba(0, 0, 0, 0.32) !important;
}

#cc-main #pm,
#cc--main #pm,
#cc-main .pm,
#cc--main .pm,
#cc-main .pm .pm__box,
#cc--main .pm .pm__box,
#cc-main .pm__box,
#cc--main .pm__box {
  background: var(--cc-modal-bg) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18) !important;
}

#cc-main .pm__header,
#cc--main .pm__header,
#cc-main .pm__body,
#cc--main .pm__body,
#cc-main .pm__footer,
#cc--main .pm__footer,
#cc-main .pm__section,
#cc--main .pm__section {
  background: var(--cc-modal-bg) !important;
}

#cc-main .pm__title,
#cc--main .pm__title {
  font-weight: 600 !important;
  color: var(--cc-primary-color) !important;
}

#cc-main .pm__btn[data-role="accept-all"],
#cc--main .pm__btn[data-role="accept-all"] {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
  color: var(--cc-btn-primary-color) !important;
  border-radius: 999px !important;
}

#cc-main .pm__btn[data-role="accept-all"]:hover,
#cc--main .pm__btn[data-role="accept-all"]:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary modal pills — "Accept Necessary" + "Save Preferences".
 * Must be a visible solid fill (light grey on white card) so users can
 * actually find them. Pre-fix these inherited --cc-btn-secondary-bg:
 * transparent (used by the bar's Customize text link), making them
 * invisible against the modal background. */
#cc-main .pm__btn,
#cc--main .pm__btn {
  border-radius: 999px !important;
}
#cc-main .pm__btn[data-role="necessary"],
#cc--main .pm__btn[data-role="necessary"],
#cc-main .pm__btn[data-role="save"],
#cc--main .pm__btn[data-role="save"] {
  background-color: var(--cc-btn-secondary-bg) !important;
  color: var(--cc-btn-secondary-color) !important;
  border: 1px solid var(--cc-btn-secondary-border) !important;
}
#cc-main .pm__btn[data-role="necessary"]:hover,
#cc--main .pm__btn[data-role="necessary"]:hover,
#cc-main .pm__btn[data-role="save"]:hover,
#cc--main .pm__btn[data-role="save"]:hover {
  background-color: var(--cc-btn-secondary-hover-bg) !important;
  color: var(--cc-btn-secondary-hover-color) !important;
  border-color: var(--cc-btn-secondary-hover-border) !important;
}

/* Toggle thumbs in brand color when on */
#cc-main .section__toggle:checked + .toggle__icon,
#cc--main .section__toggle:checked + .toggle__icon,
#cc-main .section__toggle:checked ~ .toggle__icon,
#cc--main .section__toggle:checked ~ .toggle__icon {
  background-color: var(--cc-toggle-on-bg) !important;
}

/* Mobile fallback: two rows (description on top, buttons below) */
@media (max-width: 640px) {
  #zappy-cookie-banner {
    padding: 10px 14px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }
  #zappy-cookie-banner .zappy-cookie-banner__button--accept {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Cookie preferences button in legal footer keeps default behavior */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}

/* Accessibility Styles */

/* Basic Accessibility Enhancements */
:root {
  --accessibility-focus: #FFD800;
}

/* Skip link styles */
.skip-link:focus {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: #000 !important;
  color: white !important;
  padding: 8px !important;
  text-decoration: none !important;
  z-index: 10000 !important;
  border-radius: 4px !important;
}

/* Enhanced focus indicators */
*:focus {
  outline: 2px solid var(--accessibility-focus) !important;
  outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* Custom Accessibility Toolbar Styling - Zappy Style */

/* Main button icon - ONLY target the floating button, not menu elements */
#mic-access-tool-general-button {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* AGGRESSIVELY hide all text in the button */
#mic-access-tool-general-button,
#mic-access-tool-general-button *:not(svg):not(path):not(circle):not(rect):not(polygon):not(ellipse):not(line):not(polyline):not(g) {
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  line-height: 0 !important;
  letter-spacing: -999em !important;
  white-space: nowrap !important;
}

/* Hide text nodes specifically */

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(255, 216, 0, 0.1) !important;
  background: rgba(255, 216, 0, 0.1) !important;
  box-shadow: 0 2px 8px rgba(255, 216, 0, 0.2) !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

/* Target the SVG and make it the selected color */
#mic-access-tool-general-button svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  /* Convert green to selected color using dynamic CSS filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Also directly target all SVG elements to be the selected color */
#mic-access-tool-general-button svg,
#mic-access-tool-general-button svg *,
#mic-access-tool-general-button svg path,
#mic-access-tool-general-button svg circle,
#mic-access-tool-general-button svg rect,
#mic-access-tool-general-button svg polygon,
#mic-access-tool-general-button svg ellipse,
#mic-access-tool-general-button svg line,
#mic-access-tool-general-button svg polyline,
#mic-access-tool-general-button svg g {
  fill: #FFD800 !important;
  stroke: #FFD800 !important;
  color: #FFD800 !important;
}

/* Target images if the icon is an img instead of SVG */
#mic-access-tool-general-button img,
#mic-access-tool-general-button i {
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  /* Convert green to selected color using dynamic filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Menu header with selected color */
#mic-access-tool-box .mic-access-tool-box-header,
.mic-access-tool-box-header,
div[id*="mic-access-tool-box"] header,
div[id*="mic-access-tool-box"] .header {
  background: #FFD800 !important;
  color: white !important;
}

/* Make header text white - title and close button */
#mic-access-tool-box .mic-access-tool-box-header *,
.mic-access-tool-box-header *,
div[id*="mic-access-tool-box"] header *,
div[id*="mic-access-tool-box"] .header * {
  color: white !important;
}

/* Close button text */
#mic-access-tool-box .mic-access-tool-box-header button,
#mic-access-tool-box .mic-access-tool-box-header a,
#mic-access-tool-box [class*="close"],
#mic-access-tool-box button[title*="close"],
#mic-access-tool-box button[title*="Close"] {
  color: white !important;
  background: transparent !important;
}

/* Active buttons and highlights in menu */
#mic-access-tool-box button.active,
#mic-access-tool-box button:hover,
div[id*="mic-access-tool-box"] button.active,
div[id*="mic-access-tool-box"] button:hover {
  border-color: #FFD800 !important;
  color: #FFD800 !important;
  background-color: rgba(255, 216, 0, 0.1) !important;
}

/* Reset button */
#mic-access-tool-box button[title*="reset"],
#mic-access-tool-box button[title*="Reset"],
#mic-access-tool-box [class*="reset"],
div[id*="mic-access-tool-box"] button[class*="reset"] {
  background: #FFD800 !important;
  color: white !important;
}

/* Reset button text and icon */
#mic-access-tool-box button[title*="reset"] *,
#mic-access-tool-box button[title*="Reset"] *,
#mic-access-tool-box [class*="reset"] *,
div[id*="mic-access-tool-box"] button[class*="reset"] * {
  color: white !important;
}

/* Accessibility widget - displayed by default on both mobile and desktop */
/* Position: opposite side from WhatsApp button (RTL sites → left, LTR sites → right) */
#mic-access-tool-general-button,
.mic-access-tool-general-button,
#mic-init-access-tool .mic-access-tool-general-button,
#mic-init-access-tool #mic-access-tool-general-button,
._access-icon {
  display: flex !important;
}
/* Zappy custom logo size (desktop only — mobile stays at 110px/35px) */
@media (min-width: 769px) {
  .logo, img.logo, .logo img, .logo-link img, .nav-brand img {
    max-height: none !important;
    height: 64px !important;
    max-width: 256px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .nav-container {
    min-height: 94px !important;
  }
}
/* /Zappy custom logo size */


.navbar .logo {
  border-radius: 12px !important;
  overflow: hidden !important;
}

.navbar .logo-link {
  border-radius: 12px !important;
  overflow: hidden !important;
  display: inline-block !important;
}

/* ZAPPY_MOBILE_NAV_ICON_ALIGNMENT_FIX */
/* ZAPPY_MOBILE_NAV_ICON_ALIGNMENT_FIX_V2 */
/* Keep mobile hamburger / phone buttons vertically centered even when the
   generated navbar's children are all absolute/fixed and the navbar would
   otherwise collapse to the top edge. */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    min-height: 70px !important;
  }

  .navbar > .mobile-toggle,
  nav.navbar > .mobile-toggle,
  .navbar .mobile-toggle,
  nav.navbar .mobile-toggle,
  #mobileToggle,
  .navbar > .phone-header-btn,
  nav.navbar > .phone-header-btn,
  .navbar .phone-header-btn,
  nav.navbar .phone-header-btn {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    align-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
  }

  .navbar > .mobile-toggle,
  nav.navbar > .mobile-toggle,
  .navbar .mobile-toggle,
  nav.navbar .mobile-toggle,
  #mobileToggle {
    display: flex !important;
  }

  html:not([data-zappy-site-type="ecommerce"]) .navbar > .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) nav.navbar > .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) .navbar .phone-header-btn,
  html:not([data-zappy-site-type="ecommerce"]) nav.navbar .phone-header-btn {
    display: flex !important;
  }

  html[data-zappy-site-type="ecommerce"] .phone-header-btn,
  body[data-zappy-site-type="ecommerce"] .phone-header-btn,
  html[data-zappy-site-type="ecommerce"] header .phone-header-btn,
  html[data-zappy-site-type="ecommerce"] nav .phone-header-btn {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
}

/* mobile-submenu-overflow-fix */
@media (max-width: 768px) {
  .navbar .sub-menu.mobile-expanded,
  .nav-menu .sub-menu.mobile-expanded,
  #navMenu .sub-menu.mobile-expanded,
  .zappy-products-dropdown .sub-menu.mobile-expanded,
  .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .menu-item-has-children > .sub-menu.mobile-expanded {
    max-height: none !important;
    overflow-y: visible !important;
  }
  .menu-item-has-children,
  .zappy-products-dropdown,
  .nav-menu > li.menu-item-has-children {
    flex-shrink: 0 !important;
  }
  .sub-menu a,
  .navbar .sub-menu a,
  .navbar .sub-menu li a,
  nav.navbar .sub-menu li a,
  .zappy-products-dropdown .sub-menu a {
    white-space: normal !important;
  }
}


/* zappy-nav-child-indent */
.zappy-products-dropdown .zappy-nav-child > a,
.sub-menu .zappy-nav-child > a {
  padding-left: 28px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
[dir="rtl"] .zappy-products-dropdown .zappy-nav-child > a,
[dir="rtl"] .sub-menu .zappy-nav-child > a,
html[lang="he"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="he"] .sub-menu .zappy-nav-child > a,
html[lang="ar"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="ar"] .sub-menu .zappy-nav-child > a {
  padding-left: 0 !important;
  padding-right: 28px !important;
}
.zappy-products-dropdown .zappy-nav-parent > a,
.sub-menu .zappy-nav-parent > a {
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .nav-menu.active,
  #navMenu.active {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
}


/* ========== EMPTY SUBMENU HIDING (Auto-added by Zappy) ========== */
.sub-menu:empty,
.dropdown-menu:empty,
.sub-menu.zappy-empty-submenu,
.dropdown-menu.zappy-empty-submenu,
.nav-menu .sub-menu.zappy-empty-submenu,
nav .sub-menu.zappy-empty-submenu,
.navbar .sub-menu.zappy-empty-submenu,
#navMenu .sub-menu.zappy-empty-submenu,
#navMenu .dropdown-menu.zappy-empty-submenu {
  display: none !important;
}


/* ========== RTL MOBILE NAVBAR FIX (zappy-rtl-mobile-fix) ========== */
/* High-specificity rules to ensure RTL positioning wins over any [lang="en"] conflicts */
/* For RTL sites: hamburger on RIGHT, phone on LEFT (mirror of LTR layout) */
/* NOTE: Includes both html[dir="rtl"] AND [dir="rtl"] selectors as fallback */
/* because some pages may be wrapped with <html lang="en"> (missing dir="rtl" on html) */
/* but still have dir="rtl" on <body> or other ancestor elements */

@media (max-width: 768px) {
  /* RTL Mobile Toggle (hamburger) - positioned on RIGHT */
  /* Using multiple parent selectors for higher specificity */
  html[dir="rtl"] .navbar .mobile-toggle,
  html[dir="rtl"] nav .mobile-toggle,
  html[dir="rtl"] header .mobile-toggle,
  html[dir="rtl"] .nav-container .mobile-toggle,
  html[dir="rtl"] .mobile-toggle,
  [dir="rtl"] .navbar .mobile-toggle,
  [dir="rtl"] nav .mobile-toggle,
  [dir="rtl"] header .mobile-toggle,
  [dir="rtl"] .nav-container .mobile-toggle,
  [dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 15px !important;
  }
  
  /* RTL Phone Button - positioned on LEFT */
  html[dir="rtl"] .navbar .phone-header-btn,
  html[dir="rtl"] nav .phone-header-btn,
  html[dir="rtl"] header .phone-header-btn,
  html[dir="rtl"] .nav-container .phone-header-btn,
  html[dir="rtl"] .phone-header-btn,
  [dir="rtl"] .navbar .phone-header-btn,
  [dir="rtl"] nav .phone-header-btn,
  [dir="rtl"] header .phone-header-btn,
  [dir="rtl"] .nav-container .phone-header-btn,
  [dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 15px !important;
    right: auto !important;
  }
  
  /* RTL Mobile Menu - slides from RIGHT */
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  html[dir="rtl"] .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    left: auto !important;
    right: 0 !important;
  }
  
  /* RTL Mobile Menu Links - text align right */
  html[dir="rtl"] .nav-menu a,
  html[dir="rtl"] .nav-menu li,
  [dir="rtl"] .nav-menu a,
  [dir="rtl"] .nav-menu li,
  html[lang="he"] .nav-menu a,
  html[lang="he"] .nav-menu li,
  html[lang="ar"] .nav-menu a,
  html[lang="ar"] .nav-menu li {
    text-align: right !important;
  }
}

/* ========== END RTL MOBILE NAVBAR FIX ========== */


/* ========== NAV CONTAINER MIN-HEIGHT FIX (nav-container-min-height-fix) ========== */
/* On mobile, all nav children are position:absolute/fixed (out of flow), */
/* so height:auto collapses to 0px. min-height ensures the navbar is visible. */

/* DEFENSIVE: Ensure CTA container is visible on desktop */
/* This guards against CSS minifiers (CleanCSS level 2) that may pull */
/* the mobile display:none rule out of its @media query */
@media (min-width: 769px) {
  .nav-cta-container,
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    min-height: 70px !important;
    position: relative !important;
  }
  /* Reset nav-cta-container desktop styling (box-shadow/padding) on mobile */
  .nav-cta-container {
    box-shadow: none !important;
    padding: 0 !important;
  }
  /* Hide nav-cta-container when no lang-switcher (only CTA btn, which is hidden on mobile) */
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: none !important;
  }
}

/* ========== END NAV CONTAINER MIN-HEIGHT FIX ========== */


/* ========== HERO IMAGE GRADIENT FIX (hero-image-gradient-fix) ========== */
/* Prevent hero image fade gradient from bleeding over headline text below. */
/* The .image-fade-gradient has bottom: -30px which extends below its parent; */
/* on mobile stacked layout this overlaps the h1 text. */

@media (max-width: 768px) {
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ========== END HERO IMAGE GRADIENT FIX ========== */


/* ========== FULLSCREEN HERO OVERFLOW FIX (fullscreen-hero-overflow-fix) ========== */
@media (max-width: 768px) {

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}
/* ========== END FULLSCREEN HERO OVERFLOW FIX ========== */


/* ========== PRODUCT ICON STYLES (product-icon-styles) ========== */
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; width: 100%; }
.product-title-row h1 { flex: 1; min-width: 0; }
.product-icon-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 6px; }
.icon-btn { width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.2s; color: currentColor; padding: 0; }
.icon-btn:hover { color: var(--primary-color, #ff0083); }
.icon-btn.active { color: #e74c3c; }
.icon-btn.active .heart-outline { display: none !important; }
.icon-btn.active .heart-filled { display: block !important; }
.profile-section, .addresses-section, .favorites-section, .orders-section { border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 12px; padding: 24px; margin-bottom: 24px; background: transparent; }
.favorites-section h2 { font-size: 1.25rem; color: var(--text-color, #1f2937); margin-bottom: 20px; }
.favorites-loading { text-align: center; padding: 20px; color: var(--text-secondary, #6b7280); }
.favorites-empty { text-align: center; padding: 32px; color: var(--text-secondary, #6b7280); }
.favorites-empty p { margin-bottom: 16px; }
.favorites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.favorite-card { background: transparent; border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; position: relative; }
.favorite-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.favorite-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.favorite-card-body { padding: 12px; }
.favorite-card-body h4 { font-size: 0.875rem; font-weight: 500; color: var(--text-color, #1f2937); margin: 0 0 6px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.favorite-price { font-weight: 600; color: var(--primary-color, #ff0083); font-size: 0.9rem; }
.favorite-remove-btn { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: #dc2626; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.favorite-remove-btn:hover { background: #dc2626; color: white; }
@media (max-width: 480px) { .favorites-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
/* ========== END PRODUCT ICON STYLES ========== */

/* ========== ORPHANED_ZOOM_IMG_FIX ========== */
@media (max-width: 768px) {
  .zappy-preserve-css-grid > img[data-zappy-zoom],
  [class*="-grid"] > img[data-zappy-zoom] {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    object-fit: cover !important;
    left: auto !important;
    top: auto !important;
  }
}
/* ========== END ORPHANED_ZOOM_IMG_FIX ========== */


/* ========== GRID RESPONSIVE FIX (zappy-grid-mobile-fix) ========== */
/* Ensures grids with explicit columns use CSS variable and are responsive on mobile */

/* DESKTOP: Explicit column grids use CSS variable for grid-template-columns */
/* The deployment process ensures --zappy-grid-cols is always set in inline styles */
[data-zappy-explicit-columns="true"] {
  display: grid !important;
  grid-template-columns: var(--zappy-grid-cols, repeat(2, minmax(0, 1fr))) !important;
}
/* Carousel mode overrides grid display to allow flex-based track layout */
.zappy-carousel-mode,
[data-zappy-display-mode="carousel"] {
  display: block !important;
}

/* ZOOM WRAPPER: Ensure overflow:hidden and position:relative for crop zoom effect */
/* The wrapper clips the oversized image to create the zoom/crop effect */
/* position:relative is needed so absolutely positioned images stay within the wrapper */
[data-zappy-zoom-wrapper="true"] {
  overflow: hidden !important;
  position: relative !important;
}

/* Prevent inserted elements from exceeding their container width.
   max-width uses no !important so inline styles can set a specific constraint. */
.zappy-inserted-element {
  max-width: 100%;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  /* Auto-grid (AI-generated) grids - force single column on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"],
  [data-zappy-auto-grid="true"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Grid children: override min-width:auto so children with fixed-width
     content (e.g. zoom wrappers with width:448px!important) can shrink
     to fit the 1fr column instead of overflowing the grid container. */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > *,
  [data-zappy-auto-grid="true"] > *,
  [data-zappy-explicit-columns="true"] > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  
  /* Featured grids - force single column on mobile */
  .featured-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Neutralize centering transforms on mobile */
  [data-zappy-center-transform] {
    transform: none !important;
  }
  
  /* Media-only grid items - constrain height on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only {
    height: auto !important;
    max-height: 300px !important;
  }
  
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img {
    height: auto !important;
    max-height: 300px !important;
  }
  
  /* Full-width mode zoom wrappers - ensure image is visible (not collapsed) */
  [data-zappy-zoom-wrapper-width-mode="full"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    left: auto !important;
    top: auto !important;
    object-fit: cover !important;
  }
  
  /* MOBILE: Explicit column grids - force single column on mobile */
  [data-zappy-explicit-columns="true"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Inline grid with fixed pixel columns - make responsive */
  .zappy-inline-grid-active.zappy-preserve-css-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* AI-generated section grids with common naming patterns */
  /* These often have fixed pixel column widths that don't adapt to mobile */
  [class*="-grid"]:not([data-zappy-auto-grid]):not(.zappy-preserve-css-grid):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  /* Gallery grids often have -large items that span multiple columns */
  [class*="-grid"] > [class*="-large"],
  [class*="-grid"] > [class*="-item-large"],
  [class*="-grid"] > [style*="grid-column: span"],
  [class*="-grid"] > [style*="grid-row: span"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  /* Common AI-generated visual/frame containers that may overflow */
  [class*="-visual"],
  [class*="-frame"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  
  /* CRITICAL: Constrain zoom wrappers on mobile without breaking saved crop geometry */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* The zoom wrapper's image is position:absolute (so it contributes 0 to the
     wrapper's intrinsic content width). Inserted-element parents that carry a
     desktop pixel height (e.g. height:234px) collapse to 0px wide on mobile
     because nothing in the subtree pushes back on the cross-axis. Force them
     to fill the parent container so the wrapper's aspect-ratio chain resolves. */
  .zappy-inserted-element:has(> [data-zappy-zoom-wrapper="true"]) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Reset zoom wrapper images on mobile to responsive display.
     Images with explicit mobile crop overrides are excluded - the JS runtime
     applies their crop/zoom after page load. */
  [data-zappy-zoom-wrapper="true"]:not([data-zappy-zoom-wrapper-width-mode="full"]) img:not([data-zappy-mobile-object-position]):not([data-zappy-mobile-zoom]) {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* Carousel: ensure block display on mobile */
  .zappy-carousel-mode,
  [data-zappy-display-mode="carousel"] {
    display: block !important;
  }
  /* JS-initialized carousel: constrain wrapper on mobile */
  .zappy-carousel-js-init .zappy-carousel-container-wrapper {
    max-width: calc(100% - 20px) !important;
  }
  .zappy-carousel-js-init .zappy-carousel-item {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* CSS-only fallback: if JS didn't initialize, stack items vertically */
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-container-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-track {
    flex-direction: column !important;
    transform: none !important;
    gap: 1.5rem !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) > :not(style):not(script):not(.zappy-carousel-btn):not(.zappy-carousel-dots):not(.zappy-carousel-container-wrapper) {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-btn,
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-dots {
    display: none !important;
  }
  /* Carousel items: fix zoom wrapper padding creating excess spacing */
  .zappy-carousel-item [data-zappy-zoom-wrapper="true"],
  .zappy-carousel-mode > div [data-zappy-zoom-wrapper="true"] {
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }
  /* Carousel buttons: position inside the card area on mobile */
  .zappy-carousel-js-init > .zappy-carousel-btn {
    left: 4px !important;
    right: auto !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    background: rgba(255,255,255,0.9) !important;
  }
  .zappy-carousel-js-init > .zappy-carousel-btn.zappy-carousel-right {
    left: auto !important;
    right: 4px !important;
  }
  
  /* ========== MAIN PADDING FIX ========== */
  /* Fix double-padding from old V2 mobile CSS that applied padding to both main and sections */
  /* Exclude ecommerce-page which needs its own horizontal padding for proper mobile layout */
  main:not(.ecommerce-page) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Hero sections need flex-column on mobile for proper stacking */
  section[class*="hero"],
  .home-Hero-section {
    flex-direction: column !important;
  }
  
  /* Hero sections need extra padding-top to clear the sticky navbar */
  /* The navbar is ~70px tall, so hero needs at least 100px padding-top */
  /* IMPORTANT: Use section tag to avoid matching child elements like buttons that contain "-hero-section" in their BEM class */
  section[class*="-hero-section"]:first-of-type,
  main > section:first-child {
    padding-top: 100px !important;
  }
  
  /* ========== HERO CONTAINER FULL-WIDTH (FULLSCREEN HEROES ONLY) ========== */
  /* Only strip container padding/width for heroes with actual background images.
     Text-only and side-by-side hero sections on inner pages need normal padding. */
  .hero-container,
  /* V2 generation-time fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] > .container,
  section[data-hero-type="fullscreen-card"] > .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] > .container,
  section[class*="hero"][data-zappy-bg-type="video"] > .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) > .container,
  section[class*="hero"]:has([data-hero-bg]) > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* ========== HERO WIDTH FIX ========== */
  /* Remove nested horizontal padding for fullscreen-type heroes only */
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-metrics,
  .home-Hero-section .hero-image-column,
  .home-Hero-section .hero-image-frame,
  .home-Hero-section .container,
  .home-Hero-section .wrapper,
  /* V2 fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] .hero-container,
  section[data-hero-type="fullscreen-scrim"] .hero-content,
  section[data-hero-type="fullscreen-scrim"] .container,
  section[data-hero-type="fullscreen-card"] .hero-container,
  section[data-hero-type="fullscreen-card"] .hero-content,
  section[data-hero-type="fullscreen-card"] .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="image"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="image"] .container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="video"] .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) .hero-container,
  section[class*="hero"]:has(.hero-bg-container) .hero-content,
  section[class*="hero"]:has(.hero-bg-container) .container,
  section[class*="hero"]:has([data-hero-bg]) .hero-container,
  section[class*="hero"]:has([data-hero-bg]) .hero-content,
  section[class*="hero"]:has([data-hero-bg]) .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  
  /* ========== HERO VERTICAL SPACING FIX ========== */
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-image-column {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .hero-cta-row {
    padding: 8px 0 !important;
    margin: 8px 0 12px !important;
  }
  
  .hero-content {
    gap: 12px !important;
  }
  
  .hero-metrics {
    gap: 10px !important;
  }
  
  .metric-card {
    padding: 12px !important;
  }
  
  .hero-container {
    gap: 16px !important;
  }

  /* ========== GRID OVERFLOW FIX ========== */
  /* CSS Grid items default to min-width:auto, preventing them from shrinking
     below their content's intrinsic size. Fixed-width zoom wrappers or large
     images inside grid items can force the column wider than the viewport. */
  .hero-container > * {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  /* Zappy-inserted image elements with fixed-width zoom wrappers must
     respect the parent container width on mobile */
  .zappy-inserted-element,
  [data-zappy-zoom-wrapper] {
    max-width: 100% !important;
  }

  /* ========== FULLSCREEN HERO OVERFLOW FIX ========== */

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}

/* ========== HERO SECTION WIDTH CONSTRAINT (ALL VIEWPORTS) ========== */
/* Prevent hero sections from exceeding viewport width.                */
/* Root cause: AI-generated CSS may use width:100vw or add horizontal  */
/* padding to the section, causing it to overflow the viewport.        */
/* NOTE: Do NOT add overflow:hidden here — it clips SVG bottom dividers */
/* that need overflow:visible to extend into the next section.          */
section[class*="hero" i],
section[class*="Hero"],
section[data-hero-type] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ========== SVG DIVIDER OVERLAY FIX ========== */
/* Many AI sections place .section-divider absolutely at the bottom of a section,
   which can overlap/cut off the last row of content. The safest CSS-only fix
   is to prevent overlay by forcing the divider into normal flow. */
.section-divider {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
  margin-top: 16px !important;
}

.section-divider svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* Exclude small icon SVGs from full-width sizing - these are decorative icons, not wave dividers */
.section-divider svg.divider-icon,
.section-divider svg[width="32"],
.section-divider svg[width="24"],
.section-divider svg[width="48"],
.section-divider svg[viewBox="0 0 32 32"],
.section-divider svg[viewBox="0 0 24 24"],
.section-divider svg[viewBox="0 0 48 48"] {
  width: auto !important;
  height: auto !important;
  max-width: 64px !important;
  max-height: 64px !important;
}

/* ========== END SVG DIVIDER OVERLAY FIX ========== */

/* ========== HORIZONTAL-PAIR GRID MEDIA FIX ========== */
/* Ensures media in horizontal-pair grids fills columns correctly */

/* Image/video media cells: stretch to fill the grid cell */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"]:not([data-element-type="icon"]) {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  min-height: 0 !important;
}

/* Icon media cells: use flex for centering but allow alignment to be controlled by the editor */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"][data-element-type="icon"] {
  position: relative !important;
  display: flex !important;
  min-height: 0 !important;
}

/* Images/videos: preserve aspect ratio while filling column width */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > img,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Icons/SVG: respect their explicit pixel size from the editor */
/* Do NOT force width/height: 100% - icons should use their inline size */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > svg,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify svg {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: inline-block !important;
}

/* Non-media grid items (buttons, text, etc.) should NOT stretch */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) {
  align-self: start !important;
  height: auto !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Buttons inside non-media grid items should NOT stretch horizontally */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) .btn,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) [data-element-type="button"] {
  width: auto !important;
  flex: 0 0 auto !important;
}

/* ========== END HORIZONTAL-PAIR GRID MEDIA FIX ========== */

/* ========== END GRID RESPONSIVE FIX ========== */


/* ZAPPY_NAVBAR_CTA_ALIGNMENT_FIX */
.nav-cta-container .zappy-search-container,
.zappy-search-container { align-self: center; }
.nav-cta-container p { margin: 0 !important; }


/* ZAPPY_SECTION_BG_TYPE_FIX */
[data-zappy-bg-type="color"] { background-image: none !important; background-color: var(--zappy-bg-color, transparent) !important; }
[data-zappy-bg-type="image"] { background-image: linear-gradient(var(--zappy-bg-overlay, rgba(0,0,0,0)), var(--zappy-bg-overlay, rgba(0,0,0,0))), var(--zappy-bg-image, none) !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
[data-zappy-bg-type="video"] { background-image: none !important; }


/* ZAPPY_IOS_NAVBAR_GAP_FIX */
/* iOS Safari does not clip overflow-x:hidden on <html>, so a page with any
   horizontal overflow ends up with visual viewport > layout viewport.
   position:fixed children anchored with right:0 (the mobile dropdown menu)
   then pin to the visual viewport right edge — off-screen past the navbar.
   Companion JS (ZAPPY_IOS_VIEWPORT_GAP_FIX in script.js) measures the gap
   and exposes it as --ios-viewport-gap; this rule uses it to shift the
   menu inward so it lands on the real layout-viewport right edge. On every
   other browser the gap is 0 and the rule is a no-op.

   The selector list below intentionally mirrors the RTL selectors used
   elsewhere in the stylesheet — we need equal-or-higher specificity to
   win the cascade (!important alone can't beat higher specificity). */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }
  #navMenu,
  .nav-menu,
  html[dir="rtl"] .nav-menu,
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    /* Force position:fixed so the --ios-viewport-gap shift is measured
       against the (visual) viewport, not whatever container the menu may
       have been reparented into by earlier v1/v2 patches.
       --zappy-navbar-bottom is set by the runtime JS companion and
       defaults to 70px — this lets us override the v2 `top: 100%` (which
       with position:fixed would resolve to the full viewport height and
       push the menu off-screen). */
    position: fixed !important;
    top: var(--zappy-navbar-bottom, 70px) !important;
    right: var(--ios-viewport-gap, 0px) !important;
  }
}


/* ZAPPY_PRODUCTS_DROPDOWN_LTR_INDENT */
/* LTR mirror of the [dir="rtl"] indentation block. Equal-or-higher
   specificity than the shorthand .navbar .sub-menu li a override so the
   nested sub-category items keep their visual indent on every LTR page —
   English, Spanish, French, Russian, German, etc. The selectors target
   dir="ltr" (the source of truth set on <html> by per-language page
   generation), NOT a specific language code, so the rule stays generic
   across every site / language combination. */
[dir="ltr"] .sub-menu .zappy-nav-child > a,
[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a,
html[dir="ltr"] .sub-menu .zappy-nav-child > a,
html[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a {
  padding-left: 28px !important;
  padding-right: 16px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
@media (max-width: 768px) {
  [dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  [dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a {
    padding-left: 36px !important;
    padding-right: 16px !important;
  }
}


/* ZAPPY_MOBILE_NAV_MENU_ITEM_PADDING */
@media (max-width: 768px) {
  .navbar .nav-menu.active > li > a,
  nav.navbar .nav-menu.active > li > a,
  #navMenu.active > li > a,
  .nav-menu.open > li > a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.4 !important;
  }
  .navbar .nav-menu.active > li,
  nav.navbar .nav-menu.active > li,
  #navMenu.active > li,
  .nav-menu.open > li {
    margin: 4px 0 !important;
  }
  .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  #navMenu.active > li.zappy-products-dropdown > a,
  .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 56px !important;
  }
  html[dir="rtl"] .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] #navMenu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 16px !important;
    padding-left: 56px !important;
  }
}

html[dir="rtl"] #mic-access-tool-general-button, html[dir="rtl"] .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="rtl"] ._access-icon { left: 20px !important; right: auto !important; }
html[dir="ltr"] #mic-access-tool-general-button, html[dir="ltr"] .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="ltr"] ._access-icon,
html:not([dir]) #mic-access-tool-general-button, html:not([dir]) .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool #mic-access-tool-general-button,
html:not([dir]) ._access-icon { right: 20px !important; left: auto !important; }

/* LTR: keep image on left for solution-reverse sections */
html[dir="ltr"] .solution-item.solution-reverse .solution-image { order: -1 !important; }
html[dir="ltr"] .solution-item.solution-reverse .solution-content { order: 1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-image { order: -1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-content { order: 1 !important; }

/* Spec table BiDi fix: isolate cells so mixed LTR/RTL content renders correctly */
.specs-table th, .specs-table td { unicode-bidi: plaintext !important; }
