



:root {
  
  --navy: #2b3948;          
  --navy-dark: #1e2933;     
  --blue: #4a90c4;          
  --blue-deep: #2c6fa8;     
  --blue-pale: #e8f3fb;     
  --surface: #f4f5f7;       
  --white: #ffffff;
  --ink: #1a1a2e;           
  --muted: #6b7280;         
  --line: rgba(43, 57, 72, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);

  
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;


  
  --on-image-primary: #ffffff;
  --on-image-secondary: rgba(255, 255, 255, 0.85);
  --on-image-tertiary: rgba(255, 255, 255, 0.55);

  
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 80px;
  --sp-8: 96px;

  --radius: 12px;           
  --radius-sm: 8px;
  --radius-pill: 999px;
  --maxw: 1200px;           
  --gutter: var(--sp-2);    

  
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-h1: clamp(2rem, 1.35rem + 2.9vw, 3rem);        
  --fs-h2: clamp(1.625rem, 1.3rem + 1.45vw, 2rem);    
  --fs-h3: 1.25rem;                                    
  --fs-body: 1rem;                                     
  --fs-lede: 1.0625rem;                                
  --fs-small: 0.8125rem;                               
  --fs-label: 0.6875rem;                               

  --lh-body: 1.7;      
  --lh-heading: 1.15;

  
  --logo-crop: 0.7;
  --logo-ratio: 0.7977;
  --logo-h: 40px;

  --shadow-sm: 0 1px 2px rgba(43, 57, 72, 0.06), 0 2px 8px rgba(43, 57, 72, 0.06);
  --shadow-md: 0 4px 12px rgba(43, 57, 72, 0.08), 0 12px 32px rgba(43, 57, 72, 0.08);

  --focus-ring: var(--blue);   
  --header-h: 68px;

  
  --sticky-bar-h: 72px;
}



[lang='ar'] {
  
  --font-display: 'Lateef', 'Playfair Display', Georgia, serif;
  --font-body: 'Tajawal', 'Inter', system-ui, sans-serif;

  
  --lh-body: 1.9;
  --fs-body: 1.0625rem;
  --fs-lede: 1.125rem;
  --fs-small: 0.875rem;

  
  --fs-h1: clamp(2.4rem, 1.6rem + 3.4vw, 3.6rem);
  --fs-h2: clamp(1.9rem, 1.5rem + 1.7vw, 2.4rem);
  --lh-heading: 1.35;
}


[lang='ar'] [dir='ltr']:not(.brand-name) {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}


[lang='ar'] .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
}


[lang='ar'] .eyebrow {
  letter-spacing: 0;
}



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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--sp-2));
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  
  padding-block-end: var(--sticky-bar-h);
}

img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: var(--lh-heading);
  text-wrap: balance;
}


:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}





.container {
  inline-size: 100%;
  max-inline-size: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--sp-6);
}

.section--surface {
  background: var(--surface);
}


.section--navy {
  background: var(--navy);
  color: var(--white);
  --focus-ring: var(--white);
  --line: var(--line-light);
}




.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  margin-block-end: var(--sp-2);
}


.hero .eyebrow {
  margin-block-end: var(--sp-1);
}


.eyebrow::before {
  content: '';
  display: block;
  inline-size: 18px;
  block-size: 1px;
  background: currentColor;
  flex: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: var(--navy);
  margin-block-end: var(--sp-2);
}

.section--navy .section-title {
  color: var(--white);
}


.lede {
  font-size: var(--fs-lede);
  color: var(--muted);
  max-inline-size: 60ch;
}

.section--navy .lede {
  color: rgba(255, 255, 255, 0.62);
}

.section-head {
  margin-block-end: var(--sp-5);
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding-block: 12px;
  padding-inline: 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid transparent;
  box-shadow: 0 0 #0000; 
  transition: background-color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  
  text-shadow: none;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}


.btn-whatsapp span {
  transition: text-shadow 0.18s ease;
}
.btn-whatsapp:hover span {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
}


.btn-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section--surface .btn-ghost:hover {
  background: rgba(43, 57, 72, 0.06);
}

.btn-lg {
  padding-block: 18px;
  padding-inline: 28px;
  font-size: 1rem;
  border-radius: var(--radius);
}


.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}



.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.section--surface .card {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.section--navy .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}


.card-icon {
  color: var(--blue);
  margin-block-end: var(--sp-2);
  transition: transform 0.18s ease;
}

.card-title {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--navy);
  margin-block-end: 8px;
}

.section--navy .card-title {
  color: var(--white);
}

.card-body {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.6;
}

.section--navy .card-body {
  color: rgba(255, 255, 255, 0.62);
}


.card:hover {
  transform: translateY(-3px);
}

.card:hover .card-icon {
  transform: scale(1.1);
}

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

.section--navy .card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.chip {
  display: inline-block;
  padding-block: 8px;
  padding-inline: 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.section--navy .chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}


.chip:hover {
  transform: translateY(-1px);
}

.section--surface .chip:hover {
  background: #dbe9f6;
  border-color: rgba(74, 144, 196, 0.35);
}

.section--navy .chip:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}


.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}


.statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  color: var(--white);
  max-inline-size: 42ch;
  margin-block-end: var(--sp-3);
}


.section-supplement {
  margin-block-start: var(--sp-6);
  padding-block-start: var(--sp-5);
  border-block-start: 1px solid var(--line);
}



.icon {
  inline-size: 24px;
  block-size: 24px;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm {
  inline-size: 18px;
  block-size: 18px;
}

.icon--lg {
  inline-size: 28px;
  block-size: 28px;
}


.icon--brand {
  fill: currentColor;
  stroke: none;
}


[dir='rtl'] .icon-directional {
  transform: scaleX(-1);
}




.skip-link {
  position: absolute;
  inset-inline-start: var(--sp-2);
  inset-block-start: -100px;
  z-index: 200;
  background: var(--white);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transition: inset-block-start 0.2s ease;
}

.skip-link:focus {
  inset-block-start: var(--sp-2);
}







.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: transparent;
  color: var(--white);
  --focus-ring: var(--white);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}


.header-inner {
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.5);
}


.site-header.is-scrolled {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(26, 26, 46, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-block-size: var(--header-h);
}



.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand-mark {
  display: block;
  overflow: hidden;
  block-size: var(--logo-h);
  inline-size: calc(var(--logo-h) / var(--logo-crop) * var(--logo-ratio));
}

.brand-mark img {
  inline-size: 100%;
  block-size: calc(var(--logo-h) / var(--logo-crop));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  
}




.nav-toggle {
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: var(--radius-sm);
  color: var(--white);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}


.header-panel {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-block: var(--sp-3);
  padding-inline: var(--gutter);
  background: var(--navy);
  border-block-start: 1px solid var(--line-light);
  box-shadow: 0 16px 32px rgba(20, 26, 33, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

.header-panel.is-open {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-list a {
  display: block;
  padding-block: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-sm);
  white-space: nowrap; 
  transition: color 0.16s ease;
}

.nav-list a:hover {
  color: var(--white);
}



.lang-switch {
  position: relative;
}


.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: 6px;
  padding-inline: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.lang-trigger::-webkit-details-marker {
  display: none;
}
.lang-trigger::marker {
  content: '';
}

.lang-trigger:hover,
.lang-switch[open] .lang-trigger {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.lang-trigger-code {
  letter-spacing: 0.5px;
}

.lang-trigger-caret {
  inline-size: 14px;
  block-size: 14px;
  flex: none;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.16s ease;
}


.lang-switch[open] .lang-trigger-caret {
  transform: rotate(180deg);
}


.lang-menu {
  position: absolute;
  inset-block-start: calc(100% + 6px);
  inset-inline-end: 0;
  min-inline-size: 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 20;
}

.lang-link {
  padding-block: 8px;
  padding-inline: 10px;
  border-radius: calc(var(--radius-sm) - 2px);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition: color 0.16s ease, background-color 0.16s ease;
}

.lang-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}


.lang-link[aria-current='true'] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 500;
}

.header-actions {
  display: flex;
  gap: var(--sp-1);
}

.header-actions .btn {
  flex: 1;
}


.hero {
  position: relative;
  z-index: 0; 
  overflow: hidden;
  display: flex;
  align-items: flex-end; 
  background-color: var(--navy); 
  color: var(--white);
  --focus-ring: var(--white);
  padding-block-start: var(--sp-6);
  
  padding-block-end: calc(var(--sp-7) + var(--sticky-bar-h));

  
  min-block-size: calc(100vh - var(--sticky-bar-h));
  min-block-size: calc(100svh - var(--sticky-bar-h));
}


.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(180deg, rgba(20, 26, 33, 0.35) 0%, rgba(20, 26, 33, 0.45) 55%, rgba(20, 26, 33, 0.8) 100%);
  pointer-events: none;
}


.hero-diamonds {
  display: block;
  position: absolute;
  z-index: 0; 
  inset-block-start: -70px;
  inset-inline-end: -70px;
  inline-size: 220px;
  block-size: 220px;
  pointer-events: none;
  animation: diamond-breathe 6s ease-in-out infinite;
}


.hero-diamonds::before {
  content: '';
  position: absolute;
  inset: -35%;
  z-index: -1;
  background: radial-gradient(circle, rgba(74, 144, 196, 0.4) 0%, transparent 68%);
  filter: blur(24px);
}

@keyframes diamond-breathe {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.hero-diamonds span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(45deg);
}

.hero-diamonds span:last-child {
  inset: 60px;
  border-color: rgba(255, 255, 255, 0.08);
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-inline-size: 38rem;
  margin-inline: auto;
  text-align: center;

  
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.5);
}


@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: hero-rise 0.7s cubic-bezier(0.16, 0.8, 0.3, 1) both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.16s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.24s; }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  color: var(--on-image-primary);
  margin-block-end: var(--sp-2); 
}

.hero-subtitle {
  font-size: var(--fs-lede);
  color: var(--on-image-secondary);
  max-inline-size: 38ch;
  margin-inline: auto; 
  margin-block-end: var(--sp-3); 
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  margin-block-end: var(--sp-3);
}


.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1); 
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 9px;
  padding-inline: 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--fs-small);
  color: var(--on-image-secondary);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .hero-trust li {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.hero-trust .icon {
  color: var(--blue);
}


.hero-actions .btn-whatsapp {
  position: relative;
}

.hero-actions .btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: whatsapp-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}




.sticky-bar {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 90;
  display: flex;
  gap: var(--sp-1);
  background: var(--white);
  border-block-start: 1px solid var(--line);
  box-shadow: 0 -2px 16px rgba(26, 26, 46, 0.1);
  padding: 10px var(--sp-2);
  
  padding-block-end: calc(10px + env(safe-area-inset-bottom));
}

.sticky-bar .btn {
  flex: 1;
  padding-block: 14px;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}


.step {
  position: relative;
  flex: 1;
  padding-block-start: var(--sp-5);
}


.step-number {
  position: absolute;
  inset-block-start: -0.1em;
  inset-inline-start: -0.03em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 4.5rem + 5vw, 8rem);
  line-height: 1;
  color: rgba(43, 57, 72, 0.1);
  pointer-events: none;
  user-select: none;
}

.step-title {
  position: relative; 
  z-index: 1;
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--navy);
  margin-block-end: 8px;
}

.step-body {
  position: relative;
  z-index: 1;
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.6;
}


.step-connector {
  display: none;
  flex: none;
  align-self: center;
  margin-block-start: 14px;
  color: var(--line);
}


.card--testimonial {
  display: flex;
  flex-direction: column;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--blue);
  line-height: 1;
  margin-block-end: var(--sp-1);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.6;
  margin-block-end: var(--sp-3);
}

.testimonial-name {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--navy);
  
  margin-block-start: auto;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-block-start: 2px;
}


.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-5) var(--sp-6);
}


.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 52px;
  block-size: 52px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-block-end: var(--sp-2);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.contact-item-icon .icon {
  color: var(--blue);
}

.contact-item:hover .contact-item-icon {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-item-label {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-block-end: 6px;
}

.contact-item-value {
  display: inline-block;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-inline-size: 32ch;
}


a.contact-item-value:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}


.social-links {
  display: flex;
  gap: var(--sp-2);
}


.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}


.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  --focus-ring: var(--white);
}


.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
}

.footer-brand {
  display: flex;
}


.footer-brand img {
  inline-size: 64px;
  block-size: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1) var(--sp-4);
}

.footer-nav a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.16s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.footer-lang-label {
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}


.footer-bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.4);
}




@media (min-width: 768px) {
  :root {
    --gutter: var(--sp-4); 
    --header-h: 76px;
  }

  .section {
    padding-block: var(--sp-7);
  }

  .hero {
    padding-block-start: var(--sp-7);
    padding-block-end: calc(var(--sp-8) + var(--sticky-bar-h)); 
  }

  
  .hero .eyebrow {
    margin-block-end: var(--sp-2);
  }

  .hero-title {
    margin-block-end: var(--sp-3);
  }

  .hero-subtitle {
    margin-block-end: var(--sp-4);
  }

  .hero-actions {
    margin-block-end: var(--sp-5);
  }

  .hero-trust {
    gap: var(--sp-2);
  }

  .hero-diamonds {
    inline-size: 420px;
    block-size: 420px;
    inset-block-start: -140px;
    inset-inline-end: -140px;
  }
}

@media (min-width: 1080px) {
  :root {
    --gutter: var(--sp-6); 
  }

  .hero-diamonds {
    inline-size: 480px;
    block-size: 480px;
    inset-block-start: -150px;
    inset-inline-end: -150px;
  }

  .steps {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-connector {
    display: block;
  }
}


@media (min-width: 1200px) {
  :root {
    --sticky-bar-h: 0px; 
  }

  .sticky-bar,
  .nav-toggle {
    display: none;
  }


  
  .header-panel {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-2);
    margin-inline-start: auto;
    padding-block: 0;
    border-block-start: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: row;
    gap: 0;
  }

  .nav-list a {
    padding-block: 8px;
    padding-inline: 9px;
    font-size: var(--fs-small);
  }

  .lang-link {
    padding-inline: 8px;
  }

  .header-actions .btn {
    flex: none;
    padding-inline: 16px;
  }
}
