

/* 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');
}

/* 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=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1E3A5F;
  --secondary: #6B8AA6;
  --accent: #C89B5A;
  --bg-light: #FAFAF8;
  --bg-dark: #1E3A5F;
  --text-dark: #1F2937;
  --text-light: #FAFAF8;
  --text-muted: #6B7280;
  --border-light: #D9DFE5;
  --border-dark: #4B6380;
  --nav-bg: #FAFAF8;
  --nav-text: #1F2937;
  --nav-text-hover: #1a3151;

  --radius-sm: 2px;
  --radius-card: 4px;
  --radius-btn: 3px;
  --radius-img: 0px;
  --radius-badge: 2px;
  --radius-input: 3px;
  --shadow-subtle: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-card: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-elevated: 0 10px 28px rgba(0,0,0,0.12);
  --shadow-btn-hover: 0 12px 28px rgba(31,61,99,0.18);
  --spacing-section: 96px;
  --spacing-section-mobile: 56px;
  --spacing-card-padding: 40px;
  --spacing-card-gap: 24px;
  --spacing-element-gap: 16px;
  --transition-default: all 0.2s ease;
  --transition-hover: all 0.2s ease;

  --gradient-primary: linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  --gradient-secondary: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  --gradient-gold-shine: linear-gradient(180deg, #D8BB6B 0%, #B9973E 100%);
  --gradient-gold-accent: linear-gradient(90deg, #B9973E 0%, #D8BB6B 50%, #B9973E 100%);
  --gradient-dark-section: linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  --gradient-light-section: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  --gradient-overlay-dark: linear-gradient(90deg, rgba(29,54,87,0.18) 0%, rgba(29,54,87,0.05) 100%);
  --gradient-overlay-light: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,243,236,0.88) 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;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  font-variant-ligatures: common-ligatures;
}

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;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

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

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

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

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

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;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-footer a {
  color: inherit;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

input,
button,
textarea,
select {
  font: inherit;
  border-radius: var(--radius-input);
}

input,
textarea,
select {
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  color: var(--text-dark);
  background-color: #fff;
  transition: var(--transition-default);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

blockquote {
  border-right: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
  background-color: rgba(200, 155, 90, 0.05);
}

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

pre {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
}

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

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

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

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

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

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark p {
  color: var(--text-light);
}

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

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

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

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background: linear-gradient(180deg, #2d5280 0%, #24476F 100%);
  color: var(--text-light);
}

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

.btn-secondary:hover {
  background: linear-gradient(180deg, #e0c060 0%, #C89B5A 100%);
  color: var(--text-light);
}

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

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

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

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

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

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.badge-primary {
  background-color: rgba(30, 58, 95, 0.1);
  color: var(--primary);
}

.badge-accent {
  background-color: rgba(200, 155, 90, 0.15);
  color: #9a7030;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

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

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

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: var(--spacing-element-gap); }
.gap-lg { gap: var(--spacing-card-gap); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-section { padding-top: var(--spacing-section); }
.pb-section { padding-bottom: var(--spacing-section); }

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

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 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;
}

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 15px !important;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .container {
    padding: 0 24px;
  }
}

@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;
  }

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

  .container {
    padding: 0 16px;
  }

  .card {
    padding: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 15px;
  }

  .d-none-mobile {
    display: none !important;
  }
}

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

  .card {
    padding: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .btn-inline {
    width: auto;
  }
}

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

@media (min-width: 1025px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-card-gap);
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-card-gap);
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-card-gap);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-card-gap);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-card-gap);
  }
}

/* Navbar Styles */
:root {
  --nav-bg: #FAFAF8;
  --nav-text: #1F2937;
  --nav-text-hover: #1a3151;
  --primary: #1E3A5F;
  --secondary: #6B8AA6;
  --accent: #C89B5A;
  --bg-light: #FAFAF8;
  --bg-dark: #1E3A5F;
  --text-dark: #1F2937;
  --text-light: #FAFAF8;
  --text-muted: #6B7280;
  --border-light: #D9DFE5;
  --border-dark: #4B6380;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(30, 58, 95, 0.07);
  width: 100%;
  direction: rtl;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  gap: 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: 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;
  margin-right: 36px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 3px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 4px;
  right: 16px;
  left: 16px;
  height: 1.5px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background-color: rgba(200, 155, 90, 0.06);
}

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

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--primary);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: none;
}

.nav-cta-btn:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(31, 61, 99, 0.18);
  border-color: var(--primary);
}

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

.mobile-toggle:hover {
  color: var(--nav-text-hover);
  background-color: rgba(200, 155, 90, 0.08);
}

.phone-header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 8px;
  border-radius: 3px;
  transition: all 0.2s ease;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.phone-header-btn:hover {
  color: var(--accent);
  background-color: rgba(200, 155, 90, 0.08);
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background-color: var(--nav-bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.1);
    padding: 12px 0;
    margin: 0;
    gap: 0;
    z-index: 999;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }

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

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .nav-cta-container {
    display: none;
  }
}
:root {
  --nav-bg: #FAFAF8;
  --nav-text: #1F2937;
  --nav-text-hover: #1a3151;
  --primary: #1E3A5F;
  --secondary: #6B8AA6;
  --accent: #C89B5A;
  --bg-light: #FAFAF8;
  --bg-dark: #1E3A5F;
  --text-dark: #1F2937;
  --text-light: #FAFAF8;
  --text-muted: #6B7280;
  --border-light: #D9DFE5;
  --border-dark: #4B6380;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(30, 58, 95, 0.07);
  width: 100%;
  direction: rtl;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  gap: 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: 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;
  margin-right: 36px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 3px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 4px;
  right: 16px;
  left: 16px;
  height: 1.5px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  background-color: rgba(200, 155, 90, 0.06);
}

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

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--primary);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: none;
}

.nav-cta-btn:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(31, 61, 99, 0.18);
  border-color: var(--primary);
}

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

.mobile-toggle:hover {
  color: var(--nav-text-hover);
  background-color: rgba(200, 155, 90, 0.08);
}

.phone-header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 8px;
  border-radius: 3px;
  transition: all 0.2s ease;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.phone-header-btn:hover {
  color: var(--accent);
  background-color: rgba(200, 155, 90, 0.08);
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background-color: var(--nav-bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.1);
    padding: 12px 0;
    margin: 0;
    gap: 0;
    z-index: 999;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }

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

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

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

/* ============================================
   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, #1E3A5F));
  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-dark)) !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;
}

/* 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-dark)) !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: 50%;
    transform: translateY(-50%);
    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;
    height: 36px !important;
    color: var(--nav-text, var(--text-dark)) !important;
  }
  
  .phone-header-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    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;
    height: 36px !important;
    color: var(--nav-text, var(--text-dark)) !important;
  }
  
  /* 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-light, #ffffff) !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: 500px !important;
    overflow: 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-dark)) !important;
  }
  .mobile-submenu-toggle {
    color: var(--nav-text, var(--text-dark)) !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;
     !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;
     !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: 500px !important;
    pointer-events: auto !important;
    position: static !important;
    overflow: 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: 100vw !important;
  max-width: none !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: #1E3A5F;
  --secondary: #6B8AA6;
  --accent: #C89B5A;
  --bg-light: #FAFAF8;
  --bg-dark: #1E3A5F;
  --text-dark: #1F2937;
  --text-light: #FAFAF8;
  --text-muted: #6B7280;
  --border-light: #D9DFE5;
  --border-dark: #4B6380;

  font-family: 'Rubik', sans-serif;
  direction: rtl;
  background-color: #162d4a;
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

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

/* ── Main Section ── */
.footer-main {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border-dark);
}

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

/* ── Column Base ── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Brand Column ── */
.footer-logo-wrap {
  margin-bottom: 1rem;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.footer-logo-wrap .logo {
  max-width: 150px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250,250,248,0.65);
  line-height: 1.7;
  margin: 0 0 1.2rem 0;
  letter-spacing: 0.01em;
}

.footer-divider {
  width: 36px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

/* ── Social Icons ── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-direction: row;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background-color: rgba(255,255,255,0.08);
  color: rgba(250,250,248,0.85);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border-dark);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ── Section Headings ── */
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 1.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading-accent {
  display: inline-block;
  width: 3px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Nav Links ── */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav li {
  border-bottom: 1px solid rgba(75,99,128,0.35);
}

.footer-nav li:first-child {
  border-top: 1px solid rgba(75,99,128,0.35);
}

.footer-nav a {
  display: block;
  padding: 0.6rem 0;
  color: rgba(250,250,248,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  padding-right: 1rem;
}

.footer-nav a::before {
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text-light);
  padding-right: 1.4rem;
}

.footer-nav a:hover::before {
  right: 0.3rem;
}

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

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

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background-color: rgba(200,155,90,0.15);
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.contact-text {
  font-size: 0.875rem;
  color: rgba(250,250,248,0.72);
  line-height: 1.5;
  word-break: break-word;
}

.contact-text a {
  color: rgba(250,250,248,0.72);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.contact-text a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ── About Column ── */
.footer-about-text {
  font-size: 0.875rem;
  color: rgba(250,250,248,0.65);
  line-height: 1.75;
  margin: 0 0 1.1rem 0;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(200,155,90,0.3);
  padding-bottom: 0.1rem;
  transition: all 0.2s ease;
}

.footer-cta-link:hover {
  color: #d9ae72;
  border-bottom-color: #d9ae72;
  gap: 0.6rem;
}

.footer-cta-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.footer-cta-link:hover i {
  transform: translateX(-3px);
}

/* ── Bottom Bar ── */
.footer-bottom {
  background-color: rgba(0,0,0,0.2);
  padding: 1.1rem 0;
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(250,250,248,0.5);
  margin: 0;
  letter-spacing: 0.01em;
}

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

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 3px;
  padding: 0.1rem 0.2rem;
}

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

.footer-legal-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: var(--border-dark);
  border-radius: 1px;
  margin: 0 0.1rem;
}

.zappy-attribution {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.4) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.zappy-attribution:hover {
  color: rgba(250,250,248,0.7) !important;
}

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

@media (max-width: 767px) {
  .footer-main {
    padding: 2.5rem 0 2rem;
  }

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

  .footer-col--brand {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
  }

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

  .footer-legal {
    gap: 0.3rem;
  }

  .footer-container {
    padding: 0 1.25rem;
  }
}

/* Footer Contrast Guard — overrides dark-on-dark text */
.site-footer .contact-list a,
.site-footer .contact-list li,
.site-footer .contact-list span,
.site-footer .footer-legal a,
.site-footer .copyright p,
.site-footer .footer-description,
.site-footer .footer-bottom a,
.site-footer .footer-bottom p,
.site-footer .footer-bottom span:not(.separator) {
  color: #6B7280 !important;
}
.site-footer .contact-list a:hover,
.site-footer .footer-legal a:hover,
.site-footer .footer-bottom a:hover {
  color: #FAFAF8 !important;
}
.site-footer .footer-legal .separator {
  color: #4B6380 !important;
}
/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }
/* index-hero */
.index-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background-color: #1E3A5F;
  color: var(--text-light);
  direction: rtl;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

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

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

/* ── Scrim ── */
.index-hero-section .index-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(18, 36, 60, 0.82) 0%, rgba(18, 36, 60, 0.55) 50%, rgba(18, 36, 60, 0.18) 100%);
}

/* ── Container ── */
.index-hero-section .index-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

/* ── Overlay Card ── */
.index-hero-section .index-hero-card {
  background: rgba(250, 250, 248, 0.94);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

/* ── Brass Accent Line (top of card) ── */
.index-hero-section .index-hero-brass-line {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #B9973E 0%, #D8BB6B 50%, #B9973E 100%);
  border-radius: 4px 4px 0 0;
}

/* ── Label ── */
.index-hero-section .index-hero-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  text-align: right;
}

/* ── H1 ── */
.index-hero-section .index-hero-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 6px 0;
  text-align: right;
  letter-spacing: -0.01em;
}

.index-hero-section .index-hero-h1-sub {
  display: block;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Subtitle / H3 ── */
.index-hero-section .index-hero-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4F5560;
  margin: 16px 0 0 0;
  text-align: right;
}

/* ── Content block ── */
.index-hero-section .index-hero-content {
  margin-bottom: 28px;
}

/* ── CTA Buttons ── */
.index-hero-section .index-hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.index-hero-section .index-hero-btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-primary:hover {
  box-shadow: 0 12px 28px rgba(31, 61, 99, 0.18);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #D8BB6B 0%, #C89B5A 100%);
}

.index-hero-section .index-hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-secondary:hover {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 12px 28px rgba(31, 61, 99, 0.18);
  transform: translateY(-2px);
}

/* ── Trust Line ── */
.index-hero-section .index-hero-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.index-hero-section .index-hero-trust-label {
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.index-hero-section .index-hero-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.index-hero-section .index-hero-trust-list li {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding-inline-end: 14px;
  text-align: right;
}

.index-hero-section .index-hero-trust-list li::after {
  content: '·';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.index-hero-section .index-hero-trust-list li:last-child {
  padding-inline-end: 0;
}

.index-hero-section .index-hero-trust-list li:last-child::after {
  display: none;
}

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

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

.index-hero-section .index-hero-brass-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C89B5A 20%, #D8BB6B 50%, #C89B5A 80%, transparent 100%);
  opacity: 0.7;
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════ */
@media (max-width: 767px) {
  .index-hero-section {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 72px;
  }

  .index-hero-section .index-hero-container {
    padding: 100px 16px 24px;
    justify-content: center;
  }

  .index-hero-section .index-hero-card {
    max-width: 100%;
    padding: 28px 20px 24px;
  }

  .index-hero-section .index-hero-h1 {
    font-size: 2rem;
  }

  .index-hero-section .index-hero-h1-sub {
    font-size: 1.2rem;
  }

  .index-hero-section .index-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .index-hero-section .index-hero-btn-primary,
  .index-hero-section .index-hero-btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .index-hero-section .index-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .index-hero-section .index-hero-trust-list {
    gap: 4px 10px;
  }
}

/* ════════════════════════════════
   RESPONSIVE — DESKTOP
   ════════════════════════════════ */
@media (min-width: 768px) {
  .index-hero-section .index-hero-container {
    padding: 160px 48px 48px;
    align-items: flex-end;
  }

  .index-hero-section .index-hero-card {
    max-width: 520px;
  }
}

/* ── Intro Block ── */

/* ── Cards Grid ── */

/* ── Individual Card ── */

/* Top accent line */

/* Icon Area */

/* Card Content */

/* Card Footer Tags */

/* ── Bottom Divider ── */

/* ── Responsive ── */

/* index-services */
.index-services-section {
  position: relative;
  overflow: visible;
  background-color: #FBF8F2;
  background-image: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  color: var(--text-dark);
  padding: 96px 0 80px;
  direction: rtl;
}

/* Container */
.index-services-section .index-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Intro Row ─────────────────────────────────────────── */
.index-services-section .index-services-intro-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 56px;
}

.index-services-section .index-services-intro-content {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 16px;
}

.index-services-section .index-services-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 10px;
  line-height: 1.4;
}

.index-services-section .index-services-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0;
  text-align: right;
}

.index-services-section .index-services-intro-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
  max-width: 520px;
}

.index-services-section .btn-primary.index-services-cta {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  margin-top: 8px;
  cursor: pointer;
}

.index-services-section .btn-primary.index-services-cta:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
}

/* ── Image / Report Frame ──────────────────────────────── */
.index-services-section .index-services-image-wrapper {
  flex: 0 0 380px;
  width: 380px;
  min-width: 280px;
}

.index-services-section .index-services-report-frame {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.index-services-section .index-services-report-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
}

.index-services-section .index-services-report-tag {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.index-services-section .index-services-report-date {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  color: rgba(250,250,248,0.65);
  letter-spacing: 0.04em;
}

.index-services-section .index-services-report-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.index-services-section .index-services-report-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #F7F3EC;
  border-top: 1px solid var(--border-light);
}

.index-services-section .index-services-report-seal {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.index-services-section .index-services-report-name {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* ── Accent Rule ───────────────────────────────────────── */
.index-services-section .index-services-rule {
  width: 100%;
  height: 1px;
  background: rgba(217,210,198,0.7);
  margin-bottom: 48px;
  position: relative;
}

.index-services-section .index-services-rule::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: -1px;
  width: 64px;
  height: 2px;
  background: var(--accent);
}

/* ── Service Cards Grid ────────────────────────────────── */
.index-services-section .index-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  direction: rtl;
}

.index-services-section .index-services-card {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--accent);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.index-services-section .index-services-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.index-services-section .index-services-card-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,58,95,0.07);
  border-radius: 4px;
  color: var(--primary);
  margin-top: 2px;
}

.index-services-section .index-services-card-icon svg {
  display: block;
  flex-shrink: 0;
}

.index-services-section .index-services-card-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.index-services-section .index-services-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
}

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

.index-services-section .index-services-card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-top: 4px;
  cursor: default;
}

.index-services-section .index-services-card-link i {
  font-size: 11px;
  transform: scaleX(-1);
}

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

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

/* ── Responsive: Tablet ────────────────────────────────── */
@media (max-width: 1024px) {
  .index-services-section .index-services-intro-row {
    gap: 40px;
  }
  .index-services-section .index-services-image-wrapper {
    flex: 0 0 300px;
    width: 300px;
  }
  .index-services-section .index-services-card {
    padding: 28px 24px;
  }
}

/* ── Responsive: Mobile ────────────────────────────────── */
@media (max-width: 768px) {
  .index-services-section {
    padding: 56px 0 80px;
  }

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

  .index-services-section .index-services-intro-row {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }

  .index-services-section .index-services-intro-content {
    width: 100%;
  }

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

  .index-services-section .index-services-image-wrapper {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .index-services-section .index-services-report-frame img {
    height: 260px;
  }

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

  .index-services-section .index-services-card {
    padding: 24px 20px;
    flex-direction: row;
    gap: 16px;
  }

  .index-services-section .index-services-card-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

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

/* index-process */
.index-process-section {
  position: relative;
  overflow: visible;
  direction: rtl;
  background-color: #1D3657;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(200,155,90,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(107,138,166,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  color: var(--text-light);
  padding: 96px 24px 130px;
}

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

/* ── HEADER ── */
.index-process-section .index-process-header {
  text-align: center;
  margin-bottom: 72px;
}

.index-process-section .index-process-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,155,90,0.45);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

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

.index-process-section .index-process-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,248,0.72);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── TRACK ── */
.index-process-section .index-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  direction: rtl;
}

/* Horizontal connector line */
.index-process-section .index-process-connector {
  position: absolute;
  top: 28px;
  inset-inline-start: calc(12.5% + 20px);
  inset-inline-end: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(200,155,90,0.6) 0%, rgba(107,138,166,0.5) 50%, rgba(200,155,90,0.6) 100%);
  z-index: 0;
}

/* ── STEP CARD ── */
.index-process-section .index-process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  transition: var(--transition-default, all 0.2s ease);
}

/* Number + dot wrapper */
.index-process-section .index-process-step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.index-process-section .index-process-step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--accent);
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 24px rgba(200,155,90,0.18);
}

.index-process-section .index-process-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Step body */
.index-process-section .index-process-step-body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(75,99,128,0.55);
  border-top: 2px solid rgba(200,155,90,0.5);
  border-radius: 4px;
  padding: 28px 20px 24px;
  flex: 1;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.index-process-section .index-process-step:hover .index-process-step-body {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  border-top-color: var(--accent);
}

.index-process-section .index-process-step-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 12px;
  text-align: center;
}

.index-process-section .index-process-step-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,250,248,0.68);
  margin: 0;
  text-align: center;
}

/* ── CLOSING PARAGRAPH ── */
.index-process-section .index-process-closing {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(250,250,248,0.6);
  text-align: center;
  max-width: 680px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(75,99,128,0.4);
}

/* ── BOTTOM DIVIDER ── */
.index-process-section .index-process-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  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: 1024px) {
  .index-process-section .index-process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

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

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

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

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

  .index-process-section .index-process-track {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

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

  .index-process-section .index-process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    gap: 20px;
    padding: 0;
  }

  .index-process-section .index-process-step-number-wrap {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .index-process-section .index-process-step-dot {
    display: none;
  }

  .index-process-section .index-process-step-body {
    text-align: start;
  }

  .index-process-section .index-process-step-title {
    text-align: start;
  }

  .index-process-section .index-process-step-desc {
    text-align: start;
  }

  .index-process-section .index-process-closing {
    font-size: 14px;
    margin-top: 40px;
    padding-top: 28px;
  }
}

/* index-testimonials */
.index-testimonials-section {
  background-color: #FAFAF8;
  background-image: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  color: var(--text-dark);
  padding: 96px 24px;
  position: relative;
  direction: rtl;
}

.index-testimonials-section .index-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.index-testimonials-section .index-testimonials-header {
  text-align: center;
  margin-block-end: 56px;
}

.index-testimonials-section .index-testimonials-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-block-end: 12px;
  border-block-end: 1px solid var(--accent);
  padding-block-end: 4px;
}

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

.index-testimonials-section .index-testimonials-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ── Grid ── */
.index-testimonials-section .index-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  margin-block-end: 64px;
}

/* ── Card ── */
.index-testimonials-section .index-testimonial-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 32px 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.index-testimonials-section .index-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Brass top accent line */
.index-testimonials-section .index-testimonial-accent-line {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 4px 4px 0 0;
}

/* Large decorative quotation mark */
.index-testimonials-section .index-testimonial-quote-mark {
  font-family: 'Rubik', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-block-end: 8px;
  margin-inline-start: -4px;
  height: 52px;
  display: block;
  user-select: none;
  opacity: 0.7;
}

/* Quote text */
.index-testimonials-section .index-testimonial-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 28px 0;
  flex: 1;
  text-align: right;
  quotes: none;
}

/* Footer: avatar + author */
.index-testimonials-section .index-testimonial-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  border-block-start: 1px solid rgba(217,210,198,0.7);
  padding-block-start: 20px;
  margin-block-start: auto;
}

.index-testimonials-section .index-testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.index-testimonials-section .index-testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.index-testimonials-section .index-testimonial-name {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

.index-testimonials-section .index-testimonial-role {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Closing CTA Block ── */
.index-testimonials-section .index-testimonials-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-block-start: 16px;
}

.index-testimonials-section .index-testimonials-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.index-testimonials-section .index-testimonials-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 34px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  cursor: pointer;
}

.index-testimonials-section .index-testimonials-cta-btn:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  color: #FFFFFF;
}

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

  .index-testimonials-section .index-testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}

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

  .index-testimonials-section .index-testimonials-header {
    margin-block-end: 36px;
  }

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

  .index-testimonials-section .index-testimonials-subtitle {
    font-size: 15px;
  }

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

  .index-testimonials-section .index-testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }

  .index-testimonials-section .index-testimonial-card {
    padding: 28px 20px 24px;
  }

  .index-testimonials-section .index-testimonial-quote-mark {
    font-size: 56px;
    height: 40px;
  }

  .index-testimonials-section .index-testimonials-cta-block {
    gap: 16px;
  }

  .index-testimonials-section .index-testimonials-cta-btn {
    padding: 13px 24px;
    font-size: 14px;
  }
}

/* services-intro */
.services-intro-section {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  background-color: #FBF8F2;
  color: var(--text-dark);
  padding: 140px 24px 80px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

.services-intro-section .services-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

.services-intro-section .services-intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: right;
}

.services-intro-section .services-intro-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

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

.services-intro-section .services-intro-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
  text-align: right;
}

.services-intro-section .services-intro-cta {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  margin-top: 8px;
}

.services-intro-section .services-intro-cta:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.services-intro-section .services-intro-image-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.services-intro-section .services-intro-image-frame {
  width: 100%;
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.services-intro-section .services-intro-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  transition: none;
}

.services-intro-section .services-intro-image-caption {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-inline-start: 4px;
}

.services-intro-section .services-intro-caption-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.services-intro-section .services-intro-image-caption small {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
}

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

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

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

  .services-intro-section .services-intro-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .services-intro-section .services-intro-image-col {
    width: 100%;
  }
}

/* services-service-categories */
.services-service-categories-section {
  direction: rtl;
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  background-color: #FBF8F2;
  color: var(--text-dark);
  padding: 96px 24px 128px;
  position: relative;
  overflow: visible;
}

.services-service-categories-section .ssc-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.services-service-categories-section .ssc-header {
  text-align: center;
  margin-block-end: 56px;
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: 56px;
}

.services-service-categories-section .ssc-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: 12px;
  padding-block-end: 10px;
  border-block-end: 2px solid var(--accent);
}

.services-service-categories-section .ssc-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 16px 0;
  text-align: center;
}

.services-service-categories-section .ssc-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

/* ── GRID ── */
.services-service-categories-section .ssc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  direction: rtl;
}

/* ── CARD ── */
.services-service-categories-section .ssc-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  position: relative;
}

.services-service-categories-section .ssc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Brass accent top line */
.services-service-categories-section .ssc-card-accent {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #D0AF58 60%, transparent 100%);
  flex-shrink: 0;
}

/* ── CARD ICON ── */
.services-service-categories-section .ssc-card-icon {
  padding: 28px 32px 0 32px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.services-service-categories-section .ssc-card-icon svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── CARD BODY ── */
.services-service-categories-section .ssc-card-body {
  padding: 16px 32px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-service-categories-section .ssc-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  text-align: right;
  padding-block-end: 12px;
  border-block-end: 1px solid rgba(217, 210, 198, 0.7);
}

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

/* ── CARD LIST ── */
.services-service-categories-section .ssc-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block-start: 4px;
}

.services-service-categories-section .ssc-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-align: right;
}

.services-service-categories-section .ssc-list-item span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex: 1;
  text-align: right;
}

.services-service-categories-section .ssc-check-icon {
  color: var(--accent);
  font-size: 11px;
  margin-block-start: 4px;
  flex-shrink: 0;
  order: 1;
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-service-categories-section .ssc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .services-service-categories-section .ssc-header {
    margin-block-end: 36px;
  }

  .services-service-categories-section .ssc-title {
    font-size: 1.6rem;
  }

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

  .services-service-categories-section .ssc-card-icon {
    padding: 20px 20px 0 20px;
  }

  .services-service-categories-section .ssc-card-body {
    padding: 12px 20px 24px 20px;
  }

  .services-service-categories-section .ssc-card-title {
    font-size: 1.2rem;
  }
}

/* services-capabilities */
.services-capabilities-section {
  position: relative;
  overflow: visible;
  background-color: #1D3657;
  background-image:
    radial-gradient(ellipse at 80% 10%, rgba(200,155,90,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  color: var(--text-light);
  padding: 96px 0 80px;
  direction: rtl;
}

.services-capabilities-section .scs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ── GRID ── */
.services-capabilities-section .scs-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
  direction: rtl;
}

/* ── CONTENT COLUMN ── */
.services-capabilities-section .scs-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.services-capabilities-section .scs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.services-capabilities-section .scs-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.services-capabilities-section .scs-eyebrow-text {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Heading */
.services-capabilities-section .scs-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 20px 0;
  text-align: right;
}

/* Intro paragraph */
.services-capabilities-section .scs-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,250,248,0.78);
  margin: 0 0 36px 0;
  text-align: right;
}

/* ── CAPABILITIES LIST ── */
.services-capabilities-section .scs-capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.services-capabilities-section .scs-capability-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  direction: rtl;
}

.services-capabilities-section .scs-divider {
  height: 1px;
  background: rgba(107,138,166,0.35);
  margin: 0;
}

/* Icon */
.services-capabilities-section .scs-cap-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.services-capabilities-section .scs-cap-icon svg {
  stroke: currentColor;
}

/* Capability content */
.services-capabilities-section .scs-cap-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-capabilities-section .scs-cap-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
  text-align: right;
}

.services-capabilities-section .scs-cap-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,248,0.72);
  margin: 0;
  text-align: right;
}

/* ── CTA BLOCK ── */
.services-capabilities-section .scs-cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  border-inline-start: 2px solid var(--accent);
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  align-items: flex-start;
  margin-top: 8px;
}

.services-capabilities-section .scs-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250,250,248,0.85);
  margin: 0;
  text-align: right;
}

.services-capabilities-section .btn-primary.scs-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transition: all 0.2s ease;
  cursor: pointer;
}

.services-capabilities-section .btn-primary.scs-cta-btn:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.28);
  transform: translateY(-1px);
  background: linear-gradient(180deg, #D8B860 0%, #C4A040 100%);
}

/* ── IMAGE COLUMN ── */
.services-capabilities-section .scs-image-col {
  position: sticky;
  top: 120px;
}

.services-capabilities-section .scs-image-frame {
  position: relative;
  display: flex;
  flex-direction: column;
}

.services-capabilities-section .scs-image-accent-bar {
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  margin-inline-start: auto;
}

.services-capabilities-section .scs-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: brightness(0.88) contrast(1.05);
}

/* Image badge */
.services-capabilities-section .scs-image-badge {
  position: absolute;
  bottom: 32px;
  inset-inline-end: -20px;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  min-width: 100px;
  text-align: center;
}

.services-capabilities-section .scs-badge-number {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

.services-capabilities-section .scs-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-capabilities-section .scs-grid {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }

  .services-capabilities-section .scs-image-badge {
    inset-inline-end: 0;
  }
}

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

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

  .services-capabilities-section .scs-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .services-capabilities-section .scs-image-col {
    position: static;
    
  }

  .services-capabilities-section .scs-main-image {
    height: 280px;
  }

  .services-capabilities-section .scs-image-badge {
    position: absolute;
    inset-inline-end: 8px;
    bottom: 20px;
    padding: 12px 16px;
    min-width: 80px;
  }

  .services-capabilities-section .scs-badge-number {
    font-size: 1.5rem;
  }

  .services-capabilities-section .scs-badge-label {
    font-size: 10px;
  }

  .services-capabilities-section .scs-heading {
    font-size: 1.75rem;
  }

  .services-capabilities-section .scs-capability-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .services-capabilities-section .scs-cap-title {
    font-size: 1.125rem;
  }

  .services-capabilities-section .scs-cta-block {
    padding: 20px 16px;
  }

  .services-capabilities-section .scs-image-accent-bar {
    display: none;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:שירותים-capabilities — stripped 1 order declaration(s) conflicting with RTL grid */

/* services-case-studies */
.services-case-studies-section {
  direction: rtl;
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  background-color: #FBF8F2;
  color: var(--text-dark);
  padding: 96px 24px;
  position: relative;
}

.services-case-studies-section .case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.services-case-studies-section .case-studies-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.services-case-studies-section .case-studies-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.services-case-studies-section .case-studies-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

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

/* ── Grid ── */
.services-case-studies-section .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
}

/* ── Card ── */
.services-case-studies-section .case-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.services-case-studies-section .case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.services-case-studies-section .case-card-accent {
  height: 3px;
  background: linear-gradient(90deg, #C89B5A 0%, #D0AF58 100%);
  flex-shrink: 0;
}

.services-case-studies-section .case-card-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Icon ── */
.services-case-studies-section .case-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, #F1ECE3 0%, #E8E0D2 100%);
  border: 1px solid rgba(200, 155, 90, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Card Content ── */
.services-case-studies-section .case-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.services-case-studies-section .case-tag {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(200, 155, 90, 0.1);
  border: 1px solid rgba(200, 155, 90, 0.3);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.services-case-studies-section .case-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0 0 12px;
}

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

/* ── Outcome ── */
.services-case-studies-section .case-outcome {
  background: linear-gradient(180deg, #F7F3EC 0%, #F1ECE3 100%);
  border: 1px solid rgba(217, 210, 198, 0.8);
  border-inline-start: 3px solid var(--accent);
  border-radius: 2px;
  padding: 14px 16px;
  margin-top: auto;
}

.services-case-studies-section .case-outcome-label {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.services-case-studies-section .case-outcome-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
  display: block;
}

/* ── Footer note ── */
.services-case-studies-section .case-studies-footer {
  margin-top: 48px;
  text-align: center;
  border-top: 1px solid rgba(217, 210, 198, 0.7);
  padding-top: 24px;
}

.services-case-studies-section .case-studies-note {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-case-studies-section .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-case-studies-section .case-card:last-child {
    grid-column: span 2;
    max-width: 520px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .services-case-studies-section {
    padding: 56px 16px;
  }

  .services-case-studies-section .case-studies-header {
    margin-bottom: 36px;
  }

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

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

  .services-case-studies-section .case-card:last-child {
    grid-column: span 1 !important;
    max-width: none;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .services-case-studies-section .case-card-body {
    padding: 24px 20px 20px;
  }

  .services-case-studies-section .case-studies-footer {
    margin-top: 32px;
  }
}

/* about-profile */
.about-profile-section {
  position: relative;
  overflow: visible;
  background-color: #FBF8F2;
  background-image: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  color: var(--text-dark);
  padding: 120px 0 100px;
  direction: rtl;
}

.about-profile-section .about-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-profile-section .about-profile-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
  direction: rtl;
}

/* ── Text Column ── */
.about-profile-section .about-profile-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
}

.about-profile-section .about-profile-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
  margin-inline-start: 0;
}

.about-profile-section .about-profile-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.about-profile-section .about-profile-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.about-profile-section .about-profile-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 28px 0 0 0;
}

.about-profile-section .about-profile-divider-thin {
  width: 100%;
  height: 1px;
  background: rgba(217, 210, 198, 0.7);
  margin: 28px 0;
}

.about-profile-section .about-profile-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0 0 0 0;
}

.about-profile-section .about-profile-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(217, 210, 198, 0.7);
}

.about-profile-section .about-profile-cred-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  direction: rtl;
}

.about-profile-section .about-profile-cred-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 15px;
}

.about-profile-section .about-profile-cred-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── Portrait Column ── */
.about-profile-section .about-profile-portrait-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-profile-section .about-profile-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.about-profile-section .about-profile-portrait-frame::before {
  content: '';
  position: absolute;
  inset-inline-end: -16px;
  top: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}

.about-profile-section .about-profile-portrait-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.about-profile-section .about-profile-portrait-badge {
  position: absolute;
  bottom: -20px;
  inset-inline-start: -20px;
  z-index: 2;
  background: var(--primary);
  color: var(--text-light);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 18px rgba(30,58,95,0.22);
}

.about-profile-section .about-profile-badge-years {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-profile-section .about-profile-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

.about-profile-section .about-profile-divider-wrapper svg:first-child {
  display: block;
  width: 100%;
  height: 70px;
}

.about-profile-section .about-profile-brass-line-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: block;
}

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

  .about-profile-section .about-profile-portrait-col {
    order: -1;
  }

  .about-profile-section .about-profile-portrait-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-profile-section .about-profile-portrait-frame::before {
    inset-inline-end: -10px;
    top: 10px;
  }

  .about-profile-section .about-profile-portrait-badge {
    bottom: -14px;
    inset-inline-start: -10px;
    padding: 14px 16px;
  }
}

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

  .about-profile-section .about-profile-container {
    padding: 0 20px;
  }

  .about-profile-section .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-profile-section .about-profile-heading {
    font-size: 2.2rem;
  }

  .about-profile-section .about-profile-subtitle {
    font-size: 1.2rem;
  }

  .about-profile-section .about-profile-portrait-frame {
    max-width: 280px;
  }

  .about-profile-section .about-profile-portrait-frame::before {
    display: none;
  }

  .about-profile-section .about-profile-portrait-badge {
    bottom: -12px;
    inset-inline-start: 0;
    padding: 12px 14px;
  }

  .about-profile-section .about-profile-badge-years {
    font-size: 1.5rem;
  }
}

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

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

/* ── Header ─────────────────────────────────────────────── */
.about-credentials-section .about-credentials-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-credentials-section .about-credentials-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.about-credentials-section .about-credentials-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  max-width: none !important;
}

.about-credentials-section .about-credentials-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,250,248,0.75);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── Grid ────────────────────────────────────────────────── */
.about-credentials-section .about-credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  direction: rtl;
}

/* ── Cards ───────────────────────────────────────────────── */
.about-credentials-section .about-credentials-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.about-credentials-section .about-credentials-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  background: rgba(255,255,255,0.09);
}

.about-credentials-section .about-credentials-card-top-border {
  height: 2px;
  background: var(--accent);
  width: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
}

.about-credentials-section .about-credentials-card-inner {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
  padding-top: 44px;
}

/* ── Icon ─────────────────────────────────────────────────── */
.about-credentials-section .about-credentials-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,155,90,0.12);
  border: 1px solid rgba(200,155,90,0.3);
  border-radius: 2px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-credentials-section .about-credentials-icon-wrap svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ── Card Content ─────────────────────────────────────────── */
.about-credentials-section .about-credentials-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-credentials-section .about-credentials-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.01em;
}

.about-credentials-section .about-credentials-card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,250,248,0.78);
  margin: 0;
  text-align: start;
}

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

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-credentials-section {
    padding: 56px 16px 96px;
  }

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

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

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

  .about-credentials-section .about-credentials-card-inner {
    padding: 28px 20px;
    padding-top: 32px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .about-credentials-section .about-credentials-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .about-credentials-section .about-credentials-card-title {
    font-size: 1.2rem;
  }
}

/* about-methodology */
.about-methodology-section {
  position: relative;
  overflow: visible;
  background-color: #FBF8F2;
  background-image: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  color: var(--text-dark);
  padding: 96px 24px 144px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

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

/* ── HEADER ─────────────────────────────────────────────── */
.about-methodology-section .about-methodology-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-methodology-section .about-methodology-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
}

.about-methodology-section .about-methodology-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  max-width: none !important;
}

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

/* ── FOUR-STEP GRID ──────────────────────────────────────── */
.about-methodology-section .about-methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  direction: rtl;
  margin-bottom: 72px;
  position: relative;
}

/* Blueprint grid line decoration under grid */
.about-methodology-section .about-methodology-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* Card */
.about-methodology-section .about-methodology-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-methodology-section .about-methodology-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--accent);
  border-radius: 4px;
  padding: 32px 24px 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  text-align: center;
  min-width: 0;
}

.about-methodology-section .about-methodology-card:hover .about-methodology-card-inner {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Step Badge */
.about-methodology-section .about-methodology-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Card Icon */
.about-methodology-section .about-methodology-card-icon {
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}

.about-methodology-section .about-methodology-card-icon svg {
  display: block;
}

/* Card Content */
.about-methodology-section .about-methodology-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-methodology-section .about-methodology-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin: 0 0 10px;
  text-align: center;
}

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

/* Connector arrow between cards (hidden on last card) */
.about-methodology-section .about-methodology-card-connector {
  display: none;
}

/* ── BOTTOM ROW: IMAGE + SUMMARY ─────────────────────────── */
.about-methodology-section .about-methodology-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  direction: rtl;
}

/* Image wrap */
.about-methodology-section .about-methodology-image-wrap {
  position: relative;
}

.about-methodology-section .about-methodology-blueprint-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #EEE9E0;
}

.about-methodology-section .about-methodology-blueprint-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0;
}

/* Subtle blueprint grid overlay on image */
.about-methodology-section .about-methodology-blueprint-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Summary block */
.about-methodology-section .about-methodology-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
}

.about-methodology-section .about-methodology-summary-accent {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  margin-inline-start: 0;
}

.about-methodology-section .about-methodology-summary-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.about-methodology-section .about-methodology-summary-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.about-methodology-section .about-methodology-summary-text:last-of-type {
  margin-bottom: 24px;
}

/* Credentials list */
.about-methodology-section .about-methodology-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(217,210,198,0.7);
  padding-top: 20px;
}

.about-methodology-section .about-methodology-cred-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.about-methodology-section .about-methodology-cred-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

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

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

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

  .about-methodology-section .about-methodology-grid::before {
    display: none;
  }

  .about-methodology-section .about-methodology-bottom-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── RESPONSIVE: MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .about-methodology-section {
    padding: 56px 16px 112px;
  }

  .about-methodology-section .about-methodology-header {
    margin-bottom: 40px;
  }

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

  .about-methodology-section .about-methodology-subtitle {
    font-size: 1rem;
  }

  .about-methodology-section .about-methodology-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 40px;
  }

  .about-methodology-section .about-methodology-grid::before {
    display: none;
  }

  .about-methodology-section .about-methodology-card-inner {
    padding: 24px 20px;
  }

  .about-methodology-section .about-methodology-bottom-row {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .about-methodology-section .about-methodology-image-wrap {
    order: 2;
  }

  .about-methodology-section .about-methodology-summary {
    order: 1;
  }

  .about-methodology-section .about-methodology-summary-title {
    font-size: 1.2rem;
  }

  .about-methodology-section .about-methodology-divider-wrapper {
    height: 48px;
  }
}

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

/* Container */
.about-values-section .about-values-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Section Header ────────────────────────────────── */
.about-values-section .about-values-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.about-values-section .about-values-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about-values-section .about-values-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 20px;
  max-width: none !important;
}

.about-values-section .about-values-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

/* ── Cards Grid ────────────────────────────────────── */
.about-values-section .about-values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  margin-bottom: 56px;
}

/* Card */
.about-values-section .about-values-card {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  border: 1px solid #D9D2C6;
  border-radius: 4px;
  padding: 40px 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
}

.about-values-section .about-values-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Brass accent top border */
.about-values-section .about-values-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent) 100%);
  border-radius: 4px 4px 0 0;
}

/* Icon Wrap */
.about-values-section .about-values-card-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: rgba(200, 155, 90, 0.1);
  border: 1px solid rgba(200, 155, 90, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Card Body */
.about-values-section .about-values-card-body {
  flex: 1;
}

.about-values-section .about-values-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0 0 14px;
}

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

/* ── Divider Rule ──────────────────────────────────── */
.about-values-section .about-values-rule {
  width: 100%;
  height: 1px;
  background: rgba(217, 210, 198, 0.7);
  margin-bottom: 48px;
}

/* ── CTA Block ─────────────────────────────────────── */
.about-values-section .about-values-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #FFFFFF;
  border: 1px solid #D9D2C6;
  border-radius: 4px;
  padding: 40px 48px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  direction: rtl;
}

.about-values-section .about-values-cta-text {
  flex: 1;
  text-align: right;
}

.about-values-section .about-values-cta-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0 0 8px;
}

.about-values-section .about-values-cta-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* CTA Button */
.about-values-section .about-values-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.about-values-section .about-values-cta-btn:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  color: #FFFFFF;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-values-section .about-values-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-section .about-values-card:last-child {
    grid-column: span 2;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

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

  .about-values-section .about-values-header {
    margin-bottom: 40px;
  }

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

  .about-values-section .about-values-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-bottom: 40px;
  }

  .about-values-section .about-values-card:last-child {
    grid-column: span 1 !important;
    max-width: none;
    margin-inline: 0;
  }

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

  .about-values-section .about-values-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
  }

  .about-values-section .about-values-cta-btn {
    width: 100%;
    text-align: center;
  }

  .about-values-section .about-values-rule {
    margin-bottom: 32px;
  }
}

/* contact-contact-intro */
.contact-contact-intro-section {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  background-color: #FBF8F2;
  color: var(--text-dark);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

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

.contact-contact-intro-section .contact-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* ── TEXT SIDE ─────────────────────────────────────────── */
.contact-contact-intro-section .contact-intro-text {
  position: relative;
  z-index: 10;
}

.contact-contact-intro-section .contact-intro-accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
  margin-inline-start: 0;
}

.contact-contact-intro-section .contact-intro-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  text-align: right;
}

.contact-contact-intro-section .contact-intro-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  text-align: right;
}

.contact-contact-intro-section .contact-intro-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 32px 0;
  text-align: right;
}

/* Cases block */
.contact-contact-intro-section .contact-intro-cases {
  margin-bottom: 36px;
}

.contact-contact-intro-section .contact-intro-cases-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 16px 0;
  text-align: right;
}

.contact-contact-intro-section .contact-intro-cases-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-contact-intro-section .contact-intro-cases-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.contact-contact-intro-section .contact-intro-case-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(30, 58, 95, 0.07);
  border-radius: 2px;
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 2px;
}

/* CTA row */
.contact-contact-intro-section .contact-intro-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-contact-intro-section .contact-intro-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  cursor: pointer;
}

.contact-contact-intro-section .contact-intro-btn:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.contact-contact-intro-section .contact-intro-btn-ghost {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 24px;
  border-radius: 3px;
  border: 1px solid var(--primary);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-contact-intro-section .contact-intro-btn-ghost:hover {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
}

/* ── IMAGE SIDE ─────────────────────────────────────────── */
.contact-contact-intro-section .contact-intro-image-wrapper {
  position: relative;
  z-index: 1;
}

.contact-contact-intro-section .contact-intro-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.contact-contact-intro-section .contact-intro-image-frame::before {
  content: '';
  position: absolute;
  inset-inline-start: -8px;
  top: -8px;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--accent);
  border-inline-start: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}

.contact-contact-intro-section .contact-intro-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0;
  transition: none;
}

.contact-contact-intro-section .contact-intro-image-caption {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  text-align: right;
}

.contact-contact-intro-section .contact-intro-caption-accent {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.contact-contact-intro-section .contact-intro-image-caption p {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

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

.contact-contact-intro-section .contact-intro-divider-line {
  width: 100%;
  height: 1px;
  background: rgba(30, 58, 95, 0.18);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-contact-intro-section .contact-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-contact-intro-section .contact-intro-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-contact-intro-section {
    padding-top: 100px;
    padding-bottom: 56px;
  }

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

  .contact-contact-intro-section .contact-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .contact-contact-intro-section .contact-intro-heading {
    font-size: 1.9rem;
  }

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

  .contact-contact-intro-section .contact-intro-btn,
  .contact-contact-intro-section .contact-intro-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .contact-contact-intro-section .contact-intro-image-frame::before {
    display: none;
  }
}

/* contact-contact-methods */
.contact-contact-methods-section {
  position: relative;
  overflow: visible;
  background-color: #F7F3EC;
  background-image:
    linear-gradient(rgba(31,61,99,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,61,99,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--text-dark);
  padding: 96px 24px 128px;
  direction: rtl;
}

.contact-contact-methods-section .ccm-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.contact-contact-methods-section .ccm-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.contact-contact-methods-section .ccm-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.contact-contact-methods-section .ccm-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 16px;
  text-align: center;
}

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

/* ── Cards Grid ── */
.contact-contact-methods-section .ccm-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
}

/* ── Individual Card ── */
.contact-contact-methods-section .ccm-card {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  border: 1px solid #D9D2C6;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.contact-contact-methods-section .ccm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.contact-contact-methods-section .ccm-card-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #D0AF58 100%);
  width: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
}

.contact-contact-methods-section .ccm-card-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Icon ── */
.contact-contact-methods-section .ccm-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(200, 155, 90, 0.12);
  border: 1px solid rgba(200, 155, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Card Content ── */
.contact-contact-methods-section .ccm-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-contact-methods-section .ccm-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  text-align: right;
}

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

/* ── Contact Link / Info Block ── */
.contact-contact-methods-section .ccm-contact-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(30, 58, 95, 0.05);
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

a.contact-contact-methods-section .ccm-contact-link:hover,
.contact-contact-methods-section a.ccm-contact-link:hover {
  background: rgba(200, 155, 90, 0.1);
  border-color: rgba(200, 155, 90, 0.35);
}

.contact-contact-methods-section .ccm-info-block {
  cursor: default;
}

.contact-contact-methods-section .ccm-contact-label {
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}

.contact-contact-methods-section .ccm-contact-value {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  text-align: right;
  direction: ltr;
  text-align: right;
}

/* ── Audience Tags ── */
.contact-contact-methods-section .ccm-audience-tags {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.contact-contact-methods-section .ccm-audience-tags li {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary);
  background: rgba(107, 138, 166, 0.1);
  border: 1px solid rgba(107, 138, 166, 0.25);
  border-radius: 2px;
  padding: 3px 10px;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── Bottom Arc Divider ── */
.contact-contact-methods-section .ccm-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 5;
}

.contact-contact-methods-section .ccm-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .contact-contact-methods-section .ccm-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-contact-methods-section .ccm-cards-grid .ccm-card:last-child {
    grid-column: span 2;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .contact-contact-methods-section {
    padding: 72px 16px 96px;
  }

  .contact-contact-methods-section .ccm-header {
    margin-bottom: 36px;
  }

  .contact-contact-methods-section .ccm-title {
    font-size: 1.6rem;
  }

  .contact-contact-methods-section .ccm-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-contact-methods-section .ccm-cards-grid .ccm-card:last-child {
    grid-column: span 1 !important;
    max-width: 100%;
    margin-inline: 0;
  }

  .contact-contact-methods-section .ccm-card-inner {
    padding: 28px 20px;
  }

  .contact-contact-methods-section .ccm-audience-tags {
    justify-content: flex-start;
  }
}

/* contact-contact-form */
.contact-contact-form-section {
  position: relative;
  overflow: visible;
  background-color: #1D3657;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(200,155,90,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(107,138,166,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  color: var(--text-light);
  padding: 96px 24px 120px;
  direction: rtl;
}

.contact-contact-form-section .ccf-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-contact-form-section .ccf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  direction: rtl;
}

/* ── Form Column ───────────────────────────────────────── */
.contact-contact-form-section .ccf-form-card {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  border-radius: 4px;
  border: 1px solid #D9D2C6;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  padding: 40px;
  color: var(--text-dark);
}

.contact-contact-form-section .ccf-brass-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  margin-inline-start: 0;
}

.contact-contact-form-section .ccf-form-header {
  margin-bottom: 32px;
}

.contact-contact-form-section .ccf-form-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  text-align: right;
}

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

.contact-contact-form-section .ccf-field-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-contact-form-section .ccf-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  letter-spacing: 0.02em;
}

.contact-contact-form-section .ccf-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-contact-form-section .ccf-input::placeholder {
  color: #A0A8B0;
  font-size: 0.9rem;
}

.contact-contact-form-section .ccf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,155,90,0.15);
}

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

/* Privacy Consent */
.contact-contact-form-section .privacy-consent {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.contact-contact-form-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: var(--text-dark);
  text-align: right;
}

.contact-contact-form-section .privacy-consent-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-contact-form-section .privacy-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-contact-form-section .privacy-consent a:hover {
  color: var(--accent);
}

/* Submit Button */
.contact-contact-form-section .ccf-submit {
  width: 100%;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  text-align: center;
}

.contact-contact-form-section .ccf-submit:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  background: linear-gradient(180deg, #D8BA6A 0%, #C4A245 100%);
}

/* ── Reassurance Panel ─────────────────────────────────── */
.contact-contact-form-section .ccf-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 40px;
  color: var(--text-light);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-contact-form-section .ccf-panel-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0 0 16px 0;
  text-align: right;
}

.contact-contact-form-section .ccf-panel-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,250,248,0.85);
  margin: 0 0 28px 0;
  text-align: right;
}

/* Tips List */
.contact-contact-form-section .ccf-tips-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-contact-form-section .ccf-tip-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  direction: rtl;
}

.contact-contact-form-section .ccf-tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-contact-form-section .ccf-tip-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(250,250,248,0.9);
  text-align: right;
}

/* Panel Note */
.contact-contact-form-section .ccf-panel-note {
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 16px;
  margin-bottom: 28px;
}

.contact-contact-form-section .ccf-panel-note p {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(250,250,248,0.75);
  margin: 0;
  text-align: right;
  font-style: italic;
}

/* Direct Contact */
.contact-contact-form-section .ccf-contact-direct {
  padding-top: 24px;
  border-top: 1px solid rgba(217,223,229,0.2);
}

.contact-contact-form-section .ccf-contact-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: rgba(250,250,248,0.65);
  margin: 0 0 8px 0;
  text-align: right;
}

.contact-contact-form-section .ccf-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
  direction: ltr;
}

.contact-contact-form-section .ccf-phone-link:hover {
  color: #D8BA6A;
  text-shadow: 0 0 12px rgba(200,155,90,0.3);
}

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

.contact-contact-form-section .ccf-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-contact-form-section .ccf-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-contact-form-section {
    padding: 100px 16px 100px;
  }

  .contact-contact-form-section .ccf-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .contact-contact-form-section .ccf-form-card {
    padding: 24px 20px;
  }

  .contact-contact-form-section .ccf-panel {
    padding: 24px 20px;
  }

  .contact-contact-form-section .ccf-form-title {
    font-size: 1.5rem;
  }

  .contact-contact-form-section .ccf-panel-title {
    font-size: 1.25rem;
  }
}

/* contact-faq */
.contact-faq-section {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  background-color: #FBF8F2;
  color: var(--text-dark);
  padding: 96px 24px;
  direction: rtl;
  position: relative;
}

.contact-faq-section .contact-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.contact-faq-section .contact-faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-faq-section .contact-faq-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.contact-faq-section .contact-faq-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.contact-faq-section .contact-faq-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* FAQ List */
.contact-faq-section .contact-faq-list {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 56px;
}

/* Individual FAQ Item */
.contact-faq-section .contact-faq-item {
  padding: 40px;
}

.contact-faq-section .contact-faq-item:first-child {
  border-top: 3px solid var(--accent);
}

/* Question Row */
.contact-faq-section .contact-faq-question {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-faq-section .contact-faq-q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  margin-top: 2px;
}

.contact-faq-section .contact-faq-q-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  flex: 1;
}

/* Answer Row */
.contact-faq-section .contact-faq-answer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-inline-start: 0;
}

.contact-faq-section .contact-faq-a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--accent);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  margin-top: 2px;
}

.contact-faq-section .contact-faq-answer p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  text-align: start;
}

/* Divider */
.contact-faq-section .contact-faq-divider {
  height: 1px;
  background: rgba(217, 210, 198, 0.7);
  margin: 0 40px;
}

/* CTA Block */
.contact-faq-section .contact-faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-faq-section .contact-faq-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.contact-faq-section .contact-faq-btn {
  display: inline-block;
  background: linear-gradient(180deg, #D0AF58 0%, #B9973E 100%);
  color: #FFFFFF;
  padding: 14px 40px;
  border-radius: 3px;
  border: 1px solid #B9973E;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-faq-section .contact-faq-btn:hover {
  box-shadow: 0 12px 28px rgba(31,61,99,0.18);
  transform: translateY(-1px);
  color: #FFFFFF;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-faq-section {
    padding: 56px 16px;
  }

  .contact-faq-section .contact-faq-header {
    margin-bottom: 40px;
  }

  .contact-faq-section .contact-faq-title {
    font-size: 1.6rem;
  }

  .contact-faq-section .contact-faq-item {
    padding: 28px 20px;
  }

  .contact-faq-section .contact-faq-divider {
    margin: 0 20px;
  }

  .contact-faq-section .contact-faq-q-mark,
  .contact-faq-section .contact-faq-a-mark {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .contact-faq-section .contact-faq-q-text {
    font-size: 1.15rem;
  }

  .contact-faq-section .contact-faq-question,
  .contact-faq-section .contact-faq-answer {
    gap: 12px;
  }
}

/* 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;
}



/* Hide WhatsApp float button on desktop (mobile-only) */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }

/* ============================================
   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: hidden !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 - preserve viewport height for fullscreen
     hero sections. Rule 9 above resets all heroes to height:auto which is correct
     for side-by-side heroes, but fullscreen-scrim/fullscreen-card heroes are
     designed to fill the viewport with a background image behind a scrim.
     data-hero-type is added deterministically by sectionGenerationService. */
  section[data-hero-type*="fullscreen"] {
    min-height: 100vh !important;
    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 */

/* 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 */
:root {
  --cc-btn-primary-bg: #3b82f6;
  --cc-btn-primary-border: #3b82f6;
  --cc-btn-primary-hover-bg: #2269dd;
}

#cc--main {
  font-family: inherit !important;
}

.cc-btn.cc--btn-primary {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
}

.cc-btn.cc--btn-primary:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #cc--main .cc__btn {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  
  .cc__modal .cc__modal-content {
    margin: 10px !important;
  }
}

/* Cookie preferences button in footer */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}

/* Accessibility Styles */

/* Basic Accessibility Enhancements */
:root {
  --accessibility-focus: #162d4a;
}

/* 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 */
#mic-access-tool-general-button::before,
#mic-access-tool-general-button::after {
  content: none !important;
  display: none !important;
}

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(22, 45, 74, 0.1) !important;
  background: rgba(22, 45, 74, 0.1) !important;
  box-shadow: 0 2px 8px rgba(22, 45, 74, 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: #162d4a !important;
  stroke: #162d4a !important;
  color: #162d4a !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: #162d4a !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: #162d4a !important;
  color: #162d4a !important;
  background-color: rgba(22, 45, 74, 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: #162d4a !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;
}

/* Hide accessibility widget by default on all screen sizes */
/* TODO: Can be re-enabled in the future by removing display: none */
/* The widget can be shown via ALT+A keyboard shortcut (desktop only) */
/* Target Mickidum accessibility button with high specificity */
#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: none !important; /* Hidden by default - can be re-enabled */
}

/* Target Mickidum accessibility menu with high specificity */
#mic-access-tool-box,
.mic-access-tool-box,
#mic-init-access-tool #mic-access-tool-box,
div[id*="mic-access-tool-box"],
._access-menu {
  display: none !important; /* Hidden by default - can be re-enabled */
}

/* Show accessibility widget when ALT+A keyboard shortcut is used (desktop only) */
body.accessibility-widget-visible #mic-access-tool-general-button,
body.accessibility-widget-visible .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
body.accessibility-widget-visible ._access-icon {
  display: flex !important; /* Show button when visible class is added */
}

body.accessibility-widget-visible #mic-access-tool-box,
body.accessibility-widget-visible .mic-access-tool-box,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
body.accessibility-widget-visible div[id*="mic-access-tool-box"],
body.accessibility-widget-visible ._access-menu {
  display: block !important; /* Show menu when visible class is added */
}

/* On mobile, ensure it stays hidden */
@media (max-width: 768px) {
  /* Hide the accessibility button on mobile - higher specificity */
  #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: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Hide the accessibility menu on mobile - higher specificity */
  #mic-access-tool-box,
  .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box,
  div[id*="mic-access-tool-box"],
  ._access-menu {
    display: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Ensure mobile never shows widget even with keyboard shortcut */
  body.accessibility-widget-visible #mic-access-tool-general-button,
  body.accessibility-widget-visible .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
  body.accessibility-widget-visible ._access-icon,
  body.accessibility-widget-visible #mic-access-tool-box,
  body.accessibility-widget-visible .mic-access-tool-box,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
  body.accessibility-widget-visible div[id*="mic-access-tool-box"],
  body.accessibility-widget-visible ._access-menu {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   V2 REGENERATED SECTION CSS (בית-use-cases)
   Added: 2026-04-02T19:15:50.611Z
   ═══════════════════════════════════════════════════════════ */
.index-use-cases-section {
  background-color: #F7F3EC;
  background-image:
    linear-gradient(rgba(31,61,99,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,61,99,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--text-dark);
  padding: 90px 24px 80px;
  position: relative;
  overflow: visible;
  direction: rtl;
}

.index-use-cases-section .use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ── Header ── */
.index-use-cases-section .use-cases-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.index-use-cases-section .use-cases-label {
  display: inline-block;
  font-family: 'Inter', 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 155, 90, 0.1);
  border: 1px solid rgba(200, 155, 90, 0.3);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.index-use-cases-section .use-cases-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 18px;
  text-align: center;
}

.index-use-cases-section .use-cases-intro {
  font-family: 'Inter', 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* ── Cards Grid ── */
.index-use-cases-section .use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  direction: rtl;
}

@media (min-width: 768px) {
  .index-use-cases-section .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .index-use-cases-section .use-cases-title {
    font-size: 2rem;
  }
}

/* ── Base Card ── */
.index-use-cases-section .use-case-card {
  position: relative;
  overflow: hidden;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: right;
}

.index-use-cases-section .use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

/* ── Card Variants ── */
.index-use-cases-section .use-case-card--primary {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  box-shadow: inset 0 0 0 1px #D9D2C6;
}

.index-use-cases-section .use-case-card--accent {
  background: linear-gradient(180deg, #FBF8F2 0%, #F1ECE3 100%);
  box-shadow: inset 0 0 0 1px #D9D2C6;
  border-top: 3px solid var(--accent);
}

.index-use-cases-section .use-case-card--dark {
  background: linear-gradient(180deg, #24476F 0%, #1D3657 100%);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* ── Icon Wrap ── */
.index-use-cases-section .use-case-card__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.index-use-cases-section .use-case-card--primary .use-case-card__icon-wrap,
.index-use-cases-section .use-case-card--accent .use-case-card__icon-wrap {
  background: rgba(30, 58, 95, 0.07);
  color: var(--primary);
}

.index-use-cases-section .use-case-card--dark .use-case-card__icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

/* ── Card Content ── */
.index-use-cases-section .use-case-card__content {
  flex: 1;
}

/* ── Tags ── */
.index-use-cases-section .use-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  justify-content: flex-start;
}

.index-use-cases-section .use-case-tag {
  font-family: 'Inter', 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(107, 138, 166, 0.12);
  border: 1px solid rgba(107, 138, 166, 0.25);
  padding: 3px 10px;
}

.index-use-cases-section .use-case-tag--light {
  color: rgba(250, 250, 248, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Card Title ── */
.index-use-cases-section .use-case-card__title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px;
}

.index-use-cases-section .use-case-card--primary .use-case-card__title,
.index-use-cases-section .use-case-card--accent .use-case-card__title {
  color: var(--primary);
}

.index-use-cases-section .use-case-card--dark .use-case-card__title {
  color: var(--text-light);
}

/* ── Card Description ── */
.index-use-cases-section .use-case-card__desc {
  font-family: 'Inter', 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.index-use-cases-section .use-case-card--primary .use-case-card__desc,
.index-use-cases-section .use-case-card--accent .use-case-card__desc {
  color: var(--text-muted);
}

.index-use-cases-section .use-case-card--dark .use-case-card__desc {
  color: rgba(250, 250, 248, 0.78);
}

/* ── Decorative Number ── */
.index-use-cases-section .use-case-card__number {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: rgba(30, 58, 95, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.index-use-cases-section .use-case-card__number--light {
  color: rgba(255, 255, 255, 0.1);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .index-use-cases-section {
    padding: 60px 16px 56px;
  }

  .index-use-cases-section .use-cases-header {
    margin-bottom: 36px;
  }

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

  .index-use-cases-section .use-cases-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .index-use-cases-section .use-case-card {
    padding: 28px 20px 24px;
  }

  .index-use-cases-section .use-case-card__number {
    font-size: 52px;
    bottom: 10px;
    left: 14px;
  }
}
/* === NAVBAR STYLE OVERRIDES START === */
.navbar { background-color: #FAFAF8 !important; }
.zappy-catalog-menu, #zappy-catalog-menu {}
.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: #1F2937 !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: #1a3151 !important; }
.navbar .navbar-brand, .navbar .navbar-brand a { color: #1F2937 !important; }
.navbar .dropdown-toggle { color: #1F2937 !important; }
.navbar .dropdown-toggle:hover { color: #1a3151 !important; }
.navbar .mobile-hamburger-btn, .navbar .mobile-close-btn { color: #1F2937 !important; }
.navbar-toggler { color: #1F2937 !important; border-color: #1F293744 !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='%231F2937' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.navbar .dropdown-menu { background-color: #FAFAF8 !important; }
.navbar .dropdown-menu li a,
.navbar .dropdown-menu .dropdown-item { color: #1F2937 !important; }
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu .dropdown-item:hover { color: #1a3151 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .sub-menu,
.navbar ul.sub-menu,
nav.navbar .sub-menu { background-color: #FAFAF8 !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: #1F2937 !important; }
.navbar .sub-menu a:hover,
.navbar .sub-menu li a:hover,
nav.navbar .sub-menu li a:hover { color: #1a3151 !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .mobile-submenu-toggle { color: #1F2937 !important; }
.navbar .phone-header-btn { color: #1F2937 !important; }
.navbar .nav-search-input,
.navbar .nav-search-box .nav-search-input { color: #1F2937 !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: #1F2937 !important; }
  .navbar .nav-search-box .nav-search-btn svg { stroke: #1F2937 !important; fill: none !important; }
}
.navbar .nav-search-result-name { color: #1F2937 !important; }
.navbar .nav-search-result-item a { color: #1F2937 !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: #FAFAF8 !important; }
.zappy-catalog-menu .catalog-menu-item,
.zappy-catalog-menu .catalog-menu-all { color: #1F2937 !important; }
.zappy-catalog-menu .catalog-menu-item:hover,
.zappy-catalog-menu .catalog-menu-all:hover { color: #1a3151 !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; }

.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: #FAFAF8 !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: #FAFAF8 !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: #FAFAF8 !important; background: #FAFAF8 !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: #1F2937 !important; }
  .nav-menu a:hover, .nav-menu > li > a:hover { color: #1a3151 !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: #1F2937 !important; }
  .nav-menu .dropdown-menu a:hover { color: #1a3151 !important; }
  .nav-menu .sub-menu a { color: #1F2937 !important; }
  .nav-menu .sub-menu a:hover { color: #1a3151 !important; }
  .nav-menu > li { position: relative !important; }
  .navbar .nav-menu .mobile-submenu-toggle { color: #1F2937 !important; position: static !important; height: auto !important; flex-shrink: 0 !important; align-self: stretch !important; }
  .mobile-toggle { color: #1F2937 !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: #1F2937 !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: #1F2937 !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: #FAFAF8 !important; }
  .mobile-search-panel input { color: #FAFAF8 !important; background: rgba(255,255,255,0.12) !important; }
  .mobile-search-panel .close-search { color: #FAFAF8 !important; background: rgba(255,255,255,0.15) !important; }
  .mobile-search-panel .close-search svg { stroke: #FAFAF8 !important; color: #FAFAF8 !important; }
  .mobile-search-panel .close-search:hover { color: #FAFAF8 !important; background: rgba(255,255,255,0.25) !important; }
  .mobile-search-panel .close-search:hover svg { stroke: #FAFAF8 !important; color: #FAFAF8 !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: 500px !important; pointer-events: auto !important; position: static !important;
    overflow: visible !important; padding: 0.5rem 0 !important;
  }
}
/* === NAVBAR STYLE OVERRIDES END === */


/* 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 */


/* Added Component Styles */
/* =============================================
   Clients / Trusted By Section
   ============================================= */
.clients-trusted-section {
  background: #f5f7fa;
  padding: 70px 20px 60px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: center;
}

/* Container */
.clients-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Title */
.clients-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary, #1E3A5F);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

/* Subtitle */
.clients-subtitle {
  font-size: 1.05rem;
  color: #5a6a7e;
  margin: 0 0 48px;
  font-weight: 400;
}

/* Decorative underline under title */
.clients-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary, #1E3A5F);
  border-radius: 2px;
  margin: 12px auto 0;
  opacity: 0.35;
}

/* Grid Layout — 6 columns */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 16px;
  align-items: start;
  justify-items: center;
}

/* Individual Logo Wrapper */
.clients-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease;
}

.clients-logo-wrapper:hover {
  transform: translateY(-4px);
}

/* Circular container for logo */
.clients-logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  box-shadow:
    0 2px 8px rgba(30, 58, 95, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  flex-shrink: 0;
}

.clients-logo-wrapper:hover .clients-logo-circle {
  box-shadow:
    0 6px 20px rgba(30, 58, 95, 0.16),
    0 2px 6px rgba(0, 0, 0, 0.08);
  border-color: rgba(30, 58, 95, 0.3);
}

/* Logo Image — always contain, never crop */
.clients-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

/* Label beneath logo */
.clients-logo-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a5a6e;
  text-align: center;
  line-height: 1.3;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   Responsive — 4 columns on tablet
   ============================================= */
@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 12px;
  }

  .clients-logo-circle {
    width: 95px;
    height: 95px;
    padding: 15px;
  }

  .clients-title {
    font-size: 1.7rem;
  }
}

/* =============================================
   Responsive — 3 columns on small tablet
   ============================================= */
@media (max-width: 600px) {
  .clients-trusted-section {
    padding: 50px 16px 44px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 10px;
  }

  .clients-logo-circle {
    width: 82px;
    height: 82px;
    padding: 13px;
  }

  .clients-title {
    font-size: 1.45rem;
  }

  .clients-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .clients-logo-label {
    font-size: 0.72rem;
    max-width: 82px;
  }
}

/* =============================================
   Responsive — 2 columns on very small screens
   ============================================= */
@media (max-width: 380px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .clients-logo-circle {
    width: 90px;
    height: 90px;
    padding: 14px;
  }

  .clients-logo-label {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
#layout-1775162683174 .hero-about {
  min-height: 100vh;
}

#layout-1775162683174 [style*="position:absolute;top:0"] ,
  #layout-1775162683174 div[style*="top:0;right:0;left:0;z-index:20"] {
  z-index: 30 !important;
  background: linear-gradient(180deg, rgba(15,30,55,0.98) 0%, rgba(15,30,55,0.85) 60%, rgba(15,30,55,0) 100%) !important;
  padding: 40px 16px 40px !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  padding-top: 160px !important;
}
}

@media (max-width: 768px) {
#layout-1775162683174 .hero-about__bg {
  height: 60% !important;
  top: auto !important;
  bottom: 0 !important;
}

#layout-1775162683174 .hero-about__overlay {
  height: 60% !important;
  top: auto !important;
  bottom: 0 !important;
}

#layout-1775162683174 .hero-about {
  background: linear-gradient(180deg, #1D3657 40%, transparent 100%) !important;
  min-height: 100vh !important;
}

#layout-1775162683174 div[style*="position:absolute;top:0"],
  #layout-1775162683174 > div.hero-about > div[style*="top:0"] {
  position: relative !important;
  z-index: 50 !important;
  padding-top: 80px !important;
  background: transparent !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  padding-top: 20px !important;
  min-height: auto !important;
}
}

#layout-1775162683174 .hero-about__bg {
  position: absolute !important;
  height: 100% !important;
  min-height: unset !important;
  max-height: unset !important;
  order: unset !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

#layout-1775162683174 .hero-about__overlay {
  display: block !important;
  height: 100% !important;
  top: 0 !important;
  bottom: 0 !important;
}

#layout-1775162683174 .hero-about {
  background: none !important;
  min-height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
}

#layout-1775162683174 .hero-about__bg,
#layout-1775162683174 .hero-about > .hero-about__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  max-height: unset !important;
  order: 0 !important;
  z-index: 0 !important;
}

#layout-1775162683174 .hero-about__bg > div {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

#layout-1775162683174 .hero-about {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  background: none !important;
  display: flex !important;
  align-items: stretch !important;
}

#layout-1775162683174 .hero-about__overlay {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  z-index: 1 !important;
}

#layout-1775162683174 .hero-about__img-col {
  display: flex !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  order: unset !important;
  background: transparent !important;
  padding: 160px 60px 80px !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 100vh !important;
}

#layout-1775162683174 .hero-about__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  max-height: unset !important;
  order: unset !important;
}

#layout-1775162683174 .hero-about__overlay {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
}

#layout-1775162683174 .hero-about__gold-stripe {
  display: block !important;
}

#layout-1775162683174 .hero-about__corner-deco {
  display: block !important;
}

#layout-1775162683174 .hero-about {
  display: flex !important;
  flex-direction: row !important;
  min-height: 100vh !important;
  background: none !important;
  position: relative !important;
  overflow: hidden !important;
}

#layout-1775162683174 div[style*="position:absolute;top:0;right:0;left:0;z-index:20"] {
  position: absolute !important;
  order: unset !important;
  background: transparent !important;
  padding: 32px 24px 28px !important;
}

@media (max-width: 900px) {
#layout-1775162683174 .hero-about__content-wrap {
  grid-template-columns: 1fr !important;
  padding: 140px 28px 60px !important;
}

#layout-1775162683174 .hero-about__img-col {
  display: none !important;
}
}

@media (max-width: 768px) {
#layout-1775162683174 .hero-about {
  display: flex !important;
  flex-direction: column !important;
  min-height: auto !important;
  background: #1D3657 !important;
}

#layout-1775162683174 .hero-about__bg {
  display: none !important;
}

#layout-1775162683174 div[style*="position:absolute;top:0;right:0;left:0;z-index:20"],
  #layout-1775162683174 div[style*="top:0;right:0;left:0;z-index:20"] {
  position: relative !important;
  order: 1 !important;
  background: #1D3657 !important;
  padding: 90px 20px 20px !important;
}

#layout-1775162683174 .hero-about__overlay {
  display: none !important;
}

#layout-1775162683174 .hero-about__gold-stripe {
  display: none !important;
}

#layout-1775162683174 .hero-about__corner-deco {
  display: none !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  order: 2 !important;
  position: relative !important;
  background: #1D3657 !important;
  min-height: auto !important;
  padding: 0px 20px 48px !important;
  grid-template-columns: 1fr !important;
  display: flex !important;
  flex-direction: column !important;
}

#layout-1775162683174 .hero-about__text-col {
  order: 2 !important;
}

#layout-1775162683174 .hero-about__img-col {
  display: flex !important;
  order: 1 !important;
  justify-content: center !important;
  width: 100% !important;
}

#layout-1775162683174 .hero-about__img-frame {
  width: 90% !important;
  max-width: 100% !important;
}

#layout-1775162683174 .hero-about__img-frame img {
  height: 420px !important;
  width: 100% !important;
  object-fit: cover !important;
}

#layout-1775162683174 .hero-about__img-frame::before,
  #layout-1775162683174 .hero-about__img-frame::after {
  content: '';
  display: none !important;
}

#layout-1775162683174 .hero-about__floating-tag {
  bottom: 10px !important;
  right: 0px !important;
}
}

#layout-1775162683174 .hero-about__img-col {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  grid-template-columns: 1fr 1fr !important;
  padding: 160px 60px 80px !important;
  min-height: 100vh !important;
  background: transparent !important;
  order: unset !important;
}

@media (max-width: 768px) {
#layout-1775162683174 .hero-about__img-col {
  display: flex !important;
  order: 1 !important;
  justify-content: center !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#layout-1775162683174 .hero-about__content-wrap {
  grid-template-columns: 1fr !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 20px 48px !important;
  order: 2 !important;
  background: #1D3657 !important;
  min-height: auto !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) ========== */
/* On mobile (especially iOS Safari where 100vh includes the address bar),
   the hero card content + padding can exceed the section height.
   Use 100svh + height:auto so the section grows with its content.
   Restore padding-bottom for the SVG divider area. */

@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"]) {
    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 - they often have fixed pixel widths */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }
  
  /* Fix zoom wrapper images on mobile - make responsive */
  /* Exclude images with mobile overrides — those are handled by JS to honor user settings */
  [data-zappy-zoom-wrapper="true"] 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 ========== */
  /* On mobile (especially iOS Safari where 100vh includes the address bar),
     the hero card content + padding can exceed the section height.
     Use min-height instead of height so the section grows with its content.
     The container also needs padding-bottom to clear the SVG divider area. */
  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"]) {
    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; }
