/* ============================================================
   מוגנים ישיר — Direct Protection
   Brand: trust, family, financial security
   Palette: deep teal + warm honey + cream + dark ink
   ============================================================ */

:root{
  /* Brand palette — from logo: deep navy + warm gold */
  --teal-950: #0A1A33;     /* deep navy (logo top) */
  --teal-900: #142847;     /* navy main */
  --teal-800: #1C355C;
  --teal-700: #2A4878;
  --teal-500: #4A6BA0;
  --teal-100: #DCE3F0;
  --teal-50:  #EDF1F8;

  --honey-500: #BD9656;    /* gold (logo) */
  --honey-400: #D4B27A;
  --honey-300: #E5C99A;
  --honey-100: #F4E8D0;

  --cream:    #FCF7EE;
  --cream-2:  #F4ECDB;
  --paper:    #FFFFFF;

  --ink:      #1A2229;
  --ink-soft: #4A5764;
  --ink-muted:#7C8898;

  --ok:       #2E9D6E;
  --warn:     #E8B046;
  --err:      #D85C5C;

  --line:     #E2E7EC;
  --line-soft:#EFF2F5;

  --shadow-xs: 0 2px 8px rgba(15,76,92,.05);
  --shadow-sm: 0 6px 18px rgba(15,76,92,.08);
  --shadow-md: 0 16px 40px rgba(15,76,92,.10);
  --shadow-lg: 0 30px 80px rgba(15,76,92,.16);

  --serif: "Frank Ruhl Libre", "Heebo", serif;
  --sans:  "Heebo", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;scroll-behavior:smooth}
html{scroll-padding-top: 92px}
body{
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none;padding:0;margin:0}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}

.container{
  width:100%; max-width: var(--container);
  margin: 0 auto; padding: 0 28px;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-size:12.5px; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase;
  color: var(--honey-500);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:""; width:32px; height:2px; background: currentColor;
}
.eyebrow-light{ color: var(--honey-400); }

.h1{
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.h2{
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.h2-light{ color: var(--paper); }

.lead{
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 18px;
}
.section-head{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-sub{
  color: var(--ink-soft);
  font-size: 17.5px;
  margin: 12px 0 0;
}
.serif-em{ font-family: var(--serif); font-style: italic; font-weight: 500; }

/* ============== BUTTONS ============== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-lg{ padding: 17px 34px; font-size: 16px; }
.btn-block{ width: 100%; }
.btn-sm{ padding: 9px 16px; font-size: 13.5px; }

.btn-primary{
  background: var(--teal-900);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(15,76,92,.25);
}
.btn-primary:hover{
  background: var(--teal-950);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15,76,92,.32);
}
.btn-honey{
  background: var(--honey-500);
  color: var(--teal-950);
  box-shadow: 0 6px 20px rgba(232,155,92,.30);
}
.btn-honey:hover{
  background: #E08545;
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-outline{
  background: transparent;
  color: var(--teal-900);
  border: 1.5px solid var(--teal-900);
}
.btn-outline:hover{
  background: var(--teal-900);
  color: var(--paper);
}
.btn-light{
  background: var(--paper);
  color: var(--teal-900);
}
.btn-light:hover{
  background: var(--cream);
}
.btn-ghost-light{
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost-light:hover{
  border-color: var(--honey-400);
  color: var(--honey-400);
}

/* ============== NAV ============== */
.nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  background: rgba(252,247,238,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .3s ease;
}
.nav.scrolled{
  background: rgba(252,247,238,.97);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px; gap: 24px;
}
.logo{ display:flex; align-items:center; gap:12px; }
.logo-shield{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  background: var(--teal-900);
  color: var(--honey-400);
  border-radius: 12px;
  position: relative;
}
.logo-shield svg{ width: 22px; height: 22px; }
.logo-text{ display:flex; flex-direction:column; line-height:1.1; }
.logo-name{
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-900);
}
.logo-sub{
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--honey-500);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links{
  display:flex; gap: 30px;
  margin-right: auto; margin-left: auto;
}
.nav-links a{
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after{
  content:"";
  position:absolute; bottom:0; right:0;
  width: 0; height: 2px;
  background: var(--honey-500);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--teal-900); }
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }

.nav-actions{ display:flex; gap: 12px; align-items: center; }
.nav-login{
  font-size: 14.5px;
  color: var(--teal-900);
  font-weight: 600;
  display:inline-flex; align-items:center; gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--teal-100);
  border-radius: 999px;
  background: var(--paper);
  transition: all .2s;
}
.nav-login:hover{
  color: var(--paper);
  background: var(--teal-900);
  border-color: var(--teal-900);
}
.nav-login svg{ stroke: currentColor; }
.nav-cta{ padding: 11px 22px; font-size: 14.5px; }

.nav-toggle{
  display:none;
  flex-direction:column; gap:5px;
  width: 40px; height: 40px;
  align-items:center; justify-content:center;
}
.nav-toggle span{
  width: 22px; height: 2px;
  background: var(--teal-900);
  transition: all .3s;
}

/* ============== HERO ============== */
.hero{
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(800px 600px at 90% 20%, rgba(232,155,92,.10), transparent 60%),
    var(--cream);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow-row{
  display:flex; align-items:center; gap: 12px;
  margin-bottom: 28px;
}
.hero-tag{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 16px;
  background: var(--teal-100);
  color: var(--teal-900);
  border-radius: 999px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
}
.hero-tag::before{
  content:""; width: 7px; height: 7px;
  border-radius: 50%; background: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(46,150,174,.25);
}
.hero-tag-honey{ background: var(--honey-100); color: var(--teal-950); }
.hero-tag-honey::before{ background: var(--honey-500); box-shadow: 0 0 0 3px rgba(232,155,92,.25); }

.hero-title em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--honey-500);
  font-weight: 600;
}
.hero-sub{
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap: 14px;
  margin-bottom: 50px;
}
.hero-trust{
  display:flex; align-items:center; gap: 22px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust-item{
  display:flex; align-items:center; gap: 12px;
}
.hero-trust-icon{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  background: var(--paper);
  color: var(--teal-700);
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 18px;
}
.hero-trust-text strong{
  display:block;
  font-size: 14.5px;
  color: var(--teal-900);
  font-weight: 700;
}
.hero-trust-text span{ font-size: 12.5px; color: var(--ink-muted); }

.hero-visual{
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
}
.hero-visual img{
  width:100%; height:100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset: 24px -24px -24px 24px;
  background: var(--honey-100);
  border-radius: var(--r-xl);
  z-index: -1;
}
.hero-stats-card{
  position: absolute;
  bottom: 30px; right: -30px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display:flex; gap: 14px; align-items:center;
  border: 1px solid var(--line-soft);
}
.hero-stats-icon{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  background: var(--teal-100);
  color: var(--teal-900);
  border-radius: 12px;
  font-size: 22px;
}
.hero-stats-num{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.05;
}
.hero-stats-label{
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* ============== SERVICES (the core grid) ============== */
.services{
  padding: 130px 0;
  background: var(--paper);
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card{
  position: relative;
  background: var(--cream);
  padding: 36px 30px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: all .3s ease;
  overflow: hidden;
}
.service-card::before{
  content:"";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 4px;
  background: var(--honey-500);
  transition: width .4s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  background: var(--paper);
  border-color: var(--teal-100);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before{ width: 100%; }
.service-icon{
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--teal-100);
  color: var(--teal-900);
  display:grid; place-items:center;
  margin-bottom: 22px;
  transition: all .3s;
}
.service-card:hover .service-icon{
  background: var(--teal-900);
  color: var(--honey-400);
}
.service-icon svg{ width: 30px; height: 30px; }
.service-card h3{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 12px;
}
.service-card p{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.service-link{
  font-size: 14px;
  font-weight: 600;
  color: var(--honey-500);
  display: inline-flex; gap: 6px;
  transition: gap .25s;
}
.service-link:hover{ gap: 12px; color: var(--teal-900); }

/* Featured big card */
.service-card-big{
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal-950), var(--teal-900));
  color: var(--paper);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.service-card-big h3{ color: var(--paper); font-size: 32px; }
.service-card-big p{ color: rgba(255,255,255,.75); max-width: 460px; }
.service-card-big .service-icon{
  background: var(--honey-500);
  color: var(--teal-950);
}
.service-card-big .service-link{ color: var(--honey-400); }
.service-card-big::before{ background: var(--honey-500); }

/* ============== STATS BAR ============== */
.stats-bar{
  background: var(--teal-900);
  color: var(--paper);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before{
  content:""; position: absolute;
  top: 0; right: -10%; width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(232,155,92,.15), transparent 60%);
  pointer-events: none;
}
.stats-bar-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-item{
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child{ border-left: none; }
.stat-num{
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  direction: ltr;
  unicode-bidi: isolate;
}
.stat-num em{ color: var(--honey-400); font-style: normal; }
.stat-label{
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  display: block;
}

/* ============== WHY US ============== */
.why{
  padding: 130px 0;
  background: var(--cream);
}
.why-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-image{ position: relative; }
.why-image img{
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-image::after{
  content:"";
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 2px solid var(--honey-500);
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .35;
}
.why-list{
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.why-item{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
}
.why-item-num{
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--teal-900);
  color: var(--honey-400);
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  flex-shrink: 0;
}
.why-item h4{
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 6px;
}
.why-item p{
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============== PROCESS ============== */
.process{
  padding: 130px 0;
  background: var(--paper);
}
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before{
  content:"";
  position: absolute;
  top: 30px;
  right: 6%; left: 6%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step{
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 14px;
}
.process-num{
  width: 60px; height: 60px;
  display: grid; place-items: center;
  margin: 0 auto 22px;
  background: var(--cream);
  color: var(--honey-500);
  border: 2px solid var(--honey-500);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all .3s;
}
.process-step:hover .process-num{
  background: var(--honey-500);
  color: var(--paper);
  transform: scale(1.06);
}
.process-step h4{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 10px;
}
.process-step p{
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============== TESTIMONIALS ============== */
.testimonials{
  padding: 130px 0;
  background: var(--cream-2);
}
.quotes-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card{
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line-soft);
  position: relative;
}
.quote-card::before{
  content: "\201D";
  position: absolute;
  top: 12px; right: 22px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--honey-500);
  opacity: .2;
}
.quote-stars{
  color: var(--honey-500);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote-card blockquote{
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.quote-author{
  display: flex; align-items: center; gap: 12px;
}
.quote-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-900);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.quote-author strong{
  display: block;
  font-size: 14.5px;
  color: var(--teal-900);
  font-weight: 600;
}
.quote-author span{
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* ============== CTA BIG ============== */
.cta-big{
  padding: 110px 0;
  background:
    linear-gradient(135deg, var(--teal-950), var(--teal-900) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-big::before{
  content:""; position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,155,92,.25), transparent 70%);
}
.cta-big::after{
  content:""; position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,150,174,.2), transparent 70%);
}
.cta-big-inner{
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.cta-big h2{ color: var(--paper); margin-bottom: 20px; }
.cta-big p{
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin: 0 0 36px;
}
.cta-big-actions{
  display:flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ============== CONTACT ============== */
.contact{
  padding: 130px 0;
  background: var(--cream);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info{
  background: var(--teal-900);
  color: var(--paper);
  padding: 50px 44px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.contact-info::before{
  content:"";
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,155,92,.20), transparent 70%);
  border-radius: 50%;
}
.contact-info > *{ position: relative; z-index: 2; }
.contact-info p{ color: rgba(255,255,255,.78); margin: 0 0 18px; }
.contact-list{
  margin-top: 32px;
  display: grid; gap: 22px;
}
.contact-list li{
  display:flex; gap: 16px; align-items: flex-start;
}
.contact-icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232,155,92,.3);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list strong{
  display:block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey-400);
  margin-bottom: 4px;
}
.contact-list a, .contact-list span{
  font-size: 16px;
  color: var(--paper);
}
.contact-list a:hover{ color: var(--honey-400); }

.contact-form{
  background: var(--paper);
  padding: 50px 44px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}
.contact-form h3{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--teal-900);
}
.contact-form .form-sub{
  color: var(--ink-muted);
  font-size: 14.5px;
  margin: 0 0 28px;
}
.field{ margin-bottom: 18px; }
.field label{
  display:block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15.5px;
  background: var(--cream);
  color: var(--ink);
  transition: all .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--teal-700);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(46,150,174,.12);
}
.field textarea{ resize: vertical; }
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note{
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin: 16px 0 0;
}

/* ============== FOOTER ============== */
.foot{
  background: var(--teal-950);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.foot .logo-name{ color: var(--paper); }
.foot-about{
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}
.foot h5{
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 18px;
}
.foot ul{ display:grid; gap: 10px; }
.foot ul a{
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.foot ul a:hover{ color: var(--honey-400); }
.foot-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
}
.foot-bottom-inner{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap: wrap; gap: 14px;
}

/* ============== FLOATING WHATSAPP ============== */
.wa-fab{
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 99;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transition: transform .25s ease;
}
.wa-fab:hover{ transform: scale(1.08); }
.wa-fab::before{
  content:""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .4;
  animation: waPulse 2s infinite;
}
@keyframes waPulse{
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px){
  .nav-links{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-login span{ display: none; }
  .hero-grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero-visual{ max-width: 460px; margin: 0 auto; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-card-big{ grid-column: auto; padding: 36px 28px; grid-template-columns: 1fr; }
  .stats-bar-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-item:nth-child(2){ border-left: none; }
  .why-grid{ grid-template-columns: 1fr; gap: 50px; }
  .why-image{ max-width: 420px; margin: 0 auto; }
  .process-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before{ display: none; }
  .quotes-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 32px; }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .container{ padding: 0 20px; }
  .nav-cta{ padding: 9px 14px; font-size: 13.5px; }
  .nav-inner{ height: 70px; }
  .hero{ padding: 130px 0 60px; }
  .services, .why, .process, .testimonials, .contact{ padding: 80px 0; }
  .services-grid{ grid-template-columns: 1fr; }
  .stats-bar-grid{ grid-template-columns: 1fr 1fr; }
  .stat-item{ border-left: none; }
  .process-grid{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .contact-form, .contact-info{ padding: 32px 24px; }
  .foot-grid{ grid-template-columns: 1fr; }
  .h1, .h2{ font-size: 32px; }
  .wa-fab{ left: 18px; bottom: 18px; width: 54px; height: 54px; }
  .hero-stats-card{ right: auto; left: 0; bottom: -10px; }
  .hero-visual::before{ inset: 16px -16px -16px 16px; }
}

/* mobile menu */
body.menu-open{ overflow: hidden; }
.nav.menu-open .nav-links{
  display: flex;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: var(--paper);
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.nav.menu-open .nav-links a{
  padding: 14px 28px;
  font-size: 17px;
  border-bottom: 1px solid var(--line-soft);
}
.nav.menu-open .nav-toggle span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
.nav.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   REVEAL / SCROLL ANIMATIONS (premium tier)
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }
.reveal-delay-4{ transition-delay: .32s; }
.reveal-delay-5{ transition-delay: .40s; }
.reveal-delay-6{ transition-delay: .48s; }

/* ============================================================
   HERO — animated gradient backdrop + parallax
   ============================================================ */
.hero-bg-glow{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 700px at 88% 18%, rgba(189,150,86,.18), transparent 60%),
    radial-gradient(700px 600px at 8% 70%, rgba(20,40,71,.10), transparent 60%),
    radial-gradient(500px 500px at 50% 100%, rgba(189,150,86,.08), transparent 70%);
  background-size: 200% 200%;
  animation: heroGlow 18s ease-in-out infinite alternate;
  z-index: 0;
}
.hero > .container{ position: relative; z-index: 2; }
@keyframes heroGlow{
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%; opacity: .9; }
  50%  { background-position: 100% 50%, 50% 100%, 50% 50%; opacity: 1; }
  100% { background-position: 50% 100%, 100% 0%, 100% 100%; opacity: .9; }
}
.hero-visual{ transition: transform .15s linear; will-change: transform; }

/* ============================================================
   BUTTONS — glow + ripple
   ============================================================ */
.btn{ position: relative; overflow: hidden; isolation: isolate; }
.btn-glow{ position: relative; }
.btn-glow::after{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(189,150,86,.55), rgba(189,150,86,0) 60%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
  filter: blur(14px);
}
.btn-glow:hover::after{ opacity: 1; }
.btn-primary.btn-glow:hover{ box-shadow: 0 14px 36px rgba(189,150,86,.35), 0 6px 20px rgba(20,40,71,.30); }
.btn-honey.btn-glow:hover{ box-shadow: 0 14px 36px rgba(189,150,86,.55); }

.ripple{
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,.45);
  pointer-events: none;
  animation: ripple 700ms ease-out forwards;
  z-index: 0;
}
.btn-outline .ripple, .btn-light .ripple{ background: rgba(20,40,71,.18); }
@keyframes ripple{
  to{ transform: scale(4); opacity: 0; }
}

/* ============================================================
   SERVICES — premium hover (glow + lift) + featured / badges
   ============================================================ */
.service-card{
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s cubic-bezier(.2,.7,.2,1),
              background .3s ease,
              border-color .3s ease;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(20,40,71,.14),
    0 0 0 1px rgba(189,150,86,.18),
    0 0 60px -10px rgba(189,150,86,.20);
}
.service-card .service-icon{
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              background .35s ease,
              color .35s ease,
              box-shadow .35s ease;
}
.service-card:hover .service-icon{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(20,40,71,.22), 0 0 0 4px rgba(189,150,86,.12);
}

.service-card-featured{
  position: relative;
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(189,150,86,.28), transparent 65%),
    linear-gradient(160deg, #FFFBF2 0%, #FFFFFF 60%, #F8EDD6 100%) !important;
  border: 2px solid rgba(189,150,86,.55) !important;
  box-shadow:
    0 18px 36px rgba(20,40,71,.12),
    0 0 0 1px rgba(189,150,86,.20),
    inset 0 1px 0 rgba(255,255,255,.6);
  padding-top: 52px;
}
.service-card-featured::before{
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px !important;
  width: 100% !important;
  background: linear-gradient(90deg, var(--honey-500) 0%, var(--honey-300) 50%, var(--honey-500) 100%) !important;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.service-card-featured .service-icon{
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--honey-400);
  box-shadow: 0 8px 20px rgba(20,40,71,.20);
}
.service-card-featured h3{ color: var(--teal-950); }
.service-card-featured:hover{
  transform: translateY(-10px);
  box-shadow:
    0 28px 60px rgba(20,40,71,.18),
    0 0 0 1.5px var(--honey-500),
    0 0 80px -10px rgba(189,150,86,.30);
}
.service-card-featured:hover .service-icon{
  background: linear-gradient(135deg, var(--honey-500), var(--honey-400));
  color: var(--teal-950);
}
.service-badge{
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--honey-500), var(--honey-400));
  color: var(--teal-950);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(189,150,86,.40), 0 0 0 4px rgba(189,150,86,.10);
  z-index: 3;
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
}
.service-badge-honey{ background: linear-gradient(135deg, #BD9656, #E5C99A); }
.service-badge-blue{
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--honey-300);
  box-shadow: 0 6px 16px rgba(20,40,71,.45), 0 0 0 4px rgba(20,40,71,.08);
}
.service-bullets{
  margin: 14px 0 18px;
  display: grid; gap: 6px;
}
.service-bullets li{
  position: relative;
  padding-right: 22px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-bullets li::before{
  content: "✓";
  position: absolute;
  right: 0; top: 0;
  color: var(--honey-500);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================================
   STATS — counter polish
   ============================================================ */
.stat-num .counter{
  display: inline-block;
  min-width: 0.5ch;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team{
  padding: 130px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.team::before{
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(189,150,86,.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.team-card{
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--line-soft);
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s cubic-bezier(.2,.7,.2,1),
              border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.team-card::before{
  content: "";
  position: absolute;
  top: 0; right: 50%;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--honey-500), var(--honey-300));
  transition: all .4s ease;
  transform: translateX(50%);
}
.team-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(20,40,71,.13), 0 0 0 1px rgba(189,150,86,.18);
  border-color: transparent;
}
.team-card:hover::before{ width: 60%; }
.team-avatar{
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--paper);
  position: relative;
  box-shadow: 0 12px 30px rgba(20,40,71,.18);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
}
.team-avatar::after{
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dashed rgba(189,150,86,.4);
  opacity: .6;
}
.team-avatar-1{ background: linear-gradient(135deg, #142847, #2A4878); }
.team-avatar-2{ background: linear-gradient(135deg, #BD9656, #D4B27A); color: var(--teal-950); }
.team-avatar-3{ background: linear-gradient(135deg, #0A1A33, #1C355C); }
.team-avatar-4{ background: linear-gradient(135deg, #2A4878, #4A6BA0); }
.team-avatar-5{ background: linear-gradient(135deg, #D4B27A, #BD9656); color: var(--teal-950); }
.team-avatar-6{ background: linear-gradient(135deg, #1C355C, #142847); }

/* Real photo avatar (overrides gradient backgrounds when an <img> is inside) */
.team-avatar.team-avatar-photo{
  background: none;
  overflow: hidden;
  padding: 0;
}
.team-avatar-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.team-card h4{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 4px;
}
.team-role{
  display: block;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--honey-500);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: none;
}
.team-bio{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 18px;
  min-height: 70px;
}
.team-links{
  display: flex; justify-content: center; gap: 10px;
}
.team-link{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--teal-900);
  border: 1px solid var(--line);
  transition: all .25s ease;
}
.team-link:hover{
  background: var(--teal-900);
  color: var(--honey-400);
  border-color: var(--teal-900);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS — carousel + press row
   ============================================================ */
.press-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  padding: 18px 24px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  max-width: 920px;
  box-shadow: var(--shadow-xs);
}
.press-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.press-logo{
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-soft);
  opacity: .65;
  letter-spacing: -0.01em;
  transition: opacity .25s, color .25s;
}
.press-logo-italic{ font-style: italic; font-weight: 500; }
.press-logo:hover{ opacity: 1; color: var(--teal-900); }

.carousel{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.carousel-track{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 18px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar{ display: none; }
.carousel-track .quote-card{
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  min-width: 280px;
}
.carousel-btn{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-900);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
}
.carousel-btn:hover{
  background: var(--teal-900);
  color: var(--honey-400);
  border-color: var(--teal-900);
  transform: scale(1.06);
}
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all .25s ease;
  cursor: pointer;
  border: 0;
}
.carousel-dot.is-active{
  background: var(--honey-500);
  width: 24px;
  border-radius: 999px;
}

/* ============================================================
   FOOTER — extended
   ============================================================ */
.foot-grid{ grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.foot-brand .logo-image-foot{ display: inline-block; margin-bottom: 4px; }
.foot-social{
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link{
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.10);
  transition: all .25s ease;
}
.social-link:hover{
  background: var(--honey-500);
  border-color: var(--honey-500);
  color: var(--teal-950);
  transform: translateY(-3px);
}
.foot-bottom a{
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.foot-bottom a:hover{ color: var(--honey-400); }

@media (max-width: 1024px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .carousel-track .quote-card{ flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px){
  .team-grid{ grid-template-columns: 1fr; }
  .team{ padding: 80px 0; }
  .press-row{ gap: 14px; padding: 14px 18px; }
  .press-logo{ font-size: 15px; }
  .carousel-track .quote-card{ flex: 0 0 calc(100% - 8px); min-width: 260px; }
  .carousel-btn{ width: 40px; height: 40px; }
  .foot-bottom-inner{ font-size: 12px; }
}

/* ============================================================
   MOTION OFF — respects user / a11y widget preference
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg-glow{ animation: none !important; }
  .hero-visual{ transform: none !important; }
  .service-card, .team-card, .btn{ transition: none !important; }
  .ripple{ display: none !important; }
  .wa-fab::before{ animation: none !important; }
}
.a11y-no-motion .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
.a11y-no-motion .hero-bg-glow{ animation: none !important; }
.a11y-no-motion .hero-visual{ transform: none !important; }
.a11y-no-motion .ripple{ display: none !important; }
.a11y-no-motion .wa-fab::before{ animation: none !important; }


/* ============== LOGO IMAGE (real logo) ============== */
.logo-image{
  display: flex;
  align-items: center;
}
.logo-image img{
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-image-foot img{
  height: 100px;
  width: auto;
  background: var(--paper);
  padding: 12px 18px;
  border-radius: var(--r-md);
  object-fit: contain;
}
@media (max-width: 640px){
  .logo-image img{ height: 44px; }
}
